Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Press E and fire comes out (I need help please!)?

Asked by 11 years ago

I want to have it to were You press "e" and the fire goes off of you left hand.

Main:

01local enabled = true
02Player = script.Parent.Parent
03mouse = Player:GetMouse()
04run = game:GetService("RunService")
05function onKeyDown(key)
06if not enabled then return end
07enabled = false
08    Key = key:lower()
09    if key == "e" then
10        RightShoulder = Player.Character.Torso["Right Shoulder"]
11        LeftShoulder = Player.Character.Torso["Left Shoulder"]
12        Run = game:GetService("RunService")
13        for i = 1, 2 do
14            for i = 1, 12 do
15                LeftShoulder.C0 = LeftShoulder.C0 *CFrame.Angles(0, 0, -0.16)
View all 72 lines...

Local script in 2ed one:

01function 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)
05        for i = 1,25 do
06            f.Size = f.Size +0.25
07            Part.Parent.Humanoid.Health = Part.Parent.Humanoid.Health -3
08            wait(0.05)
09        end
10        Part.Parent.Humanoid.Sit = true
11        f:remove()
12        script.Parent:remove()
13    end
14    wait(0.025)
15end
16 
17script.Parent.Touched:connect(onDamage)

1 answer

Log in to vote
0
Answered by 11 years ago

Can you test it in Solo Mode and then give us the output to see what's wrong?

Ad

Answer this question