How can I see what region a player is in?

How can I see what region a player is in?

local LS = game:GetService("LocalizationService")

game.Players.PlayerAdded:Connect(function(plr)
	local region = LS:GetCountryRegionForPlayerAsync(plr)
	print(plr.Name .."'s Region is: "..region)
end)
2 Likes