Refresh all players script

I’m trying to refresh all players at once. Please help

1 Like

What do you mean by “refresh all players”?

Loading characters
https://developer.roblox.com/en-us/api-reference/function/Player/LoadCharacter

Maybe try putting a script in StarterPlayerScripts.

Just loop through all players using :GetPlayers().

local PS = game:GetService("Players");

for _, Player in ipairs(PS:GetPlayers()) do -- GetPlayers() returns table of players
	Player:LoadCharacter(); -- Spawn player
end;

It works now. Thanks for the help!