So I have a script like this:
while bulletFreeze = false then do filepath.bullet.anchored = false //Bullet is a model end while bulletFreeze = true then do filepath.bullet.anchored = true //Bullet is a model end
Why on earth is it not working? Each bullet spawns inside the bullet model but won't anchor with a script. I tried manually anchoring the model from studio and for some reason that works. What am I doing wrong?
Hey! Try this
while bulletFreeze == false then do filepath.bullet.anchored = false end while bulletFreeze == true then do filepath.bullet.anchored = true end
The reason yours didnt work is because you used. =. Whenever your using something like "if ababaa = false then" instead you would do "if ababaa == false then". Notice the extra equal sign.