Can someone explain to me what print does? Because I was watching a youtube tutorial and I don't understand what it does? Could you also provide a example?
It simply prints a message in the Output/ Developer Console; you can open the console by typing "/console" in chat or pressing F9 in game.
Print is is basically a function that lets you print something in the output bar but print can't be used as a function that makes you write in a textbox or what ever . you can also put an variable in print like:
s = "Hello World!" print(s)
this is for text change Script:
local TextBox = script.Parent.Parent.TextBox TextBox.text = "Hello"