of     1   

rougedemon
#44907544Friday, April 01, 2011 2:09 AM GMT

game.Players.PlayerAdded:connect(function(Player) if Player.Name == "rougedemon" then Player.Character.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=17799754" Player.Character.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=21172424" Player.Character.Head.face.Texture = "http://www.roblox.com/asset/?id=26449032" end end )
lupine
#44907715Friday, April 01, 2011 2:12 AM GMT

Output?
scripterzack
#44907736Friday, April 01, 2011 2:12 AM GMT

game.Players.PlayerAdded:connect(function(Player) if Player.Name == "rougedemon" then Player.CharacterAdded:connect(function(char) char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=17799754" char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=21172424" char.Head.face.Texture = "http://www.roblox.com/asset/?id=26449032" end) end end )
lupine
#44907802Friday, April 01, 2011 2:13 AM GMT

Ohh, didn't see the second function.
rougedemon
#44908330Friday, April 01, 2011 2:24 AM GMT

thanks

    of     1