MADE BY eprx
FEATURE:
- INSTANTLY GETS UGC ITEMS
- walkspeed, 1000x cash boosts
- .
- https://www.roblox.com/games/7655745946/NEW-SEASON-Dunking-Simulator
SCRIPTS: [2]
GET ALL AVATAR ITEMS:
local a = {2127480711,2125747688,2127480708,2127480712}
for i = 1,#a do
game:GetService("ReplicatedStorage"):WaitForChild("AwardBadge"):FireServer(a[i])
end
1000X CASH BOOST
---https://www.roblox.com/games/7655745946/NEW-SEASON-Dunking-Simulator
local ws = 100
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = ws
game.Players.LocalPlayer.Character:WaitForChild("Humanoid"):GetPropertyChangedSignal("WalkSpeed"):Connect(function()
game.Players.LocalPlayer:WaitForChild("Character"):WaitForChild("Humanoid").WalkSpeed = ws
end)
function unlockzones()
pcall(function()
for i,v in pairs(game:GetService("Workspace").Zones:GetChildren()) do
getsenv(game.Players.LocalPlayer.PlayerScripts.InitialGateUnlock).GateDestroyer(v.Name)
end
end)
end
function add_item(x, amount)
for i = 1,amount do
game:GetService("ReplicatedStorage").Remote.DailySpin.AddToInventory:FireServer(x, true)
end
end
function use_item(x, amount)
for i = 1,amount do
game:GetService("ReplicatedStorage").Remote.Boost.BoostStart:FireServer(x)
end
end
unlockzones()
add_item("1000xCash", 100)
use_item("1000xCash", 100)