Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Not removing characters appearance?

Asked by
FiredDusk 1466 Moderation Voter
8 years ago
game.Players.PlayerAdded:connect(function(player)
    player.CharacterAdded:connect(function()
        player.Character:IsA("CharacterAppearance"):Remove()
end)
end)

1 answer

Log in to vote
1
Answered by 8 years ago

You can simple do this:

CanLoadCharacterAppearance = false

This will spawn them in like a noob (pretty sure the old noob not the new one.) So like this:

game.Players.PlayerAdded:connect(function(player)
    player.CharacterAdded:connect(function()
        player.Character.CanLoadCharacterAppearance = false
end)
end)

Hope it helps!

0
If this doesn't work do player. CanLoadCharacterAppearance = false docrobloxman52 407 — 8y
0
It's a property of the Player. Just an FYI dyler3 1510 — 8y
0
Okay thanks dude! docrobloxman52 407 — 8y
Ad

Answer this question