I'm using this,
[CODE]local plyangle = LocalPlayer():GetAngles()[/CODE]
How can I find the index values for this userdata? For example,
[CODE]print( plyangle.??? )[/CODE]
angle.p = Pitch component of angle
angle.y = Yaw component of angle
angle.r = Roll component of angle
print(tostring(plyangle.p)) //Prints Pitch component of angle
print(tostring(plyangle.y)) //Prints Yaw component of angle
print(tostring(plyangle.r)) //Prints Roll component of angle
[QUOTE=AnonTakesOver;44866010]angle.p = Pitch component of angle
angle.y = Yaw component of angle
angle.r = Roll component of angle[/QUOTE]
Thanks, I just figured it out.
Sorry, you need to Log In to post a reply to this thread.