j_91
(j_91)
1
Im trying to make myself move to a specific spot with cframe.new which works flawlessly, but when im trying cframe.angles it just moves me to 0,0,0
here is the code
HumanoidRootPart.CFrame = CFrame.Angles(0, -90, 0)
I just figured out how cframe works for a bit, so i dont really know how to fix this myself
Baumz
(Baumz)
2
HumanoidRootPart.CFrame = HumanoidRootPart.CFrame * CFrame.Angles(0, math.rad(-90), 0)
When applying a new CFrame it will reset all demensions. So if you want it to sit still then just the position too!
system
(system)
Closed
4
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.