of     1   

luigi645
#794142Sunday, April 20, 2008 11:46 AM GMT

i need a humanoid removal tool that removes me humanoid but replaces it when i want it to
randomrobot
Top 100 Poster
#794478Sunday, April 20, 2008 1:56 PM GMT

Here(this was made from scratch): humanoidholder = Instance.new("Model") bin = script.Parent function onButton1Down(mouse) player = game.Players.LocalPlayer if player==nil then return end if player.Character:findFirstChild("Humanoid")~=nil then player.Character.Humanoid.Parent = humanoidholder else humanoidholder.Humanoid.Parent = player.Character end end function onSelected(mouse) player = game.Players.LocalPlayer if player==nil then return end humanoidholder.Parent = player mouse.Button1Down:connect(function() onButton1Down(mouse) end) end bin.Selected:connect(onSelected)
luigi645
#799723Monday, April 21, 2008 11:43 AM GMT

ok thanks
snorlaxfan
#799933Monday, April 21, 2008 1:16 PM GMT

whAt
luigi645
#805540Tuesday, April 22, 2008 10:21 AM GMT

um how do you post it to a tool?
randomrobot
Top 100 Poster
#805585Tuesday, April 22, 2008 11:14 AM GMT

add a script into the tool and inside the script copy and paste that

    of     1