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

Give Vest script not working for police group?

Asked by 5 years ago

Hello. I have a training center for a police group and a script that gives a vest does not work. Here is the script:

function onTouched(hit)
    if hit.Parent:findFirstChild("Humanoid") ~= nil and hit.Parent:findFirstChild("Chest") == nil then
        local g = script.Parent.Parent.Chest: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)

Anyone have any ideas?

0
Is this your script? User#19524 175 — 5y
0
findFirstChild is deprecated use FindFirstChild. className is also deprecated, use ClassName. connect is also deprecated, use Connect User#19524 175 — 5y
0
Okay, I'll try that. Thanks! Officer_Lost -2 — 5y
0
I tried that and that didn't work. Any other ideas? Officer_Lost -2 — 5y
View all comments (2 more)
0
Use the print function to narrow down the problem(That's pretty much its use). You can add the print function to else statements and etc. saSlol2436 716 — 5y
0
A ROBLOX update ruined it, A ROBLOX update fixed it. It's fixed guys, thanks for trying! Moderator: Please close this thread. Officer_Lost -2 — 5y

Answer this question