Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Tool = Instance.new("HopperBin", game.Players.Localplayer.Backpack)
- Tool.Name = "FE Kill Tool"
- local Mouse = game.Players.LocalPlayer:GetMouse()
- Tool.Selected:connect(function()
- Mouse.Button1Down:connect(function()
- if Tool.Active == true then
- if Mouse.Target and Mouse.Target.Parent:IsA('Model') then
- game.Players[Mouse.Target.Parent.Name]:Move(Vector3.new(math.huge,math.huge,math.huge))
- end
- end
- end)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement