# Particle Effect Error through Cloud Editor

**URL:** https://forum.8thwall.com/t/particle-effect-error-through-cloud-editor/4726
**Category:** Technical Support
**Tags:** cloud-editor
**Created:** [February 6, 2025, 6:58pm UTC](https://forum.8thwall.com/t/particle-effect-error-through-cloud-editor/4726 "2025-02-06T18:58:57Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![Isaac\_Del\_Castillo](https://avatars.discourse-cdn.com/v4/letter/i/5e9695/32.png) [@Isaac\_Del\_Castillo](https://forum.8thwall.com/u/Isaac_Del_Castillo)
#### Post date: [February 6, 2025, 6:58pm UTC](https://forum.8thwall.com/t/particle-effect-error-through-cloud-editor/4726/1 "2025-02-06T18:58:57Z")

</div>

Hey 8thwall team, I’m trying to apply particles to my scene and I keep receiving the following error:

> Unhandled promise rejection: TypeError: Cannot read properties of undefined (reading ‘generateUUID’)  
> at new o.Group aframe-particle-system-component-1.1.4.min.js  
> at n.initParticleSystem aframe-particle-system-component-1.1.4.min.js  
> at n.update aframe-particle-system-component-1.1.4.min.js  
> at n.initComponent 8frame-1.4.1.min.js  
> at n.updateProperties 8frame-1.4.1.min.js  
> at e.exports.Component 8frame-1.4.1.min.js  
> at new n 8frame-1.4.1.min.js  
> at d.initComponent 8frame-1.4.1.min.js  
> at d.updateComponent 8frame-1.4.1.min.js  
> at d.updateComponents 8frame-1.4.1.min.js

> TypeError: Cannot read properties of undefined (reading ‘generateUUID’)

This is the script tag that i am using:  
`<script crossorigin="anonymous" src="//cdn.8thwall.com/web/aframe/aframe-particle-system-component-1.1.4.min.js"></script> `  
along with my particle entity  
` <a-entity id="particles" particle-system="preset: snow"></a-entity>`

I have tried using the **[aframe-particle-system-component](https://github.com/IdeaSpaceVR/aframe-particle-system-component)** directly instead of the 8thwall cdn, and it still gave me the same error.

Thank you guys in advanced for the help.

---

<div class="post-metadata">

### Author: ![Evan](https://sea1.discourse-cdn.com/flex019/user_avatar/forum.8thwall.com/evan/32/431_2.png) [@Evan](https://forum.8thwall.com/u/Evan)
#### Post date: [February 10, 2025, 10:43pm UTC](https://forum.8thwall.com/t/particle-effect-error-through-cloud-editor/4726/2 "2025-02-10T22:43:59Z")

</div>

What version of A-Frame are you using? I believe A-Frame 1.4.1 works well with this version of the particle system.

---

<div class="post-metadata">

### Author: ![Isaac\_Del\_Castillo](https://avatars.discourse-cdn.com/v4/letter/i/5e9695/32.png) [@Isaac\_Del\_Castillo](https://forum.8thwall.com/u/Isaac_Del_Castillo)
#### Post date: [February 11, 2025, 3:09pm UTC](https://forum.8thwall.com/t/particle-effect-error-through-cloud-editor/4726/4 "2025-02-11T15:09:55Z")

</div>

Hey Evan,

I am using A-Frame 1.4.1

```auto
<meta name="8thwall:renderer" content="aframe:1.4.1" />
<meta name="8thwall:package" content="@8thwall.xrextras" />
<meta name="8thwall:package" content="@8thwall.landing-page" />

<script
  src="https://streaming.evercoast.com/api/2.0.6/aframe/lib/evercoast-aframe.js"
  crossorigin="anonymous"></script>

<script
  src="https://streaming.evercoast.com/api/2.0.6/aframe/lib/evercoast-aframe-extras.js"
  crossorigin="anonymous"></script>

<script
  crossorigin="anonymous"
  src="//cdn.8thwall.com/web/aframe/aframe-particle-system-component-1.1.4.min.js"></script>

```

Here is my body.html just in case:

```auto
<a-scene
  landing-page
  xrextras-runtime-error
  xrextras-gesture-detector
  xrextras-loading
  renderer="colorManagement: true"
  gltf-model="dracoDecoderPath: https://cdn.8thwall.com/web/aframe/draco-decoder/"
  xrweb="allowedDevices: any">
  <a-assets>
    <a-asset-item id="chair" src="assets/chair.glb"></a-asset-item>
  </a-assets>

  <a-camera
    id="camera"
    position="0 2 3"
    cursor="rayOrigin: mouse"
    raycaster="objects: .cantap"
    cursor="fuse: false; rayOrigin: mouse;">
  </a-camera>

  <a-entity
    light="
      type: directional;
      intensity: 0.8;
      castShadow: true;
      shadowMapHeight:2048;
      shadowMapWidth:2048;
      shadowCameraTop: 10;
      target: #model;
      shadowRadius: 12"
    xrextras-attach="target: model; offset: 1 15 3;"
    shadow>
  </a-entity>

  <a-light type="ambient" intensity="0.7"></a-light>

  <a-entity
    id="parent"
    class="cantap"
    xrextras-one-finger-rotate
    xrextras-pinch-scale
    scale="1 1 1">
    <a-entity id="model" gltf-model="#chair" position="0 0 0" scale="2 2 2" shadow="receive: true">
      <a-entity
        id="asset"
        evercoast-asset="src: https://streaming.evercoast.com/FIU/SamMoore.SamMoore.ec.take.003/3031/SamMoore.SamMoore.ec.take.003.ecm; loop: true;"
        evercoast-asset-controls="float: right"
        position="0 -0.65 -0.1"
        rotation="0 180 0"
        scale="1 1 1">
      </a-entity>
      <a-entity id="particles" particle-system="preset: snow"></a-entity>
    </a-entity>
  </a-entity>

  <a-plane
    id="ground"
    rotation="-90 0 0"
    width="1000"
    height="1000"
    material="shader: shadow"
    shadow>
  </a-plane>
</a-scene>

```

---

<div class="post-metadata">

### Author: ![Evan](https://sea1.discourse-cdn.com/flex019/user_avatar/forum.8thwall.com/evan/32/431_2.png) [@Evan](https://forum.8thwall.com/u/Evan)
#### Post date: [February 11, 2025, 9:17pm UTC](https://forum.8thwall.com/t/particle-effect-error-through-cloud-editor/4726/5 "2025-02-11T21:17:14Z")

</div>

Try this script instead:

```auto
<script
  crossorigin="anonymous"
  src="https://cdn.jsdelivr.net/gh/c-frame/aframe-particle-system-component@1.1.4/dist/aframe-particle-system-component.min.js"></script>

```

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/flex019/uploads/x8thwall/original/2X/9/9212a857458f1b03a6accb129e0f8cbea408e3e5.png) [@system](https://forum.8thwall.com/u/system)
#### Post date: [February 15, 2025, 9:17pm UTC](https://forum.8thwall.com/t/particle-effect-error-through-cloud-editor/4726/6 "2025-02-15T21:17:51Z")

</div>

This topic was automatically closed 4 days after the last reply. New replies are no longer allowed.
