Advertisement
StoryProductions

Print Statements [Roblox]

Sep 13th, 2020
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. print("Hello World!")
  2.  
  3. print("Hello", "World!")
  4.  
  5. print("Hello".." World!")
  6.  
  7. print("Hello World!")
  8.  
  9. local s = 'Hello '..'World'
  10. print(s)
  11.  
  12. print('Hello'..'World')
  13.  
  14. -- For Basic Script Learning!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement