Can someone help and kind of explain the aspects in a Fishing System. Like how do I make the rod and when you click it projects the rope. I am not able to understand the rope of the fishing rod.
1 Like
Since you didn’t provide a script, I can really only guide you somewhat by providing information.
Here’s the logic your scripts are gonna want to follow:
- Player clicks mouse to project the rod. - UIS
- You’d have to get the location of where they clicked as a 3D world point. - WorldToScreenPoint
- You’d have to have them fire a remote event so the tweening of the rod/rope can be seen by all players. - Remote Events
- You’d have to use tweenservice to make the rod/rope look seamlessly casted. - TweenService
There’s more logic to it, but this should get you started.
3 Likes