Is there a way to make the players torso's "CanCollide" property false? I'm trying to spawn something from the players torso, and it works, however everytime I do it, it always gets stuck in the players torso and causes the player to spaz out on the ground.
FAQ: Why don't I just turn the parts CanCollide off?: Because when I do, it false through the world (Anchored is also off on the part.)
All help is appreciated!
Don't spawn the object directly on the player's torso. Offset it with a Vector3 or a CFrame. I'm going to assume you are using CFrames to position this object because it's getting trapped inside the player. Here's what I would do:
1 | --Current code: |
2 | Part.CFrame = Player.Character.Torso.CFrame |
3 |
4 | --What I would do |
5 | Part.CFrame = Player.Character.Torso.CFrame * CFrame.new( 3 , 0 , 0 ) --It might not be on the X axis so fool around with this for a bit until it works |
6 |
7 | --Or you could do this as well |
8 | Part.CFrame = Player.Character.Torso.CFrame + Vector 3. new( 3 , 0 , 0 ) --It might not be on the X axis so fool around with this for a bit until it works |
Good luck on your future Scripting Adventures! ~lightpower26