local player = game:GetService("Players"):WaitForChild("USERNAME") -- <- put your username local event = workspace:WaitForChild("Events"):WaitForChild("ClaimDailyReward"):WaitForChild("RemoteEvent") local args = {player} while true do event:FireServer(unpack(args)) wait(0.05) -- waits 0.05 seconds before firing again end -- credits me! hehe