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

Morph Remover Script?

Asked by 10 years ago

I need a morph remover script, the morph giver script works like this.

function onTouched(hit)
    if hit.Parent:findFirstChild("Humanoid") ~= nil and hit.Parent:findFirstChild("Morph") == nil then
        local g = script.Parent.Parent.Morph:clone()
        g.Parent = hit.Parent
        local C = g:GetChildren()
        for i=1, #C do
            if C[i].className == "Part" then
                local W = Instance.new("Weld")
                W.Part0 = g.Middle
                W.Part1 = C[i]
                local CJ = CFrame.new(g.Middle.Position)
                local C0 = g.Middle.CFrame:inverse()*CJ
                local C1 = C[i].CFrame:inverse()*CJ
                W.C0 = C0
                W.C1 = C1
                W.Parent = g.Middle
            end
                local Y = Instance.new("Weld")
                Y.Part0 = hit.Parent.Torso
                Y.Part1 = g.Middle
                Y.C0 = CFrame.new(0, 0, 0)
                Y.Parent = Y.Part0
        end

        local h = g:GetChildren()
        for i = 1, # h do
            h[i].Anchored = false
            h[i].CanCollide = false
        end

    end
end

script.Parent.Touched:connect(onTouched)

I tried to make the remover script like this

function onTouched(hit)
    if hit.Parent:findFirstChild("Humanoid") ~= nil and hit.Parent:findFirstChild("Morph") == nil then
        local g = script.Parent.Parent.Gear:Destroy()
    end
end

script.Parent.Touched:connect(onTouched)

But it didn't work.

1 answer

Log in to vote
2
Answered by 10 years ago

I think you are trying to do something like the following:

script.Parent.Touched:connect(function(t)
    if t.Parent:FindFirstChild("Humanoid") ~= nil and t.Parent:FindFirstChild("Morph") ~= nil then
        t.Parent.Morph:Destroy()
        script.Parent.Parent.Gear:Destroy()
    end
end)
Ad

Answer this question