Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Help print hello world?

Asked by
Hogsan 2
6 years ago

My code isn’t working (I’m a beginner) how do I fix it?

local message = “ hello world”
print(“message”)
0
Simple: Remove the quotes around message. :) TheeDeathCaster 2368 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago

If you want to literally print "message", then keep the code.

Otherwise, you need to remove the quotations around message.

Should look like this:

local message =  " hello world"
print(message)
Ad

Answer this question