of     1   

bounty823
#7564578Thursday, April 16, 2009 4:34 PM GMT

Ok so I plan to make a ninja assasin game. The only problem is that you can see people's health and name thru a wall. I wan to make a script that will make people's humanoid invisible. I know this is possible because i see this is many hide-and-go-seek games. If someone could help me, I'll give them a reward of 150 tix. Please help.
Fysir_Fox
#7564640Thursday, April 16, 2009 4:37 PM GMT

you mean when entered or what?
bounty823
#7564699Thursday, April 16, 2009 4:40 PM GMT

I mean when they enter nobody will see the humanoid over their head
gustav165
#7565216Thursday, April 16, 2009 5:02 PM GMT

function CHANGE(v) wait(0.1) local a = v.Character.Head:Clone() a.Name = "blahblhablah" a.Parent = v.Character v.Character.Head.Transparency = 1 v.Character.Head:findFirstChild("face"):remove() -- i added this to agentfirefox's script to remove the first face local w = Instance.new("Weld") w.Parent = a w.Part1 = v.Character.Head w.Part0 = a end game.Players.PlayerAdded:connect(function(p) p.Changed:connect(function(O) if O == "Character" then CHANGE(p) end end) end) -- now give me my reward! please :)
popping100
#7566340Thursday, April 16, 2009 5:54 PM GMT

function CHANGE(v) wait(0.1) local a = v.Character.Head:Clone() a.Name = "blahblhablah" a.Parent = v.Character v.Character.Head.Transparency = 1 v.Character.Head:findFirstChild("face"):remove() -- i added this to agentfirefox's script to remove the first face local w = Instance.new("Weld") w.Parent = a w.Part1 = v.Character.Head w.Part0 = a end game.Players.PlayerAdded:connect(function(p) p.Changed:connect(function(O) if O == "Character" then CHANGE(p) end end) end) -- now give me my reward! please :D or die D: or i kill you L llll llll :/llllllllll llll llll
Dr01d3k4
#7566899Thursday, April 16, 2009 6:27 PM GMT

popping, why did you ust copy the script above your post?
Clone512
#7567050Thursday, April 16, 2009 6:33 PM GMT

He wants the reward; why else?
Dr01d3k4
#7567059Thursday, April 16, 2009 6:34 PM GMT

Good point lool.
Clone512
#7567081Thursday, April 16, 2009 6:35 PM GMT

He did say anyone who helped would get a reward. xD He should've clarified that better.

    of     1