Whenever I try to print something it doesn't work for me, for example I read the roblox wiki and tried to print some stuff like 5+10 however nothing shows up Here are some ways I tried to do it
1 | Print ( 10 + 5 ) |
2 | > Print ( 10 + 5 ) |
3 | Print ( 10 + 5 ) |
4 | > Print ( 10 + 5 ) |
None of these seemed to work, can someone help me on this?
Lua is pretty sensitive. Use print(10+5)
, instead.
1 | print ( 5 + 10 ) |
Edit is your output window visible?
Your "Print" needs to be lowercase.
1 | print ( 10 + 5 ) |