How to get player’s locale?

Hello, I tried using RobloxLocaleId and it wasn’t being changed depending on a player’s settings.

This is the settings I want the locale from:

1 Like

not exactly sure what you’re having issues with, but if its that youre trying to get the players LocaleId use something like this.

while true do
print(game:GetService("Players").LocalPlayer.LocaleId)
wait(.1)
end

only really needed part is

game:GetService("Players").LocalPlayer.LocaleId

sorry if im not hearing you right

I don’t believe you can change the players local language through scripts

I’m trying to get it, not change it, sorry

If your trying to get it from client:

local plrs = game:GetService("Players")

local plr = plrs.LocalPlayer

print(plr.LocaleId)

If your trying to get it from server

use a remote event