Historical graph

Hi! I’m stumped. I’m trying to make a graph, but can’t figure out a way to do it. I’m wondering - is making a graph like this even possible on roblox?

Yes it it possible, you just need a set of coordinates {(x1, y1), (x2, y2), ...} and now connect these points with any GUI element that can be changed into a line, for example TextLabel. You set the size of it so that its thickness is constant and the length is the distance between two points ((x[n], y[n]) and (x[n + 1], y[n + 1])), position it on x = (x[n] + x[n + 1]) / 2, y = (y[n] + y[n + 1]) / 2, and rotate so that it connects these points.

2 Likes

Thanks! A bit too confusing for me, as expected, but I’ll look at getting somebody.