Advertisement
Guest User

RigEdit Virus

a guest
Dec 31st, 2018
980
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 16.54 KB | None | 0 0
  1. -- Arch_Mage 2017
  2.  
  3. local UIS = game:GetService("UserInputService")
  4.  
  5. local toolbar = plugin:CreateToolbar("RigEdit")
  6. local activateButton = toolbar:CreateButton("Edit Rig","Opens a rig for editing.","rbxassetid://1273824119")
  7. local Mouse = plugin:GetMouse()
  8.  
  9. for i,v in pairs(game.CoreGui:children()) do
  10.     if v.Name == "RigEditUI" or v.Name == "JointAdornment" or v.Name == "JointHandles" then v:Destroy() end
  11. end
  12.  
  13. local GUI = script.Parent
  14. GUI.Parent = game.CoreGui
  15. GUI.Enabled = false
  16.  
  17. local settingsChanged = Instance.new("BindableEvent")
  18.  
  19. local globalStep = plugin:GetSetting("Step") or 1
  20. plugin:SetSetting("Step",globalStep)
  21.  
  22. local mainFrame = GUI:WaitForChild("Frame")
  23. local toolsFrame = mainFrame:WaitForChild("Tools")
  24.  
  25. local toolTip = toolsFrame:WaitForChild("ToolTip")
  26.  
  27. local optionsFrame = mainFrame:WaitForChild("Options")
  28. local stepBox = optionsFrame:WaitForChild("StepBox")
  29.  
  30. local lastStepText = stepBox.Text
  31. stepBox.Changed:connect(function()
  32.     if tonumber(stepBox.Text) then
  33.         globalStep = tonumber(stepBox.Text)
  34.         plugin:SetSetting("Step",globalStep)
  35.         settingsChanged:Fire()
  36.         lastStepText = stepBox.Text
  37.     elseif stepBox.Text ~= "" then
  38.         stepBox.Text = lastStepText
  39.     end
  40. end)
  41.  
  42. local relFrame = optionsFrame:WaitForChild("RelFrame")
  43.  
  44. local globalAlign = plugin:GetSetting("Align") or "Part0"
  45. plugin:SetSetting("Align",globalAlign)
  46.  
  47. local toolTips = {
  48.     CreateJoint = "Select parts and create joints.",
  49.     CreateWeld = "Select parts and create welds.",
  50.     Reset = "Select joints and reset them.",
  51.     Default = toolTip.Text
  52. }
  53.  
  54. local curHover
  55. for i,v in pairs(relFrame:children()) do
  56.     v.MouseEnter:connect(function()
  57.         curHover = v
  58.         v.TextColor3 = Color3.fromRGB(170,170,170)
  59.         toolTip.Text = "Align joint movement to "..v.Name.."."     
  60.     end)
  61.    
  62.     v.MouseLeave:connect(function()
  63.         v.TextColor3 = Color3.fromRGB(100,100,100)
  64.         if curHover ~= v then return end
  65.         toolTip.Text = toolTips.Default
  66.         curHover = nil
  67.     end)
  68.    
  69.     v.MouseButton1Down:connect(function()
  70.         globalAlign = v.Name
  71.         for _,b in pairs(relFrame:children()) do
  72.             b.BackgroundColor3 = Color3.fromRGB(220,220,220)
  73.         end
  74.         v.BackgroundColor3 = Color3.fromRGB(245,245,245)
  75.         plugin:SetSetting("Align",globalAlign)
  76.         settingsChanged:Fire()
  77.     end)   
  78.    
  79.     if v.Name == globalAlign then
  80.         v.BackgroundColor3 = Color3.fromRGB(245,245,245)
  81.     else
  82.         v.BackgroundColor3 = Color3.fromRGB(220,220,220)
  83.     end
  84. end
  85.  
  86. local moveHandles = Instance.new("Handles",game.CoreGui)
  87. moveHandles.Name = "JointHandles"
  88. moveHandles.Color3 = Color3.new()
  89. moveHandles.Transparency = 1
  90.  
  91. local modelSelector = Instance.new("BoxHandleAdornment",GUI)
  92. modelSelector.AlwaysOnTop = true
  93. modelSelector.Color3 = Color3.new(1,1,1)
  94. modelSelector.Transparency = 0.9
  95.  
  96. --[[local partSelector = Instance.new("BoxHandleAdornment",GUI)
  97. partSelector.AlwaysOnTop = true
  98. partSelector.ZIndex = 2
  99. partSelector.Color3 = Color3.new(0.5,1,0.5)
  100. partSelector.Transparency = 0.5]]
  101.  
  102. local selModel
  103. local selModelCon
  104.  
  105. local selectionHash = {}
  106.  
  107. local selectionBillboards = {}
  108. local jointAdornments = {}
  109.  
  110. local jointHoveringOver
  111.  
  112. local function renderJoint(joint)
  113.     if jointAdornments[joint] then return end
  114.    
  115.     local hueVal = 0.1+(math.random(-1,1)/50)
  116.    
  117.     local adorn
  118.     if joint:IsA("Motor6D") then
  119.         adorn = Instance.new("SphereHandleAdornment",game.CoreGui)
  120.         adorn.Name = "JointAdornment"
  121.         adorn.AlwaysOnTop = true
  122.         adorn.Adornee = joint.Part0
  123.         adorn.Color3 = Color3.fromHSV(hueVal,0.9,0.9)
  124.         adorn.Transparency = 0
  125.         adorn.Radius = 0.1
  126.         adorn.ZIndex = 3
  127.     else
  128.         adorn = Instance.new("BoxHandleAdornment",game.CoreGui)
  129.         adorn.Name = "JointAdornment"
  130.         adorn.AlwaysOnTop = true
  131.         adorn.Adornee = joint.Part0
  132.         adorn.Color3 = Color3.fromHSV(hueVal,0.9,0.9)
  133.         adorn.Transparency = 0
  134.         adorn.Size = Vector3.new(0.1,0.1,0.1)
  135.         adorn.ZIndex = 3
  136.     end
  137.    
  138.     adorn.CFrame = CFrame.new(joint.C0.p)
  139.    
  140.     jointAdornments[joint] = adorn
  141.    
  142.     local refPart = Instance.new("Part",adorn)
  143.     refPart.Size = Vector3.new()
  144.     refPart.Locked = true
  145.     refPart.Transparency = 0.5
  146.    
  147.     local function refreshRefPart()
  148.         refPart.CFrame = joint.Part0.CFrame*adorn.CFrame
  149.         if globalAlign == "Part1" then
  150.             local relcf = joint.Part0.CFrame:toObjectSpace(joint.Part1.CFrame)
  151.             relcf = relcf-relcf.p
  152.             refPart.CFrame = refPart.CFrame*relcf
  153.         elseif globalAlign == "World" then
  154.             local relcf = joint.Part0.CFrame:toObjectSpace(CFrame.new())
  155.             relcf = relcf-relcf.p
  156.             refPart.CFrame = refPart.CFrame*relcf
  157.         end
  158.     end
  159.    
  160.     refreshRefPart()
  161.    
  162.     settingsChanged.Event:connect(refreshRefPart)
  163.    
  164.     local hoveradorn = adorn:clone()
  165.     hoveradorn.Name = "Hover"
  166.     hoveradorn.ZIndex = adorn.ZIndex-1
  167.     if joint:IsA("Motor6D") then
  168.         hoveradorn.Radius = 0.15
  169.     else
  170.         hoveradorn.Size = Vector3.new(0.15,0.15,0.15)
  171.     end
  172.     hoveradorn.Color3 = Color3.fromHSV(hueVal,0.9,0.4)
  173.     hoveradorn.Parent = adorn
  174.     hoveradorn.Visible = false
  175.    
  176.     local part0Cap = adorn:clone()
  177.     part0Cap:ClearAllChildren()
  178.     part0Cap.Name = "Cap"
  179.     part0Cap.CFrame = CFrame.new()
  180.     part0Cap.ZIndex = adorn.ZIndex-1
  181.     part0Cap.Color3 = hoveradorn.Color3
  182.     if joint:IsA("Motor6D") then
  183.         part0Cap.Radius = adorn.Radius*0.5
  184.     else
  185.         part0Cap.Size = adorn.Size*0.5
  186.     end
  187.     part0Cap.Parent = adorn
  188.    
  189.     local part1Cap = part0Cap:clone()
  190.     part1Cap.Adornee = joint.Part1
  191.     part1Cap.Parent = adorn
  192.    
  193.     local pointer0 = Instance.new("CylinderHandleAdornment")
  194.     pointer0.Name = "Pointer"
  195.     pointer0.AlwaysOnTop = true
  196.     if joint:IsA("Motor6D") then
  197.         pointer0.Radius = adorn.Radius*0.25
  198.     else
  199.         pointer0.Radius = adorn.Size.x*0.25
  200.     end
  201.     pointer0.Height = joint.C0.p.magnitude
  202.     pointer0.CFrame = CFrame.new(Vector3.new(),joint.C0.p)*CFrame.new(0,0,-pointer0.Height/2)
  203.     pointer0.ZIndex = adorn.ZIndex-1
  204.     pointer0.Color3 = Color3.fromHSV(hueVal,0.9,0.4)
  205.     pointer0.Adornee = joint.Part0
  206.     pointer0.Parent = adorn
  207.    
  208.     local pointer1 = pointer0:clone()
  209.     pointer1.Height = joint.C1.p.magnitude
  210.     pointer1.CFrame = CFrame.new(Vector3.new(),joint.C1.p)*CFrame.new(0,0,-pointer1.Height/2)
  211.     pointer1.Adornee = joint.Part1
  212.     pointer1.Parent = adorn
  213.    
  214.     joint.Changed:connect(function()
  215.         if not joint.Parent then
  216.             jointAdornments[joint] = nil
  217.             adorn:Destroy()
  218.             return
  219.         end
  220.         adorn.CFrame = CFrame.new(joint.C0.p)
  221.         refreshRefPart()
  222.         hoveradorn.CFrame = adorn.CFrame
  223.         pointer0.Height = joint.C0.p.magnitude
  224.         pointer0.CFrame = CFrame.new(Vector3.new(),joint.C0.p)*CFrame.new(0,0,-pointer0.Height/2)
  225.         pointer1.Height = joint.C1.p.magnitude
  226.         pointer1.CFrame = CFrame.new(Vector3.new(),joint.C1.p)*CFrame.new(0,0,-pointer1.Height/2)
  227.     end)
  228.    
  229.         adorn.MouseEnter:connect(function()
  230.             jointHoveringOver = joint
  231.             hoveradorn.Visible = true
  232.         end)
  233.         adorn.MouseLeave:connect(function()
  234.             if jointHoveringOver == joint then
  235.                 jointHoveringOver = nil
  236.             end
  237.             if selectionHash[joint] then return end
  238.             hoveradorn.Visible = false
  239.         end)
  240.        
  241.     if joint:IsA("Motor6D") then
  242.         adorn.MouseButton1Down:connect(function()
  243.             local jointAlreadySelected = selectionHash[joint]
  244.            
  245.             local sel = {}
  246.             if UIS:IsKeyDown(Enum.KeyCode.LeftShift) then
  247.                 sel = game:GetService("Selection"):Get()
  248.             elseif jointAlreadySelected then
  249.                 return
  250.             end
  251.            
  252.             if jointAlreadySelected then
  253.                 for i,v in pairs(sel) do
  254.                     if v == joint then
  255.                         table.remove(sel,i)
  256.                     end
  257.                 end
  258.             else
  259.                 table.insert(sel,joint)
  260.             end
  261.            
  262.             game:GetService("Selection"):Set(sel)
  263.         end)
  264.     end
  265. end
  266.  
  267. local function hideModel(model)
  268.     pcall(function()
  269.         modelSelector.Adornee = model
  270.     end)
  271.    
  272.     for i,v in pairs(selectionBillboards) do
  273.         v:Destroy()
  274.     end
  275.     selectionBillboards = {}
  276.    
  277.     for i,v in pairs(jointAdornments) do
  278.         v:Destroy()
  279.     end
  280.     jointAdornments = {}   
  281.    
  282.     pcall(function()
  283.         modelSelector.Size = model:GetExtentsSize()
  284.     end)
  285.    
  286.     for i,v in pairs(model:GetDescendants()) do
  287.         if v:IsA("BasePart") then
  288.             v.LocalTransparencyModifier = 0.5
  289.         elseif v:IsA("Motor6D") or v:IsA("Weld") then
  290.             renderJoint(v)
  291.         end
  292.     end
  293. end
  294.  
  295. local function showModel(model)
  296.     pcall(function()
  297.         modelSelector.Adornee = nil
  298.     end)
  299.     --partSelector.Adornee = nil
  300.     for i,v in pairs(selectionBillboards) do
  301.         v:Destroy()
  302.     end
  303.     selectionBillboards = {}
  304.    
  305.     for i,v in pairs(jointAdornments) do
  306.         v:Destroy()
  307.     end
  308.     jointAdornments = {}
  309.    
  310.     for i,v in pairs(model:GetDescendants()) do
  311.         if v:IsA("BasePart") then
  312.             v.LocalTransparencyModifier = 0
  313.         end
  314.     end
  315. end
  316.  
  317. activateButton.Click:connect(function()
  318.     if selModel then
  319.         GUI.Enabled = false
  320.         showModel(selModel)
  321.         selModel = nil
  322.         if selModelCon then
  323.             selModelCon:disconnect()
  324.             selModelCon = nil
  325.         end
  326.         moveHandles.Adornee = nil
  327.         for i,v in pairs(jointAdornments) do
  328.             v.Visible = false
  329.             for i,v in pairs(v:children()) do
  330.                 if v.Name == "Cap" or v.Name == "Pointer" then
  331.                     v.Visible = false
  332.                 end
  333.             end
  334.         end
  335.         activateButton:SetActive(false)
  336.         return
  337.     end
  338.    
  339.     local sel = game:GetService("Selection"):Get()
  340.     if #sel ~= 1 then warn("[RigEdit] Please select a model or tool to rig.") return end
  341.    
  342.     local allowedTypes = {
  343.         Model = true,
  344.         Folder = true,
  345.         Tool = true,
  346.     }
  347.    
  348.     local sm
  349.     if not allowedTypes[sel[1].ClassName] then
  350.         for i,v in pairs(allowedTypes) do
  351.             sm = sel[1]:FindFirstAncestorOfClass(i)
  352.             if sm then break end
  353.         end
  354.        
  355.         if not sm then     
  356.             warn("[RigEdit] Please select a model or tool to rig.")
  357.             return
  358.         end
  359.     end
  360.    
  361.     selModel = sm or sel[1]
  362.    
  363.     hideModel(selModel)
  364.    
  365.     selModelCon = selModel.DescendantAdded:connect(function(desc)
  366.         if desc:IsA("Motor6D") or desc:IsA("Weld") then
  367.             renderJoint(desc)
  368.         end
  369.     end)
  370.    
  371.     plugin:Activate(true)
  372.     game:GetService("Selection"):Set({})   
  373.    
  374.     activateButton:SetActive(true)
  375.     GUI.Enabled = true
  376. end)
  377.  
  378. local toolButtons = {}
  379. for i,v in pairs(toolsFrame:children()) do
  380.     if v:IsA("TextButton") then
  381.         toolButtons[v.Name] = v
  382.        
  383.         v.MouseEnter:connect(function()
  384.             curHover = v
  385.             v.TextColor3 = Color3.fromRGB(170,170,170)
  386.             toolTip.Text = toolTips[v.Name]        
  387.         end)
  388.        
  389.         v.MouseLeave:connect(function()
  390.             v.TextColor3 = Color3.fromRGB(100,100,100)
  391.             if curHover ~= v then return end
  392.             toolTip.Text = toolTips.Default
  393.             curHover = nil
  394.         end)
  395.     end
  396. end
  397.  
  398. toolButtons.CreateJoint.MouseButton1Down:connect(function()
  399.     local sel = game:GetService("Selection"):Get()
  400.     if #sel == 0 then
  401.         warn("[RigEdit] Please select parts to join.")
  402.         return
  403.     end
  404.     for i,v in pairs(sel) do
  405.         if not v:IsA("BasePart") then
  406.             warn("[RigEdit] Please select parts to join.")
  407.             return
  408.         end
  409.     end
  410.    
  411.     local root = sel[1]
  412.     table.remove(sel,1)
  413.    
  414.     local joints = {}
  415.    
  416.     for i,v in pairs(sel) do
  417.         v.Anchored = false
  418.         local cf = root.CFrame:toObjectSpace(v.CFrame)
  419.         --v.CFrame = root.CFrame
  420.        
  421.         local joint = Instance.new("Motor6D")
  422.         joint.Name = root.Name.." 🡪 "..v.Name
  423.         joint.Part0 = root
  424.         joint.Part1 = v
  425.         joint.C0 = cf
  426.         joint.Parent = root
  427.         table.insert(joints,joint)
  428.     end
  429.    
  430.     spawn(function()
  431.         game:GetService("Selection"):Set(joints)
  432.     end)
  433.    
  434.     plugin:Activate(true)
  435.     activateButton:SetActive(true)
  436. end)
  437.  
  438.  
  439. toolButtons.CreateWeld.MouseButton1Down:connect(function()
  440.     local sel = game:GetService("Selection"):Get()
  441.     if #sel == 0 then
  442.         warn("[RigEdit] Please select parts to weld.")
  443.         return
  444.     end
  445.     for i,v in pairs(sel) do
  446.         if not v:IsA("BasePart") then
  447.             warn("[RigEdit] Please select parts to weld.")
  448.             return
  449.         end
  450.     end
  451.    
  452.     local root = sel[1]
  453.     table.remove(sel,1)
  454.    
  455.     local welds = {}
  456.    
  457.     for i,v in pairs(sel) do
  458.         v.Anchored = false
  459.         local cf = root.CFrame:toObjectSpace(v.CFrame)
  460.         --v.CFrame = root.CFrame
  461.        
  462.         local weld = Instance.new("Weld")
  463.         weld.Name = root.Name.." 🡪 "..v.Name
  464.         weld.Part0 = root
  465.         weld.Part1 = v
  466.         weld.C0 = cf
  467.         weld.Parent = root
  468.         table.insert(welds,weld)
  469.     end
  470.    
  471.     spawn(function()
  472.         game:GetService("Selection"):Set(welds)
  473.     end)
  474.    
  475.     plugin:Activate(true)
  476.     activateButton:SetActive(true)
  477. end)
  478.  
  479. toolButtons.Reset.MouseButton1Down:connect(function()
  480.     local sel = game:GetService("Selection"):Get()
  481.     if #sel == 0 then
  482.         warn("[RigEdit] Please select valid joints to reset.")
  483.         return
  484.     end
  485.     for i,v in pairs(sel) do
  486.         if not v:IsA("Motor6D") or not v.Part0 or not v.Part1 then
  487.             warn("[RigEdit] Please select valid joints to reset.")
  488.             return
  489.         end
  490.     end
  491.    
  492.     for i,joint in pairs(sel) do
  493.         joint.C0 = joint.Part0.CFrame:toObjectSpace(joint.Part1.CFrame)
  494.         joint.C1 = CFrame.new()
  495.     end
  496.    
  497.     plugin:Activate(true)
  498.     activateButton:SetActive(true)
  499. end)
  500.  
  501. local mouseOverHandles = false
  502. moveHandles.MouseEnter:connect(function()
  503.     mouseOverHandles = true
  504. end)
  505. moveHandles.MouseLeave:connect(function()
  506.     mouseOverHandles = false
  507. end)
  508.  
  509. local originalJointConfigs = {}
  510. moveHandles.MouseButton1Down:connect(function()
  511.     originalJointConfigs = {}
  512.     for i,v in pairs(selectionHash) do
  513.         if i:IsA("Motor6D") and jointAdornments[i] then
  514.             originalJointConfigs[i] = {C0=i.C0,C1=i.C1}
  515.         end
  516.     end
  517. end)
  518.  
  519. local lastDistance
  520. moveHandles.MouseDrag:connect(function(face,distance)
  521.     if globalStep ~= 0 then
  522.         distance = math.floor(distance/globalStep)*globalStep
  523.     end
  524.     if distance == lastDistance then return end
  525.    
  526.     local refJoint
  527.     for i,v in pairs(jointAdornments) do
  528.         if v == moveHandles.Adornee.Parent then
  529.             refJoint = i
  530.         end
  531.     end
  532.    
  533.     if not refJoint then return end
  534.    
  535.     local jointRot = moveHandles.Adornee.CFrame
  536.     jointRot = jointRot-jointRot.p
  537.     local moveBy = CFrame.new(Vector3.FromNormalId(face)*distance)
  538.     local relMoveBy = (jointRot*moveBy).p
  539.    
  540.     for joint,config in pairs(originalJointConfigs) do
  541.         local origJointCF = joint.Part0.CFrame*config.C0
  542.         local desiredCF = origJointCF + relMoveBy
  543.        
  544.         joint.C0 = joint.Part0.CFrame:toObjectSpace(desiredCF)
  545.         local diff = config.C0:toObjectSpace(joint.C0)
  546.         joint.C1 = config.C1+diff.p
  547.     end
  548. end)
  549.  
  550. Mouse.Button1Down:connect(function()
  551.     if not selModel then return end
  552.     if mouseOverHandles then return end
  553.     if UIS:IsKeyDown(Enum.KeyCode.LeftShift) then return end
  554.     if not jointHoveringOver then
  555.         game:GetService("Selection"):Set({})
  556.     end
  557. end)
  558.  
  559. game:GetService("Selection").SelectionChanged:connect(function()
  560.     local sel = game:GetService("Selection"):Get()
  561.     selectionHash = {}
  562.     for i,v in pairs(sel) do
  563.         selectionHash[v] = i
  564.     end
  565.    
  566.     for i,v in pairs(selectionBillboards) do
  567.         local found = selectionHash[i]
  568.         if found then
  569.             v.TextLabel.Text = found
  570.             if found == 1 then
  571.                 v.TextLabel.TextColor3 = Color3.new(1,0.95,0.65)
  572.             else
  573.                 v.TextLabel.TextColor3 = Color3.new(1,1,1)
  574.             end
  575.         else
  576.             v:Destroy()
  577.             selectionBillboards[i] = nil
  578.         end
  579.     end
  580.    
  581.     for joint,adorn in pairs(jointAdornments) do
  582.         if not adorn.Parent then jointAdornments[adorn] = nil end
  583.         local hueVal = Color3.toHSV(adorn.Color3)
  584.         local found = selectionHash[joint]
  585.         if found then
  586.             adorn.Color3 = Color3.fromHSV(hueVal,0.3,1)
  587.             if adorn:FindFirstChild("Hover") then
  588.                 adorn.Hover.Visible = true
  589.             end
  590.         else
  591.             adorn.Color3 = Color3.fromHSV(hueVal,0.9,0.9)
  592.             if jointHoveringOver ~= joint and adorn:FindFirstChild("Hover") then
  593.                 adorn.Hover.Visible = false
  594.             end
  595.         end
  596.     end
  597.    
  598.     local selectingJoints = false
  599.     if selModel then
  600.         local selectingParts = false
  601.         for i,v in pairs(sel) do
  602.             if v:IsA("BasePart") then
  603.                 selectingParts = true
  604.                 if not selectionBillboards[v] then
  605.                     local bb = Instance.new("BillboardGui",GUI)
  606.                     bb.Adornee = v
  607.                     bb.Size = UDim2.new(0,40,0,40)
  608.                     bb.AlwaysOnTop = true
  609.                     local tl = Instance.new("TextLabel",bb)
  610.                     tl.Size = UDim2.new(1,0,1,0)
  611.                     tl.Text = #sel
  612.                     if #sel == 1 then
  613.                         tl.TextColor3 = Color3.new(1,0.95,0.65)
  614.                     else
  615.                         tl.TextColor3 = Color3.new(1,1,1)
  616.                     end
  617.                     tl.TextSize = 18
  618.                     tl.BackgroundTransparency = 1
  619.                    
  620.                     tl.TextStrokeTransparency = 0.5
  621.                     tl.TextStrokeColor3 = Color3.new()
  622.                     tl.Font = Enum.Font.SourceSansBold
  623.                    
  624.                     selectionBillboards[v] = bb
  625.                 end
  626.             elseif v:IsA("Motor6D") then
  627.                 selectingJoints = true
  628.                 -- create rotate and stuff
  629.                 local adorn = jointAdornments[v]
  630.                 if adorn then
  631.                     moveHandles.Adornee = adorn:WaitForChild("Part",1)
  632.                 end
  633.             end
  634.         end
  635.         if selectingParts then
  636.             for i,v in pairs(jointAdornments) do
  637.                 v.Visible = false
  638.                 for i,v in pairs(v:children()) do
  639.                     if v.Name == "Cap" or v.Name == "Pointer" then
  640.                         v.Visible = false
  641.                     end
  642.                 end
  643.             end
  644.         else
  645.             for i,v in pairs(jointAdornments) do
  646.                 v.Visible = true
  647.                 for i,v in pairs(v:children()) do
  648.                     if v.Name == "Cap" or v.Name == "Pointer" then
  649.                         v.Visible = true
  650.                     end
  651.                 end
  652.             end
  653.         end
  654.     end
  655.    
  656.     if not selectingJoints then
  657.         moveHandles.Adornee = nil
  658.     end
  659. end)
  660.  
  661. GUI.AncestryChanged:connect(function()
  662.     if not GUI.Parent then
  663.         script:Destroy()
  664.     end
  665. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement