this script is supposed to make the text button invisible and unusable, it does make it completely invisible however the input is still being sent regardless of the active = false.
I am very confused.
The "OH MY GOD" line is the input received from hitting the button.
script.Parent.Active = false script.Parent.Parent.Leave.BackgroundTransparency = 1 script.Parent.Parent.Leave.TextTransparency = 1 script.Parent.MouseButton1Click:Connect(function() script.Parent.Parent.Leave.Active = true script.Parent.Parent.Leave.BackgroundTransparency = 0 script.Parent.Parent.Leave.TextTransparency = 0 end)
If anyone can help or give insight if this a glitch or if im missing something, I appreciate it.
-snipperdiaper
Simple. In line 1, you have done "script.Parent.Active = false
While in all other lines you have done "script.Parent.Parent"
Let me know if this fixes it.
Actually, You Just Need to Change the Visible Check to False
Like this One:
script.Parent.Visible = false script.Parent.MouseButton1Click:Connect(function() script.Parent.Parent.Leave.Visible = true end)
Hope It Help!