MADE BY VVSCRIPT
FEATURE:
- AUTOFARM ADMIN
- .
- NOTE:
- Prefix is :
- COMMANDS. collect, stopcollect
- .
- https://www.roblox.com/games/9757510382/Trade-Simulator-NEW#!/game-instances
SCRIPT:
local Player = game.Players.LocalPlayer
Player.Chatted:connect(function(cht)
if cht:match(":collect") then
_G.Condition = true -- true turns it on, false turns it off
while _G.Condition == true do
if workspace["_yes"]:FindFirstChild("100") then
fireclickdetector(game:GetService("Workspace")["_yes"]["100"].ClickDetector)
print("click 100")
end
if workspace["_yes"]:FindFirstChild("1000") then
fireclickdetector(game:GetService("Workspace")["_yes"]["1000"].ClickDetector)
print("click 1k")
end
wait()
end
elseif cht:match(":stopcollect") then -- add what you want to say for the script to execute so i put "admin" because i want it to load an admin script
_G.Condition = false
print("stoped")
end
end)