01 | local IDsOperating = { 0 } |
02 |
03 | local Range = 25 |
04 |
05 |
06 | script.Parent.Equipped:connect( function (mouse) |
07 | mouse.Button 1 Up:connect( function () |
08 | local Ray = Ray.new(script.Parent.Handle.Position, (CFrame.new(script.Parent.Handle.Position, mouse.hit.p).lookVector * Range)) |
09 | local Hit = Workspace:FindPartOnRay(Ray, script.Parent.Parent) |
10 | if Hit then |
11 | if Hit:FindFirstChild( "RemoteControlledDoor" ) then |
12 | local DoorID = Hit.RemoteControlledDoor.Value |
13 | for _, v in pairs (IDsOperating) do |
14 | if v = = DoorID then |
15 | script.Parent.Handle.Beep:Play() |