--BROUGHT TO YOU BY RobloxScripter.com!--
game:GetService("RunService").Heartbeat:Connect(function()
local err, success = pcall(function()
for i, v in pairs(game:GetService("Players").LocalPlayer.Cooldown:GetChildren()) do
if v:IsA("IntValue") or v:IsA("StringValue") or v:IsA("BoolValue") then
local args = {
[1] = game:GetService("Players").LocalPlayer.Cooldown:FindFirstChild(v.Name)
}
game:GetService("Workspace").Heart.RemoteEvent:FireServer(unpack(args))
end
end
end)
end)