Speed Gui Script

Is there a way to get the script from the basic speed gui that you can enable in the driver’s seat property to put your own gui into it?
I’m not a scripter and need help from someone who could help.

you can use the seat trigger of a Chair.

LocalScript

seat:GetPropertyChangedSignal("Occupant"):Connect(function()
local humanoid = seat.Occupant -- Humanoid

BindableEvent:Fire() -- Trigger/Event

end

LocalScript (StarterGui)

BindableEvent.Event:Connect(function()

ui.Enable = true

end

And you can use the magnitude for the car speed

1 Like

Would you wanna talk more in depth about this on discord or some place?

Not sure what you’re describing, are you attempting to change the “MaxSpeed” property of a VehicleSeat instance from a gui?

I have a boat system and im currently using the vehicle seat speed gui to show the speed, I was wondering if there is any way to get the script for that and put my own gui into it.

The script for the Roblox speed GUI is a CoreScript, and Studio doesn’t allow you to open them, which means that you’ll have to script it yourself. You can use @memocrac’s code, or just make your own.

Also fun fact: You can disable the default speed GUI (on one of the seats) by disabling the HeadsUpDisplay property of the vehicle seat.

Memocracken#2424 if you wanna talk