Advertisement
yaleaks

licc

Oct 21st, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. local tool = script.Parent
  2.  
  3. local handle = tool:WaitForChild("Handle")
  4.  
  5. local plr = game.Players.LocalPlayer
  6.  
  7. repeat
  8.  
  9. wait()
  10.  
  11. until plr.Character
  12.  
  13. local ha = script.h
  14.  
  15. ha:InvokeServer(handle)
  16.  
  17. local c = plr.Character
  18.  
  19. local hum = plr.Character:WaitForChild("Humanoid")
  20.  
  21. local mouse = plr:GetMouse()
  22.  
  23. local actionAnim = Instance.new("Animation")
  24.  
  25. actionAnim.AnimationId = "rbxassetid://1060244762"
  26.  
  27. local animp2 = hum:LoadAnimation(actionAnim)
  28.  
  29. local deb = false
  30.  
  31. local timeLength = 2.3
  32.  
  33. local b1D
  34.  
  35. local strength = game.ReplicatedStorage.DaperpreoaAddStrengthHacksBroSKRASkq
  36.  
  37. tool.Equipped:Connect(function()
  38.  
  39. if hum.Health <= 0 then
  40.  
  41. return
  42.  
  43. end
  44.  
  45. print("equipped")
  46.  
  47. b1D = mouse.Button1Down:Connect(function()
  48.  
  49. if hum.Health <= 0 then
  50.  
  51. return
  52.  
  53. end
  54.  
  55. if deb == false then
  56.  
  57. deb = true
  58.  
  59. local breath = c:FindFirstChild("breath")
  60.  
  61. if breath then
  62.  
  63. breath.particle:Emit(1)
  64.  
  65. end
  66.  
  67. animp2:Play()
  68.  
  69. strength:FireServer(handle, 8)
  70.  
  71. wait(timeLength)
  72.  
  73. animp2:Stop()
  74.  
  75. deb = false
  76.  
  77. end
  78.  
  79. end)
  80.  
  81. end)
  82.  
  83. tool.Unequipped:Connect(function()
  84.  
  85. b1D:disconnect()
  86.  
  87. animp2:Stop()
  88.  
  89. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement