Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How do you get everyone's location in-game?

Asked by 3 years ago

I am trying to find a script that can print everyone's location that is in the game.

1 answer

Log in to vote
2
Answered by
sebanuevo 123
3 years ago

You mean the position of the players? I have a script for it.

Also this isn't a script request forum, we do not make the scripts for you.

-- We wait for our character or other characters to load

wait(10)

for i, Player in pairs(game.Players:GetPlayers()) do
    print(tostring(Player.Character.HumanoidRootPart.Position))
end
Ad

Answer this question