I’ve looked at different posts and couldn’t find a solution
Despite the bool being true it still print not playing
function module.GetPlayers()
for i, players in pairs(game.Players:GetPlayers()) do
if players:WaitForChild("Ready") and players:WaitForChild("Ready").Value == true then
players.Team = game.Teams.Survivor
game.ServerStorage.Bar:Clone().Parent = players.PlayerGui
players.PlayerGui.ScreenGui.Enabled = false
players:LoadCharacter()
else
print("Not playing")
end
end
end