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

How to make a car GUI?

Asked by 10 years ago

Hi, I'd like to make a car GUI on ROBLOX which shows up when you sit on the vehicle seat. I only need the scripting for the showing up of the GUI.

2 answers

Log in to vote
0
Answered by
Aethex 256 Moderation Voter
10 years ago

If I understand correctly, all you need is use of the Touched event?

Place the GUI in ServerStorage and the script below inside of the seat,

script.Parent.Touched:connect(function(plr)

    game.ServerStorage.GUIName:Clone().Parent = plr.PlayerGui;

end)
Ad
Log in to vote
-1
Answered by 10 years ago

Do you mean like a image of the car on a gui?

Then do the following:

StarterGUI>>GUI>>Frame>>ImageLabel Change the ID of the ImageLabel in the properties panel from a Decal ONLY

Answer this question