# Script error. (: line 0)

**URL:** https://discourse.processing.org/t/script-error-line-0/6294
**Category:** Coding Questions
**Created:** [December 4, 2018, 7:37pm UTC](https://discourse.processing.org/t/script-error-line-0/6294 "2018-12-04T19:37:55Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![billythemusical](https://avatars.discourse-cdn.com/v4/letter/b/51bf81/32.png) [@billythemusical](https://discourse.processing.org/u/billythemusical)
#### Post date: [December 4, 2018, 7:37pm UTC](https://discourse.processing.org/t/script-error-line-0/6294/1 "2018-12-04T19:37:55Z")

</div>

Hi - [this sketch](https://editor.p5js.org/billythemusical/sketches/Sk1L1EJy4) worked yesterday, and now I get:

`Script error. (: line 0)`

The sketch uses a web cam, FYI. I noticed Chrome has just updated today (Dec 4 2018) to “Version 71.0.3578.80 (Official Build) (64-bit)”. I am on Mac OSX 10.10.5 Yosemite. This is what the browser console says:

```auto
p5.dom.min.js:1 Uncaught TypeError: Failed to execute 'createObjectURL' on 'URL': No function was found that matched the signature provided.
    at VM65 p5.dom.min.js:1
(anonymous) @ p5.dom.min.js:1
[object%20MediaStream]:1 GET https://editor.p5js.org/billythemusical/sketches/Sk1L1EJy4/[object%20MediaStream] 404

```

Any idears? File under: “Final Project Due Tomorrow” 😑

Billy B

---

<div class="post-metadata">

### Author: ![Sarah](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/sarah/32/1675_2.png) [@Sarah](https://discourse.processing.org/u/Sarah)
#### Post date: [December 4, 2018, 10:32pm UTC](https://discourse.processing.org/t/script-error-line-0/6294/2 "2018-12-04T22:32:21Z")

</div>

It seems to work fine for me. Does it work if you test it now?

---

<div class="post-metadata">

### Author: ![billythemusical](https://avatars.discourse-cdn.com/v4/letter/b/51bf81/32.png) [@billythemusical](https://discourse.processing.org/u/billythemusical)
#### Post date: [December 5, 2018, 2:23am UTC](https://discourse.processing.org/t/script-error-line-0/6294/3 "2018-12-05T02:23:29Z")

</div>

Hey Sarah,  
Thanks for checking it out. I am still having the same issue and p5/Chrome console messages. I cannot seem to figure out the issue. Could it be something on my end?

---

<div class="post-metadata">

### Author: ![Sarah](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.processing.org/sarah/32/1675_2.png) [@Sarah](https://discourse.processing.org/u/Sarah)
#### Post date: [December 5, 2018, 7:32am UTC](https://discourse.processing.org/t/script-error-line-0/6294/5 "2018-12-05T07:32:16Z")

</div>

Try changing in _index.html_

```auto
<script src="//cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.22/p5.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.22/addons/p5.dom.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/tracking.js/1.1.2/tracking-min.js"></script>

```

to

```auto
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.22/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.22/addons/p5.dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tracking.js/1.1.2/tracking-min.js"></script>

```
