Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Remove full backpack:
- game.Players.LocalPlayer.PlayerGui.GameHUD.FullBackpack:Destroy()
- Auto sell coins:
- _G.on = true
- local plr = game.Players.LocalPlayer
- local char = plr.Character.HumanoidRootPart
- while _G.on do
- game.Workspace.Rings.Sellx2.CanCollide = false
- game.Workspace.Rings.Sellx2.Transparency = 1
- game.Workspace.Rings.Sellx2.CFrame = char.CFrame + Vector3.new(0,math.random(-1,1),0)
- wait(0.1)
- end
- Auto Farm coins:
- local r = game:GetService("ReplicatedStorage").Events.MagnetEvents.requestGrab
- local rs = game:GetService('RunService').RenderStepped
- while rs:wait() do
- tool = "Acid Pulse Dual Long Power Magnets"
- for i = 1,5 do
- r:FireServer("1040000000", game.ReplicatedStorage.Tools[tool])
- end
- end
- Auto rebirth:
- _G.rebirth = true
- local rebirths = 125000--125000,100000,75000,50000,25000,10000,5000,2500,1000,500,250,100,50,25,5,1
- while _G.rebirth do
- game:GetService("ReplicatedStorage").RebirthEvents.requestRebirth:InvokeServer(rebirths)
- wait(3)
- end
- Open eggs:
- _G.egg = true
- local r = game:GetService("ReplicatedStorage").PetEvents.requesthatch
- local rs = game:GetService('RunService').RenderStepped
- while rs:wait() and _G.egg do
- r:FireServer("Infernal Egg") --20SX
- end
- Auto Shiny:
- _G.shiny = true
- local Shinys = game.ReplicatedStorage.Pets:GetChildren()
- while _G.shiny do
- wait(0.1)
- for i = 1,#Shinys do
- wait()
- game.ReplicatedStorage.ShinyEvents.requestMakeShiny:FireServer(Shinys[i].Name)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement