Why does the touch function not work?
1 | function onTouched() |
2 | --Code |
3 | end |
4 |
5 | script.Parent.Touched:connect(onTouch) |
The touch function does not work because on Line 5 you are suppose put in brackets "onTouched".
1 | function onTouched() |
2 | --Code |
3 | end |
4 |
5 | script.Parent.Touched:connect(onTouched) -- Here |
Try and see if it works.