I'm making a server message script, here is the code:
1 | local label = require(game.StarterGui.SM.Frame.message:WaitForChild( 'uhoh' )) |
2 | local button = script.Parent |
3 | local box = script.Parent.Parent:WaitForChild( 'message' ) |
4 | button.MouseButton 1 Click:Connect( function () |
5 | label() |
6 | wait( 5 ) |
7 | end ) |
I get the error "Attempted to call require with invalid argument(s)." How do I fix it?