Advertisement
SalamieLP1

Pet Ranch

Nov 19th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1.  
  2. _G.RB = true
  3. _G.UPGR = true
  4. _G.EqPets = true
  5. _G.OpEggs = false
  6.  
  7.  
  8. local plr = game.Players.LocalPlayer.Name
  9. local statdisplay = game.ReplicatedStorage[plr.."StatDisplay"]
  10.  
  11. statdisplay["Gamepass_2xCoins"].Value = true
  12. statdisplay["Gamepass_Lucky"].Value = true
  13.  
  14.  
  15. while wait() and _G.RB do
  16. print("Rebirth = OK")
  17. game.ReplicatedStorage.RemoteFunctions.MainRemoteFunction:InvokeServer("RebirthPlayer", 150)
  18. wait(10)
  19. end
  20.  
  21. while wait() and _G.UPGR do
  22. print("Ranch Upgrades = OK")
  23. game.ReplicatedStorage.RemoteFunctions.MainRemoteFunction:InvokeServer("UpgradeRanch", false)
  24. wait(10)
  25. end
  26.  
  27. while wait() and _G.EqPets do
  28. print("Pets = OK")
  29. game.ReplicatedStorage.RemoteFunctions.MainRemoteFunction:InvokeServer("EquipTopPets")
  30. wait(10)
  31. end
  32.  
  33. while wait() and _G.OpEggs do
  34. game.ReplicatedStorage.RemoteFunctions.MainRemoteFunction:InvokeServer("BuyEgg", "Tier9Egg")
  35. wait(10)
  36. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement