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.
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,
1 | script.Parent.Touched:connect( function (plr) |
2 |
3 | game.ServerStorage.GUIName:Clone().Parent = plr.PlayerGui; |
4 |
5 | end ) |
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