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