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

Can someone help me?

Asked by 10 years ago

Please make your question title relevant to your question content. It should be a one-sentence summary in question form.

Ok, so I made a skill in a local script and it works but I need it to do damage, I tried putting in something like this for it to do damage but it didnt work. So I was wondering if someone could help me. I would really appreciate it, and btw I put the skill script also just in case you need it.

 humanoid:TakeDamage(5)
Player = game.Players.LocalPlayer
Char = Player.Character
Torso = Char.Torso
Mouse = Player:GetMouse()

function Move(key)
    key = key:lower()
    if key == "z" then
        print ("z was pressed")
        game.Players.LocalPlayer.Character.Torso.Anchored = true
        for i = 1, 100, 3 do        
            Move = Instance.new("Part")
            Move.Parent = Workspace
            Move.Size = Vector3.new(math.random(4,6), math.random(4,6), math.random(4,6))
            Move.Anchored = true
            Move.TopSurface = 0
            Move.BottomSurface = 0
            Move.BrickColor = BrickColor.new("Brown")
            game.Players.LocalPlayer.Character.Torso.Anchored = false
            y = Instance.new("BodyVelocity")
            y.maxForce = Vector3.new(math.huge, math.huge, math.huge)
            y.velocity = Player.Character.Torso.CFrame.lookVector*80
            Move.Parent = Workspace
            y.Parent = Move
            Move.CFrame = Player.Character.Torso.CFrame*CFrame.new (0, 0, -12)*CFrame.new (0,0,-i)CFrame.Angles(math.random(), math.random(), math.random())
            wait()          
        end
    end
end
Mouse.KeyDown:connect(Move)
0
I just did slenderfoo 0 — 10y

1 answer

Log in to vote
0
Answered by 10 years ago
local player = game.Players.LocalPlayer
local mouse = player:GetMouse()

Above would explain why it would not work in server, but if it does not work in studio reply the error codes.

Ad

Answer this question