Press E and fire comes out (I need help please!)?
I want to have it to were You press "e" and the fire goes off of you left hand.
Main:
02 | Player = script.Parent.Parent |
03 | mouse = Player:GetMouse() |
04 | run = game:GetService( "RunService" ) |
05 | function onKeyDown(key) |
06 | if not enabled then return end |
10 | RightShoulder = Player.Character.Torso [ "Right Shoulder" ] |
11 | LeftShoulder = Player.Character.Torso [ "Left Shoulder" ] |
12 | Run = game:GetService( "RunService" ) |
15 | LeftShoulder.C 0 = LeftShoulder.C 0 *CFrame.Angles( 0 , 0 , - 0.16 ) |
16 | RightShoulder.C 0 = RightShoulder.C 0 *CFrame.Angles( 0 , 0 , 0.16 ) |
17 | RightShoulder.C 0 = RightShoulder.C 0 *CFrame.Angles( 0 , 0.1 , 0 ) |
18 | LeftShoulder.C 0 = LeftShoulder.C 0 *CFrame.Angles( 0 , - 0.1 , 0 ) |
19 | Run.Stepped:wait( 0.01 ) |
22 | LeftShoulder.C 0 = LeftShoulder.C 0 *CFrame.Angles( 0 , 0.1 , 0 ) |
23 | RightShoulder.C 0 = RightShoulder.C 0 *CFrame.Angles( 0 , - 0.1 , 0 ) |
24 | LeftShoulder.C 0 = LeftShoulder.C 0 *CFrame.Angles( 0 , 0 , 0.16 ) |
25 | RightShoulder.C 0 = RightShoulder.C 0 *CFrame.Angles( 0 , 0 , - 0.16 ) |
26 | Run.Stepped:wait( 0.005 ) |
30 | LeftShoulder.C 0 = LeftShoulder.C 0 *CFrame.Angles( 0 , 0 , - 0.16 ) |
31 | RightShoulder.C 0 = RightShoulder.C 0 *CFrame.Angles( 0 , 0 , 0.16 ) |
32 | RightShoulder.C 0 = RightShoulder.C 0 *CFrame.Angles( 0 , 0.1 , 0 ) |
33 | LeftShoulder.C 0 = LeftShoulder.C 0 *CFrame.Angles( 0 , - 0.1 , 0 ) |
34 | Run.Stepped:wait( 0.005 ) |
36 | game:GetService( "Chat" ):Chat(Player.Character.Head, "Heavy Ranged Attack" ) |
37 | x = Instance.new( "Part" ) |
38 | x.BrickColor = BrickColor.new( "White" ) |
39 | x.Size = Vector 3. new( 4 , 4 , 4 ) |
40 | x.TopSurface = "Smooth" |
41 | x.BottomSurface = "Smooth" |
46 | fd = script.HRD:clone() |
48 | y = Instance.new( "BodyVelocity" ) |
49 | y.maxForce = Vector 3. new( math.huge , math.huge , math.huge ) |
50 | y.velocity = Player.Character.Torso.CFrame.lookVector* 80 |
53 | f = Instance.new( "Fire" , x) |
56 | x.CFrame = Player.Character.Torso.CFrame*CFrame.new( 0 , 0 , - 12 ) |
58 | game.Debris:AddItem(x, 6 ) |
61 | LeftShoulder.C 0 = LeftShoulder.C 0 *CFrame.Angles( 0 , 0.1 , 0 ) |
62 | RightShoulder.C 0 = RightShoulder.C 0 *CFrame.Angles( 0 , - 0.1 , 0 ) |
63 | LeftShoulder.C 0 = LeftShoulder.C 0 *CFrame.Angles( 0 , 0 , 0.16 ) |
64 | RightShoulder.C 0 = RightShoulder.C 0 *CFrame.Angles( 0 , 0 , - 0.16 ) |
65 | Run.Stepped:wait( 0.01 ) |
72 | mouse.KeyDown:connect(onKeyDown) |
Local script in 2ed one:
01 | function onDamage(Part) |
02 | if Part.Parent:FindFirstChild( "Humanoid" ) ~ = nil and Part.Parent.Name ~ = "script.Parent.Name" then |
03 | script.Disabled = true |
04 | f = Instance.new( "Fire" , Part) |
07 | Part.Parent.Humanoid.Health = Part.Parent.Humanoid.Health - 3 |
10 | Part.Parent.Humanoid.Sit = true |
12 | script.Parent:remove() |
17 | script.Parent.Touched:connect(onDamage) |