Multiverse Fighters Simulator Script | QUEST DATA FETCHER

[ad_1]

Created by Nyok

Features:

-- 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)

ENJOY!

Warning: DO NOT DOWNLOAD anything from this page, you’re only here to copy the script!

[ad_2]