Start Screen GUI with no character

I’m trying to make a start screen with a Play button that would load the character in at a spawn point.
The main thing I’m trying to do is see if a character can be absent and still have GUIs, and how I might make the camera go to this point without a character. This is a game I want to specifically make sure that things are the same everytime you start, so I don’t want the player to be able to do things and I’d prefer it would be loaded only when playing. I am keeping CharacterAutoLoads off at the moment.

Here’s an example of start screen I’m aiming for, with an old map I won’t be using and an example GUI.

1 Like

set Players.CharacterAutoLoads to false and when the player clicks the Play button just call Player:LoadCharacter() on them

2 Likes

Just follow these few steps:

  • Set your camera to Scriptable (and change its CFrame with a script)
  • Turn off CharacterAutoLoads
  • Add your UI to ReplicatedFirst

Give it a shot. :wink:

1 Like