I am trying to figure out why roblox is not reading when the button is pressed, the script is a local script.
1 | closeButton = Parent |
2 |
3 | closeButton.MouseButton 1 Down:connect( function () |
4 | print "pressed" |
5 | end ) |
It does not print anything.
1 | function onClick() |
2 | print ( "Pressed" ) |
3 | end |
4 | script.Parent.MouseButton 1 Click:connect(onClick) |
You also wrote print"pressed" instead of print("pressed") <-Works either way