-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] local ReplicatedStorage = game:GetService("ReplicatedStorage") local WoolEvent = ReplicatedStorage.Signals.RemoteEvents.GetWoolRemote local PutEvent = ReplicatedStorage.Signals.RemoteEvents.PutRemote local env = getgenv() -- Run again = OFF if env.WoolTask then env.WoolRunning = false pcall(function() task.cancel(env.WoolTask) end) pcall(function() task.cancel(env.PutTask) end) env.WoolTask = nil env.PutTask = nil return end -- Turn ON env.WoolRunning = true -- 1-35 batch env.WoolTask = task.spawn(function() while env.WoolRunning do for i = 1, 35 do if not env.WoolRunning then break end WoolEvent:FireServer( i, Vector3.new( -325.06982421875, 5.0105333328247, -239.19760131836 ) ) -- Give the client a chance to process other work if i % 10 == 0 then task.wait() end end task.wait() end end) -- PutRemote every second env.PutTask = task.spawn(function() while env.WoolRunning do PutEvent:FireServer() task.wait(1) end end)