When touch part then activate my script. Need Help

Just connect your code to a Touched event. Example:

local part = workspace.Part -- the part you want to be touched

part.Touched:Connect(function(hit)

    -- code here

end)
1 Like