Hey everyone
Can someone please tell me the differences between
This.
if Value == true then
and This.
if (Value == true) then
Thanks.
Hey everyone
Can someone please tell me the differences between
This.
if Value == true then
and This.
if (Value == true) then
Thanks.
Both look the same as
if Value then
Both are same , brackets are only used for special things like calculation ,
if (b.Position - c.Position) / a.Position < 1 then
--like this
end