I am wanting to make a single player game, so is there a way to have the chat and the list of players removed when the game loads? They get in the way.
Thanks
You can disable the chat by doing
game:GetService("StarterGui"):SetCoreGuiEnabled(Enum.CoreGuiType.Chat, false)
and the playerlist by doing
game:GetService("StarterGui"):SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)
Thank you so much, sometimes with the volume of information, its hard to find certain things.
1 Like
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.