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

How do I make a GUI that when we sit down something then the GUI pop-up?

Asked by 6 years ago

How do I make a GUI that when we sit down something then the GUI pop-up?

Thanks

1 answer

Log in to vote
0
Answered by 6 years ago

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... ?

0
It's work. Just need to add some scripts in it. But thanks! rolocchannel2911 -14 — 6y
0
Oh wow, really ??? LordTechet 53 — 6y
Ad

Answer this question