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
Print (10 + 5) > Print (10 + 5) Print (10+5) > Print ( 10+5)
None of these seemed to work, can someone help me on this?
Lua is pretty sensitive. Use print(10+5)
, instead.
print(5+10)
Edit is your output window visible?
Your "Print" needs to be lowercase.
print (10+5)