[RESOLVED] Changing the sensivity of an altimeter

I recently started composing GUIs and Scripting for my Mountain Game


I started by making a GUI that indicates the altitude
(Text Box)
I would like to know how to change the sensitivity of the altimeter so that it is less precise (Make 10 meters on Roblox is 5 meters on the altimeter)


image ________________________________________
Thank you for taking the time to read this request for help and for responding (if you have)
cordially
Official_DevFrancais / Head Developer of SWITZERLAND - MONTE ROSA CLIMBING ROLEPLAY :mountain:

1 Like

Making distances different is fine, but what are you using for your script? We need that information to find out what you are doing here.
If you want to make 10 studs or 10 meters display as half that distance just divide it by 2.
If you want to round it to 10 meters or 5 meters increments then you mean you want to round the number, not change it’s sensitivity.

1 Like

I will send it. Lemme 2 minuts

1 Like

local player = game.Players.LocalPlayer

while wait() do

script.Parent.Text = math.ceil(player.Character.Head.Position.Y)

end

1 Like

So are you trying to round it or make the altitude value equal a different number?
If you are looking for an actual scale of a Robloxian then:

3 Likes