How do I make a GUI that when we sit down something then the GUI pop-up?
Thanks
script is LocalScript inside the seat
local Player = game.Players.LocalPlayer local Seat = script.Parent Gui = StarterGui.ScreenGui.(Your items here) Gui.Visible/Enabled (Depending on what the screen item is) = false if Player:Sit(Seat) then Gui.Visible/Enabled = true end
I was too lazy to try it out on my world, but I think it should be it... ?