Creating a radial/circular gauge GUI with A-Chassis

Do you have any ideas on how to use A-Chassis Tune V6.43S with this dash to create a radial/circular speedometer?

This is kind of what I am going for:

And this is what I have:

I have tried getting Frames with UICorners and then using UIGradients with scripted transparency sequences, however, it doesn’t really work and I don’t like the look.

I am basically using lines 238-241 of the AC6_Stock_Gauges script

script.Parent.Parent.Values.Velocity.Changed:connect(function(property)
	script.Parent.Speedo.Needle.Rotation = 45 + 225 * math.min(1,UNITS[currentUnits].scaling*script.Parent.Parent.Values.Velocity.Value.Magnitude/UNITS[currentUnits].maxSpeed)
	script.Parent.Speed.Text = math.floor(UNITS[currentUnits].scaling*script.Parent.Parent.Values.Velocity.Value.Magnitude) .. " "..UNITS[currentUnits].units
end)

Any and all help is GREATLY appreciated.

Do you want something like this?

1 Like

I didn’t even see that. I’ll give it a try and see.

Thank you!

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.