1. getgenv().a = true
  2. while a do task.wait()
  3. for i = 1,100 do
  4. task.spawn( function()
  5. local args = {
  6. [1] = "ActivatePower",
  7. [2] = "SkillNameHere" --Replace with Skill Name e.g: Erasure
  8. }
  9. game:GetService("ReplicatedStorage").Events:FindFirstChild("Powers/RemoteFunction"):InvokeServer(unpack(args))
  10. end)
  11. end
  12. end