Friaza

Untitled

Jul 3rd, 2016
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. p = game.Players.Novaseus
  2. c = p.Character
  3. ToolName = "HealQuirk"
  4. local enabled = true
  5.  
  6. if p.Backpack:FindFirstChild(ToolName) then p.Backpack[ToolName]:Destroy() end
  7. if p.StarterGear:FindFirstChild(ToolName) == nil then if p.StarterGear:FindFirstChild(ToolName) then p[ToolName]:Destroy() end script:clone().Parent = p.StarterGear end
  8. if c:FindFirstChild(ToolName) then c[ToolName]:Destroy() end
  9. x = Instance.new("Tool", c) x.Name = ToolName x.RequiresHandle = false
  10.  
  11. ch = game:GetService("Chat")
  12. str = "Novaseus heal power!"
  13. ch:Chat(Workspace.Novaseus.Head, str)
  14. function Attack()
  15. if enabled == true then
  16. enabled = false
  17. for i = 1, 25 do
  18. Workspace.Novaseus.Humanoid.Health = Workspace.Novaseus.Humanoid.Health +1
  19. wait()
  20. end
  21. wait(0.4)
  22. enabled = true
  23. end
  24. end
  25.  
  26. x.Activated:connect(Attack)
Add Comment
Please, Sign In to add comment