What can be parented to starterplayer and it'll work (like "StarterCharacter")


theres also this which is a basic humanoid with a decal under it as a test

According to the Roblox documentation for StarterPlayer, you can parent the following:

  • A StarterPlayerScripts instance with scripts that run once for each player.
  • A StarterCharacterScripts instance with scripts to add to each player’s character every time they spawn.
  • A Humanoid instance named StarterHumanoid which will be used as the default humanoid for each player’s character.
  • A Model instance named StarterCharacter which will be used as the character model for all players.

Here is a link to the corresponding documentation.

2 Likes