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:
local players = game.Players:GetPlayers() local chosenplayer = players[math.random(1, #players)]