Why does every server I make its "Dallas, United States", Im european not american

I use a community resource to find the server location, although i think its outdated since it either shows the location as nothing or as dallas only

local HTTP = game:GetService("HttpService")
local Server_Info = HTTP:JSONDecode(HTTP:GetAsync('http://ip-api.com/json/'))

local Replicated = game:GetService("ReplicatedStorage")
local String = Replicated:WaitForChild("Networking").HostLoc

String.Value = (Server_Info.city).. ", ".. (Server_Info.country)

This API is accurate, so it’s likely Roblox’s bad server locations or you have a VPN.

1 Like