Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Drawing Lines on a GUI?

Asked by
GShocked 150
9 years ago

Ok, so I've got my script. Currently, it correctly plots points, but now I want to connect those points to make a line graph. I've tried a lot of different things, but I've not gotten it right. I think the only problem is that the lines have wrong slopes, but I'm not sure if that's the only problem.

PS: If you know of a script that does exactly what I am describing (plotting points and/or drawing lines), then let me know!

Btw, this script uses the data from this table: {18.351, 18.615, 18.516, 18.921, 19.012, 19.051}

01local x2 = 0
02local y2 = 0
03local x1 = 0
04local y1 = 0
05local dist = 0
06local slope = 0
07local line = 0
08 
09function graph(x, y, i)
10    local p = Instance.new("Frame", script.Parent.Pixels)
11    p.Size = UDim2.new(0, 5, 0, 5)
12    p.Position = UDim2.new(x, 0, y, 0)
13    p.BorderSizePixel = 0
14    p.BackgroundColor3 = Color3.new(200, 20, 20)
15    p.Name = p.Name .. i
View all 67 lines...
0
The problem with Rotation scripting is that ROBLOX anchors rotation to the center of the GUI element, but positioning to the top left, unrotated, making it much harder than it has to be to get the math right. adark 5487 — 9y

Answer this question