Here, the robloxian climbed a ladder. (Started at the ground (0 stud) finished at the top of the ladder (10 studs). I want to know how can I make the altimeter show 5 and not 10. (Convert the stud altimeter into a meter altimerer).
Get the distance from the ground to the player, and divide that number by two in code. If you want an example:
local player = game.Players.LocalPlayer
local hmndrootpart = player:FindFirstChild("HumanoidRootPart")
local playerPos = hmndrootpart.Position.Y - game.Baseplate.Position.Y
print('The position of the player in metres is: ')
print(playerPos / 2)
Apologies for any mistakes, I’m on mobile and coding is a little difficult