Hi all! This little line of code isn't working, and I'm not sure why. Thanks for the help!
1 | Puddle.CFrame = Torso.CFrame - CFrame.new( 0 , 3 , 0 ) |
You cannot add or subtract a CFrame by a CFrame. You could do what cheez55 said, or you could do this.
1 | Puddle.CFrame = Torso.CFrame - Vector 3. new( 0 , 3 , 0 ) |