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

How to properly CFrame A union parenting other unions?

Asked by 7 years ago

So I am trying to CFrame a tool's handle(a union) that is in the player's StarterPack called parachute to an a union in Workspace called chute(a union containing 2 other unions). With that being said, I placed a Localscript inside the tool , which is listed below.

local player = game.Players.LocalPlayer
local chute = game.Workspace.chute
local chutenewpos = game.StarterPack.parachute.Handle

player.Backpack.parachute.Activated:connect(function()
    while true do wait()
    chute.CFrame = player.Character.parachute.Handle.CFrame

end
end)

The problem is it only CFrames a random portion of it to the the tool's handle. How do I fix this?

Thanks, sincerely Fravls

2
You should weld it the the handle. User#5423 17 — 7y

Answer this question