RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"EndTouch is not a valid member of Part "Workspace.Model.Model.hitbox""
-- EndTouch is not a valid member of Part, it is an event that is triggered when a part stops touching another part. You can use the Touched event instead. local part = script.Parent local function onPartTouched(otherPart) print(otherPart.Name .. " touched " .. part.Name) end part.Touched:Connect(onPartTouched)