Recently I have seen people in their game get the players server region. Like for an example in arsenal, you see a text it the top right corner with the players server region. So I am wondering how I can get the players server region.
local Player = game:GetService("Players").LocalPlayer
local LocalizationService = game:GetService("LocalizationService")
local success, country = pcall(LocalizationService.GetCountryRegionForPlayerAsync, LocalizationService, Player)
if success then
TextLabel.Text = "You're from: "..country
end