print("Hello World")
I don't know if this is a joke question or what but ok lol.
print("Hello World") -- Delete that or change the "Hello World" for something else.
Here is something cool and simple you can do with prints:
01 | -- Insert a screengui in startergui. Add a textbutton and add a localscript inside the text button. |
02 | -- Put the code below "including the texts if you want" inside the localscript. |
03 | -- Click play, open your output and click the button. |
04 |
05 | script.Parent.MouseButton 1 Click:Connect( function () -- Button is clicked |
06 | if game.Workspace.Part.Material = = Enum.Material.Plastic then -- Checking if parts material is plastic or not |
07 | print ( "The parts material is plastic" ) -- This is printed if the material is Plastic |
08 | else |
09 | print ( "The parts material is NOT plastic" ) -- This is printed if the material is NOT plastic |
10 | end |
11 | end ) |
Hope this helped a bit if you're this new, and if you're trolling then nice troll ig lol.