Advertisement
Guest User

Untitled

a guest
Jan 20th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. -- in game equip your knife then press q, it will tp u behind ur target all u have to do is attack by clicking.
  2. -- Made by me Reversal
  3. local me = game.Players.LocalPlayer
  4. local mouse = me:GetMouse()
  5. local helper = game.Players.LocalPlayer:FindFirstChild('Humanoid')
  6. mouse.KeyDown:connect(function(key)
  7. if key == 'q' then
  8. local tar = game.Players.LocalPlayer.PlayerGui.ScreenGui.UI.Target.Img.PlayerText.Text
  9. local target = game.Workspace:FindFirstChild(tar)
  10.  
  11. repeat
  12. wait()
  13. me.Character.HumanoidRootPart.CFrame = target.HumanoidRootPart.CFrame
  14. wait()
  15. game.Players.LocalPlayer.Character:FindFirstChildOfClass'Tool':Activate()
  16. wait()
  17. until target.Humanoid.Health == 0 or helper.Health = 0
  18. wait()
  19. end
  20. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement