Help with CLIPPING and other gltiches

id: 753224

category: Help with Scripts

posts: 5

First of all there are a few problems
1. I don't need there to be wall jumping yet
2. It clips
3. 1 might fix 2
4. I need bounce pad to work
5.Just explain it to me, don't give me a fully made project
Here is link https://scratch.mit.edu/projects/984846928/
I already know how to fix your wall jumping issue; the problem is that your script is allowing the player to jump on the platform when touching it in general. I would suggest adding 4 different hitboxes (up, down, left, right) so then you can detect if the (right and left) hitboxes are touching the level, thus removing wall jumping completely. If you would like to include wall jumping soon then simply create a variable such as:
(Wall Jumping: Allowed?)
And set that variable to true when you want to enable wall jumping, and vice versa.



Hope this helps!

Ghxstify2009 wrote:

I already know how to fix your wall jumping issue; the problem is that your script is allowing the player to jump on the platform when touching it in general. I would suggest adding 4 different hitboxes (up, down, left, right) so then you can detect if the (right and left) hitboxes are touching the level, thus removing wall jumping completely. If you would like to include wall jumping soon then simply create a variable such as:
(Wall Jumping: Allowed?)
And set that variable to true when you want to enable wall jumping, and vice versa.



Hope this helps!
ohhh I might get working on the soon
Any other issues you need solving?