of     1   

PhoenixSigns
#182545900Thursday, January 28, 2016 5:13 AM GMT

Why does the following script fling me? I'm trying to glue a cape to my torso. game.Players.PlayerAdded:connect(function(P) P.CharacterAdded:connect(function(X) wait(1) local cape = Instance.new("Part",game.Workspace) cape.CFrame = X.Torso.CFrame cape.Size = Vector3.new(1,1,1) cape.Anchored = false cape.CanCollide = false X.Torso.Anchored = false local Joint = Instance.new("Weld",X.Torso) Joint.Name = "Weld" Joint.Part0 = X.Torso Joint.Part1 = cape Joint.C0 = CFrame.new(0,0,-1) end) end)
PhoenixSigns
#182545919Thursday, January 28, 2016 5:14 AM GMT

It should be Instance.new("Weld",X.Torso) btw.
PhoenixSigns
#182547230Thursday, January 28, 2016 5:53 AM GMT

I meant Instance.new("Glue"
sharpchain1
#182548302Thursday, January 28, 2016 6:37 AM GMT

I have no idea glue is a weird and buggy instance that is not well documented I tried to do the same thing you are trying to do before and the parts flew all over the place, the only thing I have suceeded in doing with glue is making a rag doll

    of     1