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

How to make a character start as a preset?

Asked by
ryjaboe 15
8 years ago

How do I make someone start as a plain white robloxian 1.0 body?!

0
Remove the packages off the player? Azmidium 388 — 8y

1 answer

Log in to vote
0
Answered by 8 years ago

When a player spawns, disable CanLoadCharacterAppearance, and change their BodyColors to "Institutional white"

E.G:

game.Players.PlayerAdded:connect(function(p)
    p.CanLoadCharacterAppearance = false
    p.CharacterAdded:connect(function(char)
        char["Body Colors"].HeadColor = BrickColor.new("Institutional white")
        char["Body Colors"].TorsoColor = BrickColor.new("Institutional white")
        char["Body Colors"].LeftArmColor = BrickColor.new("Institutional white")
        char["Body Colors"].LeftLegColor = BrickColor.new("Institutional white")
        char["Body Colors"].RightArmColor = BrickColor.new("Institutional white")
        char["Body Colors"].RightLegColor = BrickColor.new("Institutional white")
    end)
end)
Ad

Answer this question