BankHack

Untitled

Oct 20th, 2018
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. --[[
  2. Please feel free to vouch for us!
  3. Scripted By: xXVenomouzIncXx
  4. Please don't take credit for my script,
  5. You new users!
  6. ]]
  7.  
  8. local Player = game.Players.LocalPlayer
  9. local Mouse = Player:GetMouse()
  10.  
  11. function FireKnife()
  12. local GetCurrentKnife = Player.Character:GetChildren()
  13. for i=1, #GetCurrentKnife do
  14. if GetCurrentKnife[i].ClassName == "Tool" then
  15. game.ReplicatedStorage.forhackers:InvokeServer(
  16. "throw",
  17. GetCurrentKnife[i].Name,
  18. CFrame.new(Mouse.Hit.p)
  19. )
  20. end
  21. end
  22. end
  23.  
  24. Mouse.Button1Down:connect(function()
  25. FireKnife()
  26. end)
  27.  
  28. Mouse.Button1Up:connect(function()
  29. FireKnife()
  30. end)
Add Comment
Please, Sign In to add comment