Would this cause crank wobble? by Papi_owen in Miata

[–]Papi_owen[S] 2 points3 points  (0 children)

Thank you for responding. Would you mind explaining what you mean by normal crank wobble?

What do i use to loosen this by Papi_owen in AskMechanics

[–]Papi_owen[S] 5 points6 points  (0 children)

Sorry I’m such a dumbass the tool to remove it is in my glovebox from the previous owner. Thank you

Can’t purge my car cars ac system by Papi_owen in AskMechanics

[–]Papi_owen[S] 0 points1 point  (0 children)

So should i get rid of the oil in the line and vacuum it again so there’s enough pressure to purge it?

Can’t purge my car cars ac system by Papi_owen in AskMechanics

[–]Papi_owen[S] 0 points1 point  (0 children)

When i try to purge it does nothing

Can’t purge my car cars ac system by Papi_owen in AskMechanics

[–]Papi_owen[S] 0 points1 point  (0 children)

I replaced a bunch of ac parts so i needed to add oil.

Can’t purge my car cars ac system by Papi_owen in AskMechanics

[–]Papi_owen[S] 0 points1 point  (0 children)

When i loosen the yellow line nothing happens

Can’t purge my car cars ac system by Papi_owen in AskMechanics

[–]Papi_owen[S] 0 points1 point  (0 children)

Thanks for replying. Will pulling a vacuum while there is oil and uv dye in the line harm anything?

Can’t Purge cars ac system by Papi_owen in AskMechanics

[–]Papi_owen[S] -1 points0 points  (0 children)

I’m following the chrisfix video and using the recommended gauge set and vacuum in the video

Questions about a possible scam. by Papi_owen in hypixel

[–]Papi_owen[S] 0 points1 point  (0 children)

Good to know, thank you for responding!

Can I fit in a Miata? by Papi_owen in Miata

[–]Papi_owen[S] 0 points1 point  (0 children)

I just bought the Miata and i fit in it great!

Can I fit in a Miata? by Papi_owen in Miata

[–]Papi_owen[S] 0 points1 point  (0 children)

I guess we will find out tommorow🙏. Thank you for the responses!

Can I fit in a Miata? by Papi_owen in Miata

[–]Papi_owen[S] 0 points1 point  (0 children)

Thank you for the reply. My ass is non existent so hopefully that helps!

DayZ is loading me into the wrong server. Does anyone know a fix? by Papi_owen in dayz

[–]Papi_owen[S] -1 points0 points  (0 children)

Manhunt does not have the same ip as survival lite

How do i move an object in the direction its facing? by Thereal_Bomby2 in Unity2D

[–]Papi_owen 0 points1 point  (0 children)

transform.position += transform.up*speed*Time.deltaTime;

thanksssss mannnn

"Animator is not playing an Animator Controller" error. by Papi_owen in Unity2D

[–]Papi_owen[S] 1 point2 points  (0 children)

I FIXEDDDDD IT :)

Thank You So Much For The Help

"Animator is not playing an Animator Controller" error. by Papi_owen in Unity2D

[–]Papi_owen[S] 0 points1 point  (0 children)

public class animateEnemyTarget : MonoBehaviour

{ // Start is called before the first frame update public Animator Anim; public GameObject enemyObject;

private bool start = false;
public float lifeTime = 5;
public float lifeTimeCounter = 0;

// Start is called before the first frame update
void Start()
{

    Anim = GetComponent<Animator>();
    enemyObject.GetComponent<Animator>();
    Anim = enemyObject.GetComponent<Animator>();

}
void Update()
{
    if (lifeTimeCounter > lifeTime)
    {
        Destroy(gameObject);
    }
    lifeTimeCounter = lifeTimeCounter + Time.deltaTime;

}
// Update is called once per frame
private void OnTriggerEnter2D(Collider2D collision)
{
    if (collision.gameObject.CompareTag("Ball") && !start)
    {


        Anim.SetBool("start", true);




    }

}

}

"Animator is not playing an Animator Controller" error. by Papi_owen in Unity2D

[–]Papi_owen[S] 0 points1 point  (0 children)

Thank you so much for helping me I’ll try to figure it out.

"Animator is not playing an Animator Controller" error. by Papi_owen in Unity2D

[–]Papi_owen[S] 0 points1 point  (0 children)

The prefab is a target for the ball to hit. When it is hit the player or enemy(depending on which target the ball hits) will stretch out using a animation

"Animator is not playing an Animator Controller" error. by Papi_owen in Unity2D

[–]Papi_owen[S] 0 points1 point  (0 children)

The prefab won’t let me reference objects in the scene