I'm thinking of these 2 particular examples
Case 1. Local parts
local cam = workspace.CurrentCamera local part = Instance.new("Part", cam) part.Touched:connect(function() end)--Will this ever run?
Case 2. LocalScript inside a Tool
local tool = script.Parent tool.Handle.Touched:connect(function() end) -- will this run
Normally I'd test both of these, but I can't access Studio for like, a week or 2, but I want to continue coding. Any ideas?
Yes the local script will run, also if I answered your question but remember to state who hit do this
tool.Handle.Touched:connect(function(hit) -- Use hit.Parent , that will get the player mk.. end)
If I helped +1