Soo I wan’t to make a random plot giver, that when a player enters the game he gets a plot and no one else can get it and I am asking for some advice on how to do it.
1 Like
Maybe use a table where you can put in all plots and when a player joins the name of the plot will get removed from the table and re inserted when player leaves the game
1 Like
Instead of removing and inserting the table, you could just use a variable to represent if it’s taken or not. I think that would be a lot easier.
Plot = {
-- code blah blah...
Taken = false;
}