-- Get the ReplicatedStorage service local ReplicatedStorage = game:GetService("ReplicatedStorage") -- Reference to the addChickens remote event local addChickensEvent = ReplicatedStorage:WaitForChild("events"):WaitForChild("remotes"):WaitForChild("addChickens") -- Function to spam addChickens every second local function spamAddChickens() while true do -- Fire the addChickens event addChickensEvent:FireServer() wait(0.000001) end end -- Call the spamAddChickens function to start spamming spamAddChickens()