1 | function _G.Message() |
2 | m = Instance.new( "Message" , game.Workspace) |
3 | m.Text = "Sup?" |
4 | wait( 5 ) |
5 | m:remove() |
6 | end |
That is the code I have written, I can't see why it won't work, this is what I have calling it
1 | _G.Message() |
Any ideas?