This is for a school project, and I am currently trying to create a 3-key rhythm game, but I’m having issues with the clones and deleting them. All of my code is listed here: CoSpaces Edu :: CoSpace 7
Oh, one more thing, I need to be able to do charting so there is at least some difficulty to the game instead of just basic note hitting and whatnot.
Hi @LeshanaJr,
It would be helpful if you explained in detail how your game should work. You can do this by adding comments in the code, or by explaining here.
I can see you want it a bit like Beat Saber or similar, but it’s not clear to me from looking at your code, how you are expecting the application to behave.
Here’s a couple of tips:
-
When using Run parallel, you can add extra tasks to run by clicking on the wheel/cog.
-
In your if conditions, instead of “fire < true” (which equates to false < true, which => true) you can simply use the NOT logic operator, e.g. “NOT fire”:
Cheers,
Geoff @ TechLeap