Multiverse Fighters Simulator Script | QUEST DATA FETCHER

Created by Nyok

Features:

  • QUEST DATA FETCHER
-- 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!

Share This Post

Share on facebook
Share on linkedin
Share on twitter
Share on email

More Scripts!

TOP 10 TRENDING SCRIPTS