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

how do i fix this? i tried to make a skill that can get reward [closed]

Asked by
vhelypogi -19
3 years ago
    script.Parent.OnServerEvent:Connect(function(plr)
    wait(0.3)
    local Slash = game.ReplicatedStorage.cutslash:Clone()
    Slash.Parent = workspace
    Slash.CanCollide = false
    Slash.Anchored = true
    Slash.CFrame = plr.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-5) * CFrame.fromEulerAnglesXYZ(0,110,0)
    Slash.Touched:Connect(function(hit, plr)
        if hit.Parent:FindFirstChild("Humanoid") and hit.Parent.Name ~= plr.Name then
            local Ball = game.ReplicatedStorage.redball:Clone()
            local tag = Instance.new('ObjectValue',hit.Parent.Humanoid)
            tag.Name = 'creator'
            tag.Value = [help]
            Ball.Parent = workspace
            Ball.CFrame = Slash.CFrame
            Ball.CanCollide = false
            Ball.Anchored = true
            Slash:Destroy()
            hit.Parent.Humanoid:TakeDamage(25)  
            for i = 1,18 do
                wait(.05)
                Ball.Size = Ball.Size + Vector3.new(0.3,0.3,0.3)
                Ball.Transparency = Ball.Transparency + 0.05
            end 
            wait(2)
            tag:Destroy()
            Ball:Destroy()  
        end
    end)
    Slash.Anchored = false
    local BV = Instance.new("BodyVelocity",Slash)
    BV.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
    BV.Velocity = plr.Character.HumanoidRootPart.CFrame.lookVector * 150
    wait(5)
    Slash:Destroy()
    wait(0.15)
end)
0
Are you trying to have tag.Value = the player using the item? Smaltin 46 — 3y

Closed as Non-Descriptive by raid6n and PrismaticFruits

This question has been closed because its title or content does not adequately describe the problem you are trying to solve.
Please ensure that your question pertains to your actual problem, rather than your attempted solution. That is, you were trying to solve problem X, and you thought solution Y would work, but instead of asking about X when you ran into trouble, you asked about Y.

Why was this question closed?

1 answer

Log in to vote
0
Answered by
Smaltin 46
3 years ago

I'm assuming you wish the "creator" tag to be the person holding the item damaging the other player.

tag.Value = plr

Ad