What is the difference between "end" and "end)"
Nothing.
end is still a statement to declare the end of some sort of structure. Like a function, if statement, loop, etc...
The ending parenthesis is simply there to close an argument list.
1 | script.Parent.Touched:Connect( function (p) |
2 | if p.Name = = "Dog" then |
3 | print ( "We touched a dog" ) |
4 | end -- End to close the if statement |
5 | end ) -- End and then a closing parenthesis to close the argument list of Connect |