Advertisement
RoSploitzer

Power Simulator Autofarm

Jul 29th, 2019
1,991
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. local Powers = {
  2. "PunchPower",
  3. "Agility",
  4. "Endurance",
  5. "PsychicForce",
  6. "Swiftness"
  7. }
  8. local PunchPower = "PunchPower"
  9. local EquipAbility = game:GetService("ReplicatedStorage").EquipAbility
  10. local IncreaseAbilities = game:GetService("ReplicatedStorage").IncreaseAbilities
  11. _G.SuperHeroHax = false
  12. EquipAbility:FireServer(PunchPower)
  13. while true do
  14. if _G.SuperHeroHax then return end
  15. for i,v in pairs(Powers) do
  16. IncreaseAbilities:FireServer(v)
  17. wait(0.5)
  18. end
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement