Log In  


I need to print some text but it say that Syntax error and Print(to much food,64,64,7) ')' expected near much
Please help me
Code:

print(to much food,64,64,7)
end



In your code, to much food is not valid!

Things must be strings, numbers, variables, functions, etc. To hold text, you need a string, which is noted with quotes around.

print("too much food",64,64,7)

local text="not enough food"
print(text,64,64,7)

thx I'll try it



[Please log in to post a comment]