I am just testing with part movement and am having some trouble getting all of my events in my script to work.
The if events and while true loops seem to block each other? If you can explain to me why this is happening and how to fix it it would be helpful, thank you.
The two if statements you have coded will run instantly. Instead, in your case, they should be placed within the required while loop.
Code will run from top to bottom, and will not re-run unless you use things like functions.
2 Likes
Thank you, this seems to have fixed it.