RandomMagics

Fire Breathing Simulator

Dec 18th, 2021
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.53 KB | None | 0 0
  1. --always on: auto tool, auto refill, auto craft, auto equip best, auto collect chests, auto collect rings, auto rankup
  2. --also grabs the secret pet, idfk why lmao
  3. local egg = "" --stand near egg for this to work
  4. local bool = true --second arg in the egg buy thing, no clue what it does
  5. local autodeletebelow = 0 --delete pets with lower multiplier than this
  6. 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)
  7. game:GetService("Players").LocalPlayer.Pets.ChildAdded:Connect(function(a)
  8. game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.PetService.CraftPet:InvokeServer(a)
  9. if a.CoinMultiplier.Value < autodeletebelow then
  10. game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.PetService.DeletePet:FireServer(a)
  11. end
  12. end)
  13. repeat task.wait()
  14. for i, v in pairs(game:GetService("Workspace").Rewards:GetChildren()) do
  15. firetouchinterest(v.ChestTouchPart, game.Players.LocalPlayer.Character.HumanoidRootPart, 0)
  16. firetouchinterest(v.ChestTouchPart, game.Players.LocalPlayer.Character.HumanoidRootPart, 1)
  17. end
  18. for i, v in pairs(game:GetService("Workspace").Hops:GetChildren()) do
  19. firetouchinterest(v.Goal, game.Players.LocalPlayer.Character.HumanoidRootPart, 0)
  20. firetouchinterest(v.Goal, game.Players.LocalPlayer.Character.HumanoidRootPart, 1)
  21. end
  22. local b = 0
  23. for i, v in pairs(game:GetService("Players").LocalPlayer.RanksOwned:GetChildren()) do
  24. 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)
  25. end
  26. game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.ShopService.BuyItem:InvokeServer(game:GetService("ReplicatedStorage").Items.Ranks:GetChildren()[b+1].Name)
  27. game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.PetService.EquipBest:InvokeServer()
  28. for i, v in pairs(buyall) do
  29. game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.ShopService.BuyAll:InvokeServer(v)
  30. end
  31. game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.EggService.Hatch:InvokeServer(egg, trip0le)
  32. game.Players.LocalPlayer.Character.MainTool:Activate()
  33. firetouchinterest(game:GetService("Workspace").Map.Refill.RefillHitbox, game.Players.LocalPlayer.Character.HumanoidRootPart, 0)
  34. firetouchinterest(game:GetService("Workspace").Map.Refill.RefillHitbox, game.Players.LocalPlayer.Character.HumanoidRootPart, 1)
  35. until false
Advertisement
Add Comment
Please, Sign In to add comment