i really cant seem to figure out how to do this. Please help?
Insert a click detector inside of the part and put the script inside of the billboard gui.
local clickDetector = workspace.Part.ClickDetector function onMouseClick() script.Parent.Enabled = true wait(5) script.Parent.Enabled = false end clickDetector.MouseClick:connect(onMouseClick)
part.MouseClick:Connect(function() billboardgui.Enabled = true wait(5) billboardgui.Enabled = false end