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

Equal sign is red and I don't know what to do?

Asked by
higzl 17
7 years ago
if script.Parent.Parent.Door.CanCollide = true then

It shows that = is red, I don't get it and I need help with it.

1
Please accept one of the answers below or put [ANSWERED] so we know that this question is answered. With out doing so we would come here and try to answer a question that is already answered. BlackOrange3343 2676 — 7y
0
The reason is because its an "if" statement. writing one equal sign means you are trying to change the value. In an if statement u must use two equal signs like so: if script.Parent.Parent.Door.CanCollide == true then RequiredModule 38 — 7y

1 answer

Log in to vote
4
Answered by 7 years ago

When you are making an if statement and want an equal condition, then you would have to use ==. For example:

if script.Parent.Parent.Door.CanCollide == true then
0
Thank you higzl 17 — 7y
0
Please press accept answered. Thanks! marioblast1244 113 — 7y
0
^^^^ This answer is the better answer ^^^^ MrLonely1221 701 — 7y
0
Thanks MrLonely1221! marioblast1244 113 — 7y
Ad

Answer this question