Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

What is the difference between "end" and "end)"?

Asked by 5 years ago

What is the difference between "end" and "end)"

1 answer

Log in to vote
5
Answered by 5 years ago

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.

1script.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
5end) -- End and then a closing parenthesis to close the argument list of Connect
Ad

Answer this question