Title says it all.
I'm trying to make good-looking text above a button (part) using billboard GUI, but whenever you walk over the button (to buy something), the text just ends up staying there even after the button disappears. How can I fix it?
Thanks.
local part=script.Parent local gui=part:FindFirstChildOfClass"BillboardGui" part:GetPropertyChangedSignal"Transparency":Connect(function() if part.Transparency==1 then gui.Enabled=false end end)