Alright, so here is a thing I'm trying to do, I have been trying to make a hide and seek game but heres my question, how can I make a script that selects a player and makes them it.
You would first have to get all the players in the game, and select one of them at random:
1 | local players = game.Players:GetPlayers() |
2 | local chosenplayer = players [ math.random( 1 , #players) ] |