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
Relukn
(Nickk)
September 23, 2021, 9:05pm
#2
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?
Ze_tsu
(Ze_tsu)
September 24, 2021, 9:17pm
#4
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