View difference between Paste ID: 4D9ELUHm and jfUiTcxK
SHOW: | | - or go back to the newest paste.
1-
local Tool = Instance.new("HopperBin", game.Players.Sebek28.Backpack)
1+
local Tool = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
2
Tool.Name = "FE Kill Tool"
3
4-
local Mouse = game.Players.Sebek28:GetMouse()
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)