MrKix

Скрипт 23, OP:OS Bound kill script.

Nov 2nd, 2019
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14. player = game.Players.LocalPlayer
  15. mouse = player:GetMouse()
  16.  
  17. mouse.KeyDown:connect(function(key)
  18. if key == "z" then
  19. local me = game.Players.LocalPlayer.Character
  20.  
  21. local targetplayer = game:GetService("Workspace").Bound.Head
  22.  
  23. me.HumanoidRootPart.CFrame = CFrame.new(targetplayer.Position.X, targetplayer.Position.Y, targetplayer.Position.Z)
  24. end
  25. end)
  26.  
  27.  
  28. player = game.Players.LocalPlayer
  29. mouse = player:GetMouse()
  30.  
  31. mouse.KeyDown:connect(function(key)
  32. if key == "x" then
  33.  
  34. game:GetService("Workspace").Bound.Humanoid:TakeDamage(9999)
  35.  
  36. end
  37. end)
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52. -- Z - TP to Bound
  53. -- X - Kill Bound
  54.  
  55. -- U should damage him before using X. If u havent damaged him, u wont get money n shit.
Add Comment
Please, Sign In to add comment