Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

This simple script isn't even printing when i touch the part?

Asked by 2 years ago
script.Parent.Touched:Connect(function()
    print("Part touched")
end)
0
Try this script.Parent.Touched:Connect(function(hit)) VIP_K3NZ0 4 — 2y

1 answer

Log in to vote
2
Answered by
DemGame 271 Moderation Voter
2 years ago

Is the script inside of a local script or a normal script?

.Touched() events don't work in local scripts last time I checked.

if your code is already in a normal script, make sure that your script is inside of the part you want to touch.

Ad

Answer this question