Advertisement
lucaslulu

Script New Cake Simulator

Oct 21st, 2019
660
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. --Autofarm
  2. _G.LULU = true--change to true or false
  3. while _G.LULU do
  4. wait(0.1)
  5. local A_1 =
  6. {
  7. [1] = "Frame"
  8. }
  9. game:GetService("ReplicatedStorage").CreateTrail:FireServer(A_1)
  10. end
  11.  
  12. --Autosell
  13. _G.LULU = true--change to true or false
  14. while _G.LULU do
  15. wait(10)
  16. game:GetService("ReplicatedStorage").SellDonutsEvent:FireServer()
  17. end
  18.  
  19. --Equip Best Weapon
  20. local A_1 =
  21. {
  22. [1] = 10
  23. }
  24. game:GetService("ReplicatedStorage").EquipFlavorEvent:FireServer(A_1)
  25.  
  26. --Equip Best Backpack
  27. local A_1 =
  28. {
  29. [1] = 12
  30. }
  31. game:GetService("ReplicatedStorage").EquipWeaponEvent:FireServer(A_1)
  32.  
  33. --Equip robux pets
  34. local A_1 =
  35. {
  36. [1] = 1,
  37. [2] = "Shadow Dragon",
  38. [3] = "LuLu"
  39. }
  40. game:GetService("ReplicatedStorage").EquipEvent:FireServer(A_1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement