Answered by
8 years ago Edited 8 years ago
First off, you would need to get the Player's Mouse
. You can call the Player's Mouse from a local script using
1 | local mouse = game.Players.LocalPlayer:GetMouse() |
2 | torso = workspace:FindFirstChild(game.Players.LocalPlayer.Name):FindFirstChild( "Torso" ) |
Next you would need a function that makes the torso face towards where the bullet is aimed. I would suggest using BodyGyro
. BodyGyro is an Instance that takes a CFrame value and points it's parent towards that CFrame value. (Only applies for parts)
2 | local gyro = Instance.new( "BodyGyro" , torso) |
3 | gyro.cframe = CFrame.new(torso.Position, pos.p) |
Next you will need to fire a projectile, which can be done using BodyVelocity
. Body Velocity is an Instance that takes a Vector3 value and sets that Vector3 value as its target velocity. So we would just need to feed it the mouse's Position, which will later be defined as pos
.
1 | local bullet = Instance.new( "Part" , workspace) |
2 | bullet.CanCollide = false |
3 | bullet.CFrame = torso.CFrame |
4 | local velocity = Instance.new( "BodyVelocity" , bullet) |
5 | velocity.Velocity = pos.p |
6 | velocity.MaxForce = Vector 3. new( math.huge , math.huge , math.huge ) |
7 | game:GetService( "Debris" ):AddItem(bullet, 3 ) |
Finally, you need to call your function. You need to call it every time you click, so you would use the event Button1Down.
1 | mouse.Button 1 Down:connect( function () |
Put all of this together and you get
01 | local mouse = game.Players.LocalPlayer:GetMouse() |
02 | torso = workspace:FindFirstChild(game.Players.LocalPlayer.Name):FindFirstChild( "Torso" ) |
05 | local gyro = Instance.new( "BodyGyro" , torso) |
06 | torso.BodyGyro.CFrame = CFrame.new(torso.Position, pos.p) |
07 | local bullet = Instance.new( "Part" , workspace) |
08 | bullet.CanCollide = false |
09 | bullet.CFrame = torso.CFrame |
10 | local velocity = Instance.new( "BodyVelocity" , bullet) |
11 | velocity.Velocity = pos.p |
12 | velocity.MaxForce = Vector 3. new( math.huge , math.huge , math.huge ) |
13 | game:GetService( "Debris" ):AddItem(bullet, 3 ) |
17 | mouse.Button 1 Down:connect( function () |
Hope this helped! --connor12260311