the script local door = game.Workspace.Part local tool = game.StarterPack.Tool.Handle local enabled = true door.Touched:Connect(function(hit) if enabled then if hit.Parent.Name == "Handle" then door.Transparency = 1 end end
end)
I'm not getting any errors tho