What's the difference when using "do"?
First code:
local words = "i failed in math class" print(words)
Second code:
local words = "i failed in math class" do print(words) end
If it's useful, then how do I make it useful?
I suggest the first code shown. That saves time leaving more for actual development. Now if the code was
local words = game.Workspace.String.Value do print(words) end
then I suggest the second method.
If this helped don't hesitate to mark it as an answer.