From what I'm guessing I think you are saying you have like a map with varying heights like hills and stuff and you want to know how far the character is from the point on the map below them. To get that you would have to use raycast. Its pretty simple but if you only want to decect the map you would have to group the map into one model if its not terrain. Your script would look something like this:
01 | local map = workspace.Map |
02 | function GetHeightRelativeToMap(character) |
03 | local HumanoidRootPart = character:FindFirstChild( "HumanoidRootPart" ) |
04 | local startPoint = HumanoidRootPart.CFrame.p |
05 | local Direction = Vector 3. new( 0 ,- 1 , 0 ) * 300 |
06 | local DownRay = Ray.new(startPoint,Direction) |
07 | local hit,Position = workspace:FindPartOnRayWithWhiteList(DownRay, { map,workspace.Terrain } ) |
09 | return HumanoidRootPart.Position.Y - Position.Y |
12 | return HumanoidRootPart.Position.Y |