it's underlines end) I don't know whats wrong
1 | local CFrameTester = script.Parent |
2 |
3 | if script.Parent.Parent.Tester 1. Touched:Connect( function () |
4 |
5 | print ( "it worked!" ) |
6 |
7 | end ) |
Your mistake was really simple: do NEVER put an if statement if you are making a function. That being said, just remove the if statement and you will be good to go!
1 | local CFrameTester = script.Parent |
2 |
3 | script.Parent.Parent.Tester 1. Touched:Connect( function () |
4 |
5 | print ( "it worked!" ) |
6 |
7 | end ) |
This is very simple. So insert a part in the workspace and insert a script in the part and type this
Script
1 | local function onTouch(hit) |
2 | print ( "it worked!" ) |
3 | end |
4 |
5 | script.Parent.Touched:Connect(onTouch) |
Now when you touch it, it will print "It Worked"