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:
-- Insert a screengui in startergui. Add a textbutton and add a localscript inside the text button. -- Put the code below "including the texts if you want" inside the localscript. -- Click play, open your output and click the button. script.Parent.MouseButton1Click:Connect(function() -- Button is clicked if game.Workspace.Part.Material == Enum.Material.Plastic then -- Checking if parts material is plastic or not print("The parts material is plastic") -- This is printed if the material is Plastic else print("The parts material is NOT plastic") -- This is printed if the material is NOT plastic end end)
Hope this helped a bit if you're this new, and if you're trolling then nice troll ig lol.