Hello, I'm new to scripting, could anyone help me with a touched function?
function touchies() --bunch of stuff you don't need to know about end script.Parent:Touch(touchies)
Line 4 is the problem, you put :Touch
You need to put, .Touched:connect
So here is the fixed script:
function touchies() --stuff end script.Parent.Touched:connect(touchies)
And if you didn't know, there is an alternative way.
Put line 4 into line 1 and change end
to end)
Like this:
script.Parent.Touched:connect(function() --stuff end)