So I am trying to make a button disappear by clicking a text button. I tried making a script but it didn't work. Here's the script:
1 | game.Workspace.Model.Textbutton |
2 | Mousebutton 1 click = game.Workspace.Droppers(destroy) |
Please reply
Thanks
1 | script.Parent.MouseButton 1 Click:connect( function () |
2 | game.Workspace.Part.Transparency = 1 |
3 | end ) |
That simple. :) The first line is basically the function. If mouse button1 is clicked, it will fire the block of code under it.
** For the example shown above, I input the script into a local script whose parent is the Textbutton.