nhokp

money fast pet ranch simulator

Mar 4th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. _G.What = true --Equip, Rebirth, Upgrade ranch
  2. _G.Bring = true --Bring Pet so you can click
  3.  
  4. local pet1 = "8290A30B-F8E4-48BD-97B8-44BC3820E174" --YOU MUST EDIT TO YOUR TOP 4 PETS!!!
  5. local pet2 = "a29134cf-595f-4bcf-85f5-6af2b74d14d6" --YOU MUST EDIT TO YOUR TOP 4 PETS!!!
  6. local pet3 = "d98bc72e-d130-4f2e-a702-d02e0445fd12" --YOU MUST EDIT TO YOUR TOP 4 PETS!!!
  7. local pet4 = "1542be78-53f1-4bf5-bed0-d6662badde31" --YOU MUST EDIT TO YOUR TOP 4 PETS!!!
  8.  
  9. coroutine.resume(coroutine.create(function()
  10. while _G.What do
  11. game:GetService("ReplicatedStorage").RemoteFunctions.MainRemoteFunction:InvokeServer("CreatePet", pet1)
  12. game:GetService("ReplicatedStorage").RemoteFunctions.MainRemoteFunction:InvokeServer("CreatePet", pet2)
  13. game:GetService("ReplicatedStorage").RemoteFunctions.MainRemoteFunction:InvokeServer("CreatePet", pet3)
  14. game:GetService("ReplicatedStorage").RemoteFunctions.MainRemoteFunction:InvokeServer("CreatePet", pet4)
  15. wait()
  16. for _,v in pairs(game.Players.LocalPlayer.PlayerGui.MainGui.CenterUIFrame.PetInventory.PetInventoryInnerFrame.PetInventoryScrollingFrame:GetChildren()) do
  17. game:GetService("ReplicatedStorage").RemoteFunctions.MainRemoteFunction:InvokeServer("CreatePet", v.Name)
  18. end
  19. game:GetService("ReplicatedStorage").RemoteFunctions.MainRemoteFunction:InvokeServer("UpgradeRanch")
  20. game:GetService("ReplicatedStorage").RemoteFunctions.MainRemoteFunction:InvokeServer("CollectTreasure", "TreasureChest")
  21. game:GetService("ReplicatedStorage").RemoteFunctions.MainRemoteFunction:InvokeServer( "RebirthPlayer", 5)
  22. end
  23. end))
  24.  
  25. coroutine.resume(coroutine.create(function()
  26. while _G.Bring do
  27. wait()
  28. for _,v in pairs(game.Workspace:GetChildren()) do
  29. if v.ClassName == "MeshPart" then
  30. v.Anchored = true
  31. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.LookVector * 3
  32. end
  33. end
  34.  
  35. end
  36. end))
Add Comment
Please, Sign In to add comment