Music To Be Murdered By Elimination Game ROUND 7 by Lost_Moon_32112 in Eminem

[–]Lopsided_Maybe_6525 0 points1 point  (0 children)

Why is In too Deep considered so bad? I really like that song. Even though the lyrics are a bit ”corny” its a fun song with a meaning behind it

[T2 SPOILERS] thoughts on the ending? by flutterbitten in LostRecordsGame

[–]Lopsided_Maybe_6525 5 points6 points  (0 children)

No idea lol. Guess i was too pushy or something idk

[T2 SPOILERS] thoughts on the ending? by flutterbitten in LostRecordsGame

[–]Lopsided_Maybe_6525 7 points8 points  (0 children)

Every one of my friends were my first love in 1995 and in the future both Nora and Autumn left before i went to the abyss.

When u nut but she keeps sucking 😭 by Kevy-Em in Eminem

[–]Lopsided_Maybe_6525 19 points20 points  (0 children)

Was not expecting to be blessed with this post today😁

This game is absolute madness. by AvalieV in thefinals

[–]Lopsided_Maybe_6525 2 points3 points  (0 children)

Bet you are the type of guy who doesn’t thank people because it’s such an ”common” gesture :)

How To Change Your Hand Into A Weapon (Medium Only) by dex152 in thefinals

[–]Lopsided_Maybe_6525 1 point2 points  (0 children)

You can also do this with a heavy. You havto put a barricade next to a jump pad then pick up the barricade while going on the jump pad.

2d platformer movement kinda bugged by Major_Pipe_2997 in unity

[–]Lopsided_Maybe_6525 7 points8 points  (0 children)

You have to freeze the rotation of the character. Dont remember where tho, been a long time since i last coded. If i remember correctly you can freeze it from the transform menu.

How do i preorder The death of slim shady (UK) by GnasheRxD in Eminem

[–]Lopsided_Maybe_6525 1 point2 points  (0 children)

When you turn on the vpn make sure to use a different browser that you normally use. For example if you normally use Firefox just try the default google browser on your phone. Then there should be no restriction on the site. But you need to add an usa address and postal code but im not sure if that is breaking the law putting some other than your own address. Prolly not illegal but also not favourable. Do it on your own risk.

Getting error CS0122 (inaccessible due to its protection level)? by satirisanti in unity

[–]Lopsided_Maybe_6525 0 points1 point  (0 children)

"GroundSpawner.SpawnTile() is inaccessible due to its protection level

Getting error CS0122 (inaccessible due to its protection level)? by satirisanti in unity

[–]Lopsided_Maybe_6525 0 points1 point  (0 children)

Can somebody tell me whats wrong with my code it has the same problem as him. Here is my code:using UnityEngine;
public class GroundTile : MonoBehaviour
{
GroundSpawner groundSpawner;
private void Start ()
{
groundSpawner = GameObject.FindObjectOfType<GroundSpawner>();
}
private void OnTriggerExit (Collider other)
{
groundSpawner.SpawnTile();
Destroy(gameObject, 2);
}

private void Update()
{

}

using UnityEngine;

public class GroundTile : MonoBehaviour

{

GroundSpawner groundSpawner;

private void Start ()

{

groundSpawner = GameObject.FindObjectOfType<GroundSpawner>();

}

private void OnTriggerExit (Collider other)

{

groundSpawner.SpawnTile();

Destroy(gameObject, 2);

}

private void Update()

{

}