What's the differences..?

Hey everyone

Can someone please tell me the differences between

This.

if Value == true then

and This.

if (Value == true) then

Thanks. :slight_smile:

Both look the same as

if Value then

1 Like

Both are same , brackets are only used for special things like calculation ,

if (b.Position - c.Position) / a.Position < 1 then
--like this
end
1 Like