my grappling is very slow and i was wondering if someone knew a fix?
Sounds like you wrote a bug… and that means… time to start debugging!
Remember, bugs can be in the setup as well as in code. It’s up to you to isolate a bug because until you isolate a bug, it won’t be possible to fix it.
By debugging you can find out exactly what your program is doing so you can fix it.
Use the above techniques to get the information you need in order to reason about what the problem is.
You can also use Debug.Log(...); statements to find out if any of your code is even running. Don’t assume it is.
Once you understand what the problem is, you may begin to reason about a solution to the problem.
Thanks i fixed it