It Seems, i can't Morph the Character. I can Disable its CanLoad Properties but i can't seem to make it morph into a character?
Can someone give me some advice?
game.Players.PlayerAdded:connect(function(Plr) Plr.CanLoadCharacterAppearance = false end) game.Players.PlayerAdded:connect(function(Plr) Plr.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=39958537" end)
too much you dont need to turn off their chrappearance for it to work and keep them in one function here you go chance numplr to wutever player id you want
local ChrNum = 1 game.Players.PlayerAdded:connect(function(plr) local use = true plr.CharacterAdded:connect(function(chr) if use == true then use = false plr.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId="..ChrNum.."&placeId="..game.PlaceId wait() plr:LoadCharacter() end end) end)
Randomized: (note: add player ids to the ChrNum table)
local ChrNum = {"39563808","80254","1","41837418","48705637","15861410","42943434","45001130"} game.Players.PlayerAdded:connect(function(plr) local use = true plr.CharacterAdded:connect(function(chr) if use == true then use = false plr.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId="..ChrNum[math.random(1,#ChrNum)].."&placeId="..game.PlaceId wait() plr:LoadCharacter() end end) end)
+1 pl0x c: