Why doo people put code in a comment? I don't understand it. When I was watching steadyon's region 3 tutorial he put the code for making the part in a comment
Like sometimes I see source code for something and I see code in a comment
1 | --[[ |
2 | local p = Instance.new("Part",game.Workspace) |
3 | --]] |
4 | game:GetService( "Debris" ):AddItem(p, 5 ) |
Making lines of code comments is used to disable a specific piece of code in order to:
This is known as commenting out code.