Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- The Game Link : https://www.roblox.com/games/4721064529/CODE-RELEASE-Toy-Simulator-2#!/about
- Discord Link : https://discordapp.com/channels/686554761901768721/686664520596324435
- --AutoFarm
- _G.LULU = true--change to true or false
- while _G.LULU do
- wait()--change time if you want
- local A_1 = "Click"
- game:GetService("ReplicatedStorage").PublicResources.Events.Networking:FireServer(A_1)
- end
- --AutoSell
- local sell = game.workspace.Resources.Contact.Sell.Sell1
- _G.LULU = true--change to true or false
- while _G.LULU do
- wait()--change time if you want
- sell.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- end
- --AutoPickupsAll (Best)
- for i,v in pairs(game:GetService("Workspace").Resources.Pickups:GetDescendants()) do
- if v.ClassName == "MeshPart" then
- v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- wait()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement