#No error on AudioSource.Play()

1 messages · Page 1 of 1 (latest)

neon arch
#

If we create new AudioSource:

a = AudioSource("button_1")
```then if we try to call this:
```lua
a.Play()
```nothing happens, because it must be called like that:
```lua
a:Play() -- using ':' instead of '.'
```I think there must be an message that AS.Play() must be called using **:**.