Advertisement
lucaslulu

Script For Toy Simulator 2

Mar 7th, 2020
425
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. --AutoFarm
  2. _G.LULU = true--change to true or false
  3. while _G.LULU do
  4. wait()--change time if you want
  5. local A_1 = "Click"
  6. game:GetService("ReplicatedStorage").PublicResources.Events.Networking:FireServer(A_1)
  7. end
  8.  
  9. --AutoSell
  10. local sell = game.workspace.Resources.Contact.Sell.Sell1
  11. _G.LULU = true--change to true or false
  12. while _G.LULU do
  13. wait()--change time if you want
  14. sell.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  15. end
  16.  
  17. --AutoPickupsAll
  18. for i,v in pairs(game:GetService("Workspace").Resources.Pickups:GetDescendants()) do
  19. if v.ClassName == "MeshPart" then
  20. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  21. wait()
  22. end
  23. end
  24.  
  25. --FreeRobuxEgg
  26. _G.LULU = false--change to true or false
  27. while _G.LULU do
  28. wait(1)--change time if you want
  29. local A_1 = "OpenEgg"
  30. local A_2 = "Robux Egg"
  31. game:GetService("ReplicatedStorage").PublicResources.Events.Networking:FireServer(A_1, A_2)
  32. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement