Alright so, I have been lately trying to script SurfaceGui TextLabel to show the AngularVelocity of the HingeConstraint.
I have tried finding solutions on the Forums, unfortunately I haven’t found any working solutions, as so I’m asking you here.
Feel free to ask for any further details etc.
local Model = script.Parent.Parent.Parent.Parent.EngineR.EngineR.EngineMain.SpeedControl.HingeConstraint.AngularVelocity
while true do
script.Parent.Text = tostring(Model)
end
You’re only referencing the AngularVelocitybefore the loop.
local Model = script.Parent.Parent.Parent.Parent.EngineR.EngineR.EngineMain.SpeedControl.HingeConstraint
while true do
script.Parent.Text = tostring(Model.AngularVelocity)
end