So when i set my buttons property to false they still act as active and execute scripts, i tried deleting and making a new button but i still get the same result. I also tried searching this problem on the web and didn’t find a single topic that suggested the same issue i have. if anyone knows why this happends please let me know.
1 Like
you should just be using visible instead since it already does what active does and it makes the text button invisible
2 Likes
Are you using MouseButton1Click
? Because Active
won’t affect that event.
If you are, use Activated
instead.
--from
Button.MouseButton1Click:Connect(function()
end)
--to
Button.Activated:Connect(function()
end)
1 Like
much love sorry for late response
1 Like
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.