ReddAnims

Ninja Simulator Hack

Dec 17th, 2018
522
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. script: -- Script generated by R2Sv2
  2. -- R2Sv2 developed by Luckyxero
  3. -- Explored by Jonswabe
  4.  
  5. local A_1 = game:GetService("Workspace")["先生"].Humanoid
  6. local A_2 = "punch"
  7. local Event = game:GetService("ReplicatedStorage").Remotes.Damage
  8.  
  9. local toggled = false
  10. local keys = "k" -- key to toggle farm
  11. local plr = game:GetService("Players").LocalPlayer
  12. local mouse = plr:GetMouse()
  13.  
  14. mouse.KeyDown:connect(function(key)
  15. if key:lower() == keys then
  16. toggled = not toggled
  17. print(tostring(toggled))
  18. end
  19. end)
  20.  
  21. game:GetService('RunService').Stepped:connect(function()
  22. if toggled then
  23. Event:InvokeServer(A_1, A_2)
  24. end
  25. end)
Add Comment
Please, Sign In to add comment