View difference between Paste ID: eJgG0jeQ and Cyt971Jz
SHOW: | | - or go back to the newest paste.
1
local Plr = game.Players.SebTDZ500
2
3
local Tool = Instance.new("Tool")
4-
Tool.Name = "Anime"
4+
Tool.Name = "Remove"
5
Tool.Parent = Plr.Backpack
6
Tool.CanBeDropped = false
7
8
local Handle = Instance.new("Part")
9
Handle.Name = "Handle"
10
Handle.Parent = Tool
11
Handle.Anchored = false
12
Handle.Transparency = 1
13
Handle.Size = Vector3.new(1, 1, 1)
14
15
local Event = Instance.new("RemoteEvent")
16
Event.Name = "Event"
17
Event.Parent = Tool
18
Event.OnServerEvent:connect(function(player, Target)
19-
	if Target.Parent:FindFirstChild('Humanoid') then
19+
	if game.Players:FindFirstChild(Target.Parent.Name) then
20-
		Dmg(Target.Parent)
20+
		local T = game.Players:FindFirstChild(Target.Parent.Name)
21
		print(T.AccountAge)
22-
end)
22+
	else
23
		Target.Parent = game.Lighting
24-
function GetDudesTorso(c)
24+
25-
local torsy = (c:findFirstChild("Torso") or c:findFirstChild("UpperTorso"))
25+
end)