Advertisement
NukeVsCity

no cd

Jul 3rd, 2022
783
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. getgenv().nocd = true
  2.  
  3. while getgenv().nocd do wait()
  4. pcall( function()
  5. for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.HUD.Cooldowns.Frame:GetChildren()) do
  6. if v:IsA("ImageButton") then
  7. local name = v.Name
  8. local args = {
  9. [1] = "ResetCD",
  10. [2] = name
  11. }
  12. game:GetService("Players").LocalPlayer.Character.RemoteEvent:FireServer(unpack(args))
  13. end
  14. end
  15. end)
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement