local refill = game:GetService("ReplicatedStorage").Events.RefillBlocks local place = game:GetService("ReplicatedStorage").Events.PlaceBlock function fire(event) event:FireServer() end while task.wait() do fire(refill) fire(place) end