Advertisement
lucaslulu

Script For My Cat Box

Jan 23rd, 2020
1,374
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. --AutoCoins
  2. _G.LULU = true--change to true or false
  3. while _G.LULU do
  4. wait(0.5)--change time if you want
  5. local A_1 = "Coins"
  6. local A_2 = 999999999
  7. game:GetService("ReplicatedStorage").Gifts.GetGiftValue:FireServer(A_1, A_2)
  8. end
  9.  
  10. --AutoXp
  11. _G.LULU = true--change to true or false
  12. while _G.LULU do
  13. wait(0.3)--change time if you want
  14. local A_1 = 999999999
  15. game:GetService("ReplicatedStorage").XP.GainXP:FireServer(A_1)
  16. end
  17.  
  18. --AutoBestEgg
  19. _G.LULU = true--change to true or false
  20. while _G.LULU do
  21. wait(10)--change time if you want
  22. local A_1 = "Egg_4"
  23. local A_2 = 1
  24. game:GetService("ReplicatedStorage").Gifts.GetGiftValue:FireServer(A_1, A_2)
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement