I wrote a algorithm. Its normally working. Just i can not get right angle of x when y or z changes
float x = Mathf.Atan2(transform.forward.y, transform.forward.z) * Mathf.Rad2Deg
This code is giving the right angle when my object angles are (x,0,0). But when the y or z change(x,35,46), this code is giving false angle. By the way i want to get 0-360 angle. If i get this angle, code will work(i tested it). So i am trying to get the rotation of x axis 0-360. But the atan2 is not giving the right value. Maybe i can use Vector3.Angle but it doesn't work that i want. I don't ask too many questions in stackoverflow so if you didn't understand please tell me which part didn't you get it?
If I understand you correct you want the objects rotation around the X axis (global or local).
You could probably simply use
Transform.eulerAngles
something likeOr if you want the local rotation (relative to the parent)
Transform.localEulerAngles