local h = Instance.new("Message") h.Parent = Workspace h.Text = "plz make sure to push the button and stand on the red brick! " wait(5) h:Remove()
script works but when i try to put it on top of each other...
local h = Instance.new("Message") h.Parent = Workspace h.Text = "plz remember to push the button and stand on top of the red brick! " wait(5) h:Remove()
...it doesnt work. so help?
thx
You can do this using newline characters, ex.
Instance.new("Message",workspace).Text="This is on one line\nThis is on another line"
or
Instance.new("Message",workspace).Text=[[This is on one line This is on another line]]
"\n" is translated into a newline character if you want to write it all out on one line, otherwise you need to use double brackets to create a multiline string.