View difference between Paste ID: wjsAmHuf and eWPHFCfs
SHOW: | | - or go back to the newest paste.
1-
local Tool = Instance.new("HopperBin", game.Players.Localplayer.Backpack)
1+
local Tool = Instance.new("HopperBin", game.Players.Magermash.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)