Now I think about it. Bomb throwing wouldn't be that hard. It'd be a variation of the code that they use in the ROBLOX paintball gun.
There if a fire(v) function that creates a paintball and shoots it in the direction of the mouse. If we break the script down, we see that this function is called towards the bottom, where it is passed the argument 'lookAt'.
The 'lookAt' variable is (targetPos - character.Head.Position).unit, which means in simple terms, the 'direction' that the bullet must travel.
Then in the fire script, the bullet gets its velocity set to lookAt * 100.
You'd want to make a variation of this I guess, or try make your own velocity values and stuff.
You're doing it wrong |