Welding Model doesn't work for certain Rigs

  1. What do you want to achieve? I want this Model to weld to every type of arm.

  2. What is the issue? The Model only welds to Blocky R15 Rigs, Other types of R15 don’t work

-- // SERVICES \\ --

local ServerStorage = game:GetService("ServerStorage")
local Players = game:GetService("Players")

-- // VARIABLES \\ --

local wait, spawn, delay = task.wait, task.spawn, task.delay

local Assets = ServerStorage.Assets

-- // Functions \\ --

Players.PlayerAdded:Connect(function(Player)
    Player.CharacterAdded:Connect(function(Character)
        local LeftLowerArm = Character:WaitForChild("LeftLowerArm")
        local Omnitrix = Assets.OT:Clone()
        Omnitrix.Parent = LeftLowerArm
        Omnitrix.MainPart.LeftLowerArm.Part1 = LeftLowerArm
    end)
end)


image

2 Likes