How to get players to spawn sitting in a circle similar to the game Breaking Point

Hello I want players to spawn into a map, sitting in a circle just like in the game Breaking Point
Screenshot:


If there is any articles, post or even YouTube tutorials on how to do this it would be much appreciated I am just practicing scripting in lua and I think this is advance so I would love to learn how to do it

You could loop through all the players and make them sit using Seat:Sit().

1 Like

Okay one last question,how would I loop thought the characters would I use loops or tables?

Both you would simply do:

for _, Player in ipairs(game:GetService("Players"):GetPlayers())do
      local Character = Player.Character
      -- Do whatever u want with character here.
end
1 Like

good looking out , still learning lua but i am getting there, java script and c++ coming in clutch