How do you make A message say what you print?
print("hello") instance.new("message",game.workspace) Message.Text = ??
message.Text = "hello"
You can't, print(" ") is just a way scripters check for errors when in studio mode and looking at the output. Plus, your script wouldn't work anyways because of the Capitalization:
local m = Instance.new("Message", Workspace) m.Text = "Hello world!"
If you wanted to get more complicated:
local m = Instance.new("Message", Workspace) m.Text = "Hello world!" if m.Text == "Hello world!" then print("Hello player!") else m.Text == "Goodbye world!" print("Goodbye player")