Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --always on: auto tool, auto refill, auto craft, auto equip best, auto collect chests, auto collect rings, auto rankup
- --also grabs the secret pet, idfk why lmao
- local egg = "" --stand near egg for this to work
- local bool = true --second arg in the egg buy thing, no clue what it does
- local autodeletebelow = 0 --delete pets with lower multiplier than this
- local buyall = {"Fuels", "Fires"} --will constantly buy all of these ({"Fuels", "Fires"}, {"Fuels"} and {"Fires"} are the only acceptable values for this, otherwise will error)
- game:GetService("Players").LocalPlayer.Pets.ChildAdded:Connect(function(a)
- game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.PetService.CraftPet:InvokeServer(a)
- if a.CoinMultiplier.Value < autodeletebelow then
- game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.PetService.DeletePet:FireServer(a)
- end
- end)
- repeat task.wait()
- for i, v in pairs(game:GetService("Workspace").Rewards:GetChildren()) do
- firetouchinterest(v.ChestTouchPart, game.Players.LocalPlayer.Character.HumanoidRootPart, 0)
- firetouchinterest(v.ChestTouchPart, game.Players.LocalPlayer.Character.HumanoidRootPart, 1)
- end
- for i, v in pairs(game:GetService("Workspace").Hops:GetChildren()) do
- firetouchinterest(v.Goal, game.Players.LocalPlayer.Character.HumanoidRootPart, 0)
- firetouchinterest(v.Goal, game.Players.LocalPlayer.Character.HumanoidRootPart, 1)
- end
- local b = 0
- for i, v in pairs(game:GetService("Players").LocalPlayer.RanksOwned:GetChildren()) do
- b = b + 1 --b += 1 errors in synapse and i want error checking (when is this getting fixed?? why has this never been brought up)
- end
- game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.ShopService.BuyItem:InvokeServer(game:GetService("ReplicatedStorage").Items.Ranks:GetChildren()[b+1].Name)
- game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.PetService.EquipBest:InvokeServer()
- for i, v in pairs(buyall) do
- game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.ShopService.BuyAll:InvokeServer(v)
- end
- game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.EggService.Hatch:InvokeServer(egg, trip0le)
- game.Players.LocalPlayer.Character.MainTool:Activate()
- firetouchinterest(game:GetService("Workspace").Map.Refill.RefillHitbox, game.Players.LocalPlayer.Character.HumanoidRootPart, 0)
- firetouchinterest(game:GetService("Workspace").Map.Refill.RefillHitbox, game.Players.LocalPlayer.Character.HumanoidRootPart, 1)
- until false
Advertisement
Add Comment
Please, Sign In to add comment