I'm trying to make a script in which rather than loading your character appearance, you load another player's.
Here's my script.
game.Players.PlayerAdded:connect( function(p) p.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=247535&placeId=0" end )
game.Players.PlayerAdded:connect(function(p) repeat wait() until p.Character ~= nil repeat wait() until p.Character:FindFirstChild("Head") repeat wait() until p.Character:FindFirstChild("Torso") --Want to make sure the character is loaded enough. p.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=247535&placeId=0" --Change his looks. wait(1) --For some reason the player's character still wants to load so it should wait. p:LoadCharacter() --Player gets respawned. end)