-- Provided by: https://wrldscripts.xyz
getgenv().AutoFinish = true -- Set to false to stop
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Event = ReplicatedStorage.Shared.Remotes.RecordFinished
task.spawn(function()
while getgenv().AutoFinish do
pcall(function()
Event:FireServer()
end)
task.wait()
end
end)