Collision System

I need help with making a collision system, my friend already made a custom block for it but it isn't working as intended. What I'm trying to do is find if a sprite collided with any sprite other than a certain sprite and then tell the sprite it collided with to do something, here is my project:

https://snap.berkeley.edu/snap/snap.html#present:Username=cinderblock38&ProjectName=tank%20game

I couldn't figure out what the issue was actually being caused by, so I remade the block as well as 3 other blocks.

collidingwith
Returns a list of sprites touching the caller, as long as they are also included in the input
touchingany
Checks if any of the sprites in the input are touching the caller
collidingexclude
Returns all sprites touching the caller, except those in the input
touchingexclude
Checks if the caller is touching any sprite, except for those in the input

Try using for each ((object)) in (colliding any except (object [Tank V]) (object [MIssle V]) $<:> :: sensing) { tell (object) to ({hide}$>) $:> }$loopArrow instead of tell (item (2 v) of <touching ANY sprite except <(list [Tank] $<> ) and (list [MIssle] $<> ) $<:> > :: sensing>) to ({hide} $>) $:>
and it should work.

(Note, you must use (object [myself V]) in the input slots for these blocks)

Also, quick suggestion for the tank movement
The way it works currently is bugged and overcomplicated. You're using 5 scripts for the controls, which only includes moving backward and forward, and looking at the mouse.
I made another script that should simplify the tank movement.


Or, if you want to improve it and have the tank direction separate from the turret

Thank you for the movement but also how is it bugged? Cause I edited it before you said that and added stuff so I am just wondering if there's a way I can fix it before it becomes a problem

When repeatedly pressing and holding either W or S, or alternating between W and S, the movement becomes jittery. If you hold W, then stop holding W, then hold W again, the tank stops and then jolts forward a bit.