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

How would I remove the starter character when a player joins?

Asked by 4 years ago
Edited 4 years ago

I have really no code for this, I tried a basic :Destroy() on the character, but it didn't work. How would I permanently remove the character. Sorry if this is too vague.

1 answer

Log in to vote
0
Answered by 4 years ago

trust me, it will work to spawn character: plr:LoadCharacter()

game.Player.PlayerAdded:connect(function(plr)
    plr.CharacterAdded:connect(function()
        plr.Character:Destroy()
    end)
end)
0
Worked, thanks. Quantrium 14 — 4y
Ad

Answer this question