Created by Curvn#2002
Features:
- INSTANT LEVEL 50
- TOP 100 LEADERBOARDS
- takes awhile for the board to refresh like im talking AGES
- https://gyazo.com/d60c9561ccd4c6d3eb52bf4e39354b11
INSTANT LEVEL 50
local args = {[1] = 100000}
game:GetService("ReplicatedStorage").Spotify_GrantPlayerXP:InvokeServer(unpack(args))
TOP 100 LEADERBOARDS
local trol = game:GetService("Workspace").LevelSections
local junk = {}
for i,v in pairs(trol:GetDescendants()) do
if v:IsA("TouchTransmitter") then
table.insert(junk,v)
end
end
for i = 1,50 do
coroutine.resume(coroutine.create(function()
for i,v in pairs(junk) do
firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart,v.Parent,0)
firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart,v.Parent,1)
game:GetService("ReplicatedStorage").TGSVaultZone_VaultedEvent:FireServer(v.Parent)
end
end))
end
game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = false