How to make a player length bar

Hi! I’m making a obby like game and i want to put a gui that shows the players location in relation to the start and the finish, similar to Tower of Hell put horizontal. However, I have no idea how to do this and there’s no tutorials that explain it well. You don’t need to give me a full script just walk me through the general steps of how to do this. Thank you!

You could use magnitude to find the distance between the player and the end, and base the bar off of that. You can calculate magnitude with:
(Position1-Position2).magnitude

To make the bat just make an empty image gui, and make a duplicate as its child. Set the size (of the child gui) in scale to:
1 - (the result of the magnitude calculation / by the stating magnitude.)

1 Like

If you havent figured it out yet check out my solution here