I feel slightly ashamed asking this but I’m a beginner who’s trying to learn at the moment.
I’m trying to assign a premade team in the teams folder to every player that joins, however, when I join, it assigns me to a random team. I’ve tried multiple solutions, however I’m completely stumped, can anybody help?
Lua Code
-- This is stored in Serverscriptstorage
local Players = game.Players
local function autoassignlobby(Player)
Player.Team = game.Teams.Lobby
end
game.Players.PlayerAdded:Connect(autoassignlobby)
So if I turned off autoassignable on all the other teams except the one I need, that’ll mean on join all players will be forced to the one autoassignable on team?