--BROUGHT TO YOU BY RobloxScripter.com!--
-- Main
local repStorage = game:GetService("ReplicatedStorage")
-- Tables
local questData = {}
local worlds = {}
-- Bools
local firstTime = true
-- Main
repStorage.Remotes.QuestRemotes.QuestUpdate.OnClientEvent:Connect(function(data)
questUpdated = true
for i,v in pairs(data) do
questData[i] = v
for e, j in pairs(v.Prog) do
print(i) -- World where quests are in
print(e) -- Quest Key(The Mob)
print(j) -- Quest Value(The amount)
end
if firstTime then
table.insert(worlds, i)
end
end
end)