Advertisement
ScriptingGuy

Toy Simulator 2 Script

Mar 7th, 2020
497
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. The Game Link : https://www.roblox.com/games/4721064529/CODE-RELEASE-Toy-Simulator-2#!/about
  2. Discord Link : https://discordapp.com/channels/686554761901768721/686664520596324435
  3.  
  4. --AutoFarm
  5. _G.LULU = true--change to true or false
  6. while _G.LULU do
  7. wait()--change time if you want
  8. local A_1 = "Click"
  9. game:GetService("ReplicatedStorage").PublicResources.Events.Networking:FireServer(A_1)
  10. end
  11.  
  12.  
  13. --AutoSell
  14. local sell = game.workspace.Resources.Contact.Sell.Sell1
  15. _G.LULU = true--change to true or false
  16. while _G.LULU do
  17. wait()--change time if you want
  18. sell.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  19. end
  20.  
  21.  
  22. --AutoPickupsAll (Best)
  23. for i,v in pairs(game:GetService("Workspace").Resources.Pickups:GetDescendants()) do
  24. if v.ClassName == "MeshPart" then
  25. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  26. wait()
  27. end
  28. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement