Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How Wold I Make This Remote Slide Door? FIX

Asked by 10 years ago
01local IDsOperating = {0}
02 
03local Range = 25
04 
05 
06script.Parent.Equipped:connect(function(mouse)
07    mouse.Button1Up: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()
View all 29 lines...

Answer this question