Trying to make my dash script do the animation when u dash (Roblox studio) - game-development

enter image description here
When I press the button to dash, I dash but no dash animation
I attached an animation to it but it just doesn’t do the animation.

Related

react native: how to place icon (or view) on image by tap

I want when I touch the image, at that position will show the icon at the touch position, and maybe when zooming, the icon can be enlarged accordingly. In short, I want the icon to stick at that position, but when the image is zoomed or moved, the icon also zooms or moves.
Also is there any way when we take a picture from the phone to get the exact size of it
i tried by position, but i wonder if there is any way that can be attached to it, i want it to always be in that position no matter what the picture is. Help me

I cant press correctly to a button (navigation + svg)

I use this code snippet:
enter link description here
The problem is, the button has no effect when I tap a little bit at the top it press only when I my finger is in the middle of the black line or under, I hope you understand me. So if I press the button sometimes it effects sometimes not, if I tap every time at the bottom on the button then it works, but not at the top. How can I make correctly pressable that it works ? its only press when I am at the between on the svg (navigation height)

React native floating button

I've created bottom navigation with a custom floating button inside. Button/Menu is opening, but elements inside (with a red circle) are not touchable because the gray container is above them probably. This small fragment of the blue add button which is overlapping the gray container is also not touchable.
I was trying to add zIndex/elevation for menu buttons - but it doesn't help.
How to make a whole floating menu above on all containers.
All elements have a position set to absolute.
Code Reference
https://gist.github.com/gtarnowski/3b36deaeed71abee3d5e84567aa37eea
Image Reference
https://i.stack.imgur.com/fGkw0.jpg
I've tested the code you sent me and it seems to be working correctly. It's emitting the logs.
Below is the Snack link I created:
https://snack.expo.dev/#lineuxyz/greg-error

White background under the keyboard

How to remove the white background that is under the keyboard?
In the screenshot below, I was able to capture the moment when a white background is visible.
Shown when the keyboard begins to appear.
In the end you can't see it but it is visible during the loading of the keyboard and it looks bad

Split keyboard like iMessage app on iPad

I am trying to have the same style of split keyboard like the iMessage app on the iPad. If you split the keyboard, it seems like the two keyboards are still connected to each other. This is different when I split the keyboard in YouTube app.
Also, the input field is right above the split keyboard on the right. In addition, if you drag the split keyboard up and down, the input field also moves along with the split keyboard. Is Apple using it's own custom keyboard?
Thanks.
Look at UITextView Class Reference, specifically the inputAccessoryView.
When you set an input accessory view to your text view (or UITextField) it will be attached to the keyboard, just as you described
Other example of it is safari's search field.
The trick in iMessages in the iPad is that the input accessory view is aligned to the right which is not a problem, you can have a big transparent inputAccessoryView containing the right aligned and visible view :)