ADVERTISEMENTREMOVE ADS
Garden Auto Collect
46,049 views
Description
collects fruits when in range
Tested with
ADVERTISEMENTREMOVE ADS
10 Lines ⢠282 Bytes
local rs = game:GetService('RunService')
local cc = require(game:GetService('ReplicatedStorage').Modules.CollectController)
local lt = tick()
local conn = rs.Heartbeat:Connect(function()
if tick() - lt >= 0.01 then
cc:Collect()
lt = tick()
end
end)
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS




Comments