Robloxian_Scripter

Untitled

Mar 26th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local Tool = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  2. Tool.Name = "FE Kill Tool"
  3.  
  4. local Mouse = game.Players.LocalPlayer:GetMouse()
  5.  
  6. Tool.Selected:connect(function()
  7. Mouse.Button1Down:connect(function()
  8. if Tool.Active == true then
  9. if Mouse.Target and Mouse.Target.Parent:IsA('Model') then
  10. game.Players[Mouse.Target.Parent.Name]:Move(Vector3.new(math.huge,math.huge,math.huge))
  11. end
  12. end
  13. end)
  14. end)
Add Comment
Please, Sign In to add comment