Advertisement
Guest User

Untitled

a guest
Apr 12th, 2017
15,360
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. Code:
  2. -- Clone Tycoon 2 - Cash + Gems Modifier
  3.  
  4. plr = "USERNAME HERE"
  5.  
  6. game.Players[plr].leaderstats.Cash.Value = 1000000
  7. game.Players[plr].leaderstats.Gems.Value = 1000000
  8.  
  9. RUN THIS AFTER YOU BUY EVERYTHING ON THE TYCOON
  10. Code:
  11. --[[Clone Tycoon 2 - Max Inventory
  12.  
  13. NOTE: Leave all the numbers because you can only get upto 50 of each ore.
  14. --]]
  15. plr = "USERNAME HERE"
  16. Inv = game.Players[plr].Inventory
  17.  
  18. Inv.Stone.Value = 50
  19. Inv.Coal.Value = 50
  20. Inv.Iron.Value = 50
  21. Inv.Gold.Value = 50
  22. Inv.Diamonds.Value = 50
  23.  
  24. RUN THIS TO FORCE SOMEBODY INTO BATTLEMODE
  25. Code:
  26. -- Clone Tycoon 2 - Force BattleMode
  27.  
  28. plr = "USERNAME HERE"
  29.  
  30. game.Players[plr].BattleMode.Value = true
  31.  
  32. RUN THIS TO NAME ANYBODIES PETS
  33. Code:
  34. -- Clone Tycoon 2 - Change Pet name script
  35.  
  36. plr = "USERNAME HERE"
  37.  
  38. game.Players[plr].PetFolder.PetName.Value = "NAME YOU WANT"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement