SHOW:
|
|
- or go back to the newest paste.
| 1 | local Player = game.Players.localPlayer | |
| 2 | local Character = Player.Character | |
| 3 | local Humanoid = Character.Humanoid | |
| 4 | local Mouse = Player:GetMouse() | |
| 5 | local LeftArm = Character["Left Arm"] | |
| 6 | local RightArm = Character["Right Arm"] | |
| 7 | local LeftLeg = Character["Left Leg"] | |
| 8 | local RightLeg = Character["Right Leg"] | |
| 9 | local Head = Character.Head | |
| 10 | local Torso = Character.Torso | |
| 11 | ||
| 12 | local Create = LoadLibrary("RbxUtility").Create
| |
| 13 | function RemoveOutlines(part) | |
| 14 | part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10 | |
| 15 | end | |
| 16 | ||
| 17 | CFuncs = {
| |
| 18 | ["Part"] = {
| |
| 19 | Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size) | |
| 20 | local Part = Create("Part"){
| |
| 21 | Parent = Parent, | |
| 22 | Reflectance = Reflectance, | |
| 23 | Transparency = Transparency, | |
| 24 | CanCollide = false, | |
| 25 | Locked = true, | |
| 26 | BrickColor = BrickColor.new(tostring(BColor)), | |
| 27 | Name = Name, | |
| 28 | Size = Size, | |
| 29 | Material = Material, | |
| 30 | } | |
| 31 | if Part.BrickColor == BrickColor.new("Dark indigo") then
| |
| 32 | Part.BrickColor = BrickColor.new("Bright red")
| |
| 33 | end | |
| 34 | if Part.BrickColor == BrickColor.new("Royal purple") then
| |
| 35 | Part.BrickColor = BrickColor.new("Bright red")
| |
| 36 | end | |
| 37 | RemoveOutlines(Part) | |
| 38 | return Part | |
| 39 | end; | |
| 40 | }; | |
| 41 | ||
| 42 | ["Mesh"] = {
| |
| 43 | Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale) | |
| 44 | local Msh = Create(Mesh){
| |
| 45 | Parent = Part, | |
| 46 | Offset = OffSet, | |
| 47 | Scale = Scale, | |
| 48 | } | |
| 49 | if Mesh == "SpecialMesh" then | |
| 50 | Msh.MeshType = MeshType | |
| 51 | Msh.MeshId = MeshId | |
| 52 | end | |
| 53 | return Msh | |
| 54 | end; | |
| 55 | }; | |
| 56 | ||
| 57 | ["Mesh"] = {
| |
| 58 | Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale) | |
| 59 | local Msh = Create(Mesh){
| |
| 60 | Parent = Part, | |
| 61 | Offset = OffSet, | |
| 62 | Scale = Scale, | |
| 63 | } | |
| 64 | if Mesh == "SpecialMesh" then | |
| 65 | Msh.MeshType = MeshType | |
| 66 | Msh.MeshId = MeshId | |
| 67 | end | |
| 68 | return Msh | |
| 69 | end; | |
| 70 | }; | |
| 71 | ||
| 72 | ["Weld"] = {
| |
| 73 | Create = function(Parent, Part0, Part1, C0, C1) | |
| 74 | local Weld = Create("Weld"){
| |
| 75 | Parent = Parent, | |
| 76 | Part0 = Part0, | |
| 77 | Part1 = Part1, | |
| 78 | C0 = C0, | |
| 79 | C1 = C1, | |
| 80 | } | |
| 81 | return Weld | |
| 82 | end; | |
| 83 | }; | |
| 84 | ||
| 85 | ["Sound"] = {
| |
| 86 | Create = function(id, par, vol, pit) | |
| 87 | coroutine.resume(coroutine.create(function() | |
| 88 | local S = Create("Sound"){
| |
| 89 | Volume = vol, | |
| 90 | Pitch = pit or 1, | |
| 91 | SoundId = id, | |
| 92 | Parent = par or workspace, | |
| 93 | } | |
| 94 | wait() | |
| 95 | S:play() | |
| 96 | game:GetService("Debris"):AddItem(S, 6)
| |
| 97 | end)) | |
| 98 | end; | |
| 99 | }; | |
| 100 | ||
| 101 | ["ParticleEmitter"] = {
| |
| 102 | Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread) | |
| 103 | local fp = Create("ParticleEmitter"){
| |
| 104 | Parent = Parent, | |
| 105 | Color = ColorSequence.new(Color1, Color2), | |
| 106 | LightEmission = LightEmission, | |
| 107 | Size = Size, | |
| 108 | Texture = Texture, | |
| 109 | Transparency = Transparency, | |
| 110 | ZOffset = ZOffset, | |
| 111 | Acceleration = Accel, | |
| 112 | Drag = Drag, | |
| 113 | LockedToPart = LockedToPart, | |
| 114 | VelocityInheritance = VelocityInheritance, | |
| 115 | EmissionDirection = EmissionDirection, | |
| 116 | Enabled = Enabled, | |
| 117 | Lifetime = LifeTime, | |
| 118 | Rate = Rate, | |
| 119 | Rotation = Rotation, | |
| 120 | RotSpeed = RotSpeed, | |
| 121 | Speed = Speed, | |
| 122 | VelocitySpread = VelocitySpread, | |
| 123 | } | |
| 124 | return fp | |
| 125 | end; | |
| 126 | }; | |
| 127 | ||
| 128 | CreateTemplate = {
| |
| 129 | ||
| 130 | }; | |
| 131 | } | |
| 132 | local m = Instance.new("Model",Character)
| |
| 133 | m.Name = "Hax" | |
| 134 | ||
| 135 | function Armor() -- Don't like how the armor shows up at first while the character is invisible | |
| 136 | ||
| 137 | LeftLeg.Transparency = 1 | |
| 138 | RightLeg.Transparency = 1 | |
| 139 | ||
| 140 | LeftArmHandle=CFuncs.Part.Create(m,Enum.Material.Plastic,0,1,"Medium stone grey","LeftArmHandle",Vector3.new(1.0117017, 2.02340055, 1.01170254)) | |
| 141 | LeftArmHandleWeld=CFuncs.Weld.Create(m,Character["Left Arm"],LeftArmHandle,CFrame.new(0.015, 0, 0),CFrame.new(0, 0, 0)) | |
| 142 | Part=CFuncs.Part.Create(m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.25541088, 0.500605762, 0.582337081)) | |
| 143 | PartWeld=CFuncs.Weld.Create(m,LeftArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.438323975, -0.114891961, -0.0029296875, 1, 3.53828436e-005, -0.000341972976, 3.41876548e-005, -0.999999881, 0.000266408344, -0.000347743538, -0.00026641952, -1)) | |
| 144 | Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.25541088, 0.398441344, 0.480172575)) | |
| 145 | PartWeld=CFuncs.Weld.Create(m,LeftArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.458751678, -0.114888698, -0.00293731689, 1, 3.53828436e-005, -0.000341972976, 3.41876548e-005, -0.999999881, 0.000266408344, -0.000347743538, -0.00026641952, -1)) | |
| 146 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 147 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0020904541, -0.448642731, -0.605269909, 5.94371049e-005, 1.85106055e-005, 1, -1, 0.000147737563, 5.36547304e-005, -0.00014903261, -0.999999881, 1.85194458e-005)) | |
| 148 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 149 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 150 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.308547974, -0.448638916, -0.605277181, 5.94371049e-005, 1.85106055e-005, 1, -1, 0.000147737563, 5.36547304e-005, -0.00014903261, -0.999999881, 1.85194458e-005)) | |
| 151 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 152 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 153 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.133708954, -0.431167603, -0.605293989, 1, -0.000147737563, -3.67819157e-005, 4.25642866e-005, 1.8513103e-005, 1, -0.00014903261, -0.999999881, 1.85194458e-005)) | |
| 154 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 155 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 156 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.155349731, -0.448631287, -0.605272412, 5.94371049e-005, 1.85106055e-005, 1, -1, 0.000147737563, 5.36547304e-005, -0.00014903261, -0.999999881, 1.85194458e-005)) | |
| 157 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 158 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 159 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.287002563, -0.431282043, -0.605283678, 1, -0.000147737563, -3.67819157e-005, 4.25642866e-005, 1.8513103e-005, 1, -0.00014903261, -0.999999881, 1.85194458e-005)) | |
| 160 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 161 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 162 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.326065063, -0.431236267, -0.605268002, 1, -0.000147737563, -3.67819157e-005, 4.25642866e-005, 1.8513103e-005, 1, -0.00014903261, -0.999999881, 1.85194458e-005)) | |
| 163 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 164 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 165 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.479263306, -0.431190491, -0.605278552, 1, -0.000147737563, -3.67819157e-005, 4.25642866e-005, 1.8513103e-005, 1, -0.00014903261, -0.999999881, 1.85194458e-005)) | |
| 166 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 167 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 168 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.172805786, -0.431243896, -0.605256319, 1, -0.000147737563, -3.67819157e-005, 4.25642866e-005, 1.8513103e-005, 1, -0.00014903261, -0.999999881, 1.85194458e-005)) | |
| 169 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 170 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 171 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.437179565, -0.448581696, -0.60526216, 5.94371049e-005, 1.85106055e-005, 1, -1, 0.000147737563, 5.36547304e-005, -0.00014903261, -0.999999881, 1.85194458e-005)) | |
| 172 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 173 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 174 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0195350647, -0.431289673, -0.605306566, 1, -0.000147737563, -3.67819157e-005, 4.25642866e-005, 1.8513103e-005, 1, -0.00014903261, -0.999999881, 1.85194458e-005)) | |
| 175 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 176 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 177 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.461807251, -0.448627472, -0.605276942, 5.94371049e-005, 1.85106055e-005, 1, -1, 0.000147737563, 5.36547304e-005, -0.00014903261, -0.999999881, 1.85194458e-005)) | |
| 178 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 179 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 180 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.304367065, -0.448646545, -0.60526371, 5.94371049e-005, 1.85106055e-005, 1, -1, 0.000147737563, 5.36547304e-005, -0.00014903261, -0.999999881, 1.85194458e-005)) | |
| 181 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 182 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 183 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.151168823, -0.448638916, -0.605267644, 5.94371049e-005, 1.85106055e-005, 1, -1, 0.000147737563, 5.36547304e-005, -0.00014903261, -0.999999881, 1.85194458e-005)) | |
| 184 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 185 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 186 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.440177917, -0.431221008, -0.605271757, 1, -0.000147737563, -3.67819157e-005, 4.25642866e-005, 1.8513103e-005, 1, -0.00014903261, -0.999999881, 1.85194458e-005)) | |
| 187 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 188 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 189 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.469100952, 0.41683197, -0.605265558, 1, -0.000147737563, -3.67819157e-005, 4.25642866e-005, 1.8513103e-005, 1, -0.00014903261, -0.999999881, 1.85194458e-005)) | |
| 190 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 191 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 192 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.172821045, 0.416717529, -0.605305016, 1, -0.000147737563, -3.67819157e-005, 4.25642866e-005, 1.8513103e-005, 1, -0.00014903261, -0.999999881, 1.85194458e-005)) | |
| 193 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 194 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 195 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.702371776, -0.00820922852, -0.545623779, 0.000128935877, 0.999999881, -5.33314487e-005, -0.000211441074, -5.3304273e-005, -1, -1, 0.000127643332, 0.000205654549)) | |
| 196 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 5, 0.300000012))
| |
| 197 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 198 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.702369869, -0.0348815918, -0.512863159, 0.000128555926, 0.999999881, -5.28843921e-005, -1, 0.000127263353, 0.000189371844, 0.000195158253, 5.28593773e-005, 1)) | |
| 199 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 5, 0.300000012))
| |
| 200 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 201 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.498031259, -0.00798797607, 0.475971222, 0.000128935877, 0.999999881, -5.33314487e-005, -0.000211441074, -5.3304273e-005, -1, -1, 0.000127643332, 0.000205654549)) | |
| 202 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 5, 0.300000012))
| |
| 203 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 204 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.28698349, 0.416732788, -0.605268598, 1, -0.000147737563, -3.67819157e-005, 4.25642866e-005, 1.8513103e-005, 1, -0.00014903261, -0.999999881, 1.85194458e-005)) | |
| 205 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 206 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 207 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.133693695, 0.416854858, -0.605279148, 1, -0.000147737563, -3.67819157e-005, 4.25642866e-005, 1.8513103e-005, 1, -0.00014903261, -0.999999881, 1.85194458e-005)) | |
| 208 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 209 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 210 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0195579529, 0.416725159, -0.605292082, 1, -0.000147737563, -3.67819157e-005, 4.25642866e-005, 1.8513103e-005, 1, -0.00014903261, -0.999999881, 1.85194458e-005)) | |
| 211 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 212 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 213 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.326019287, 0.416725159, -0.60531503, 1, -0.000147737563, -3.67819157e-005, 4.25642866e-005, 1.8513103e-005, 1, -0.00014903261, -0.999999881, 1.85194458e-005)) | |
| 214 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 215 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 216 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.498088717, -0.0349082947, -0.512939453, 0.000128555926, 0.999999881, -5.28843921e-005, -1, 0.000127263353, 0.000189371844, 0.000195158253, 5.28593773e-005, 1)) | |
| 217 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 5, 0.300000012))
| |
| 218 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 219 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.498029083, -0.00820159912, -0.545642853, 0.000128935877, 0.999999881, -5.33314487e-005, -0.000211441074, -5.3304273e-005, -1, -1, 0.000127643332, 0.000205654549)) | |
| 220 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 5, 0.300000012))
| |
| 221 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 222 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.440158844, 0.416740417, -0.605256677, 1, -0.000147737563, -3.67819157e-005, 4.25642866e-005, 1.8513103e-005, 1, -0.00014903261, -0.999999881, 1.85194458e-005)) | |
| 223 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 224 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 225 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.702377617, -0.00806427002, 0.475990295, 0.000128935877, 0.999999881, -5.33314487e-005, -0.000211441074, -5.3304273e-005, -1, -1, 0.000127643332, 0.000205654549)) | |
| 226 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 5, 0.300000012))
| |
| 227 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 228 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.702378154, -0.0347557068, 0.508743286, 0.000128555926, 0.999999881, -5.28843921e-005, -1, 0.000127263353, 0.000189371844, 0.000195158253, 5.28593773e-005, 1)) | |
| 229 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 5, 0.300000012))
| |
| 230 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 231 | BlockWeld=CFuncs.Weld.Create(m,LeftArmHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.498033345, -0.0347824097, 0.508605957, 0.000128555926, 0.999999881, -5.28843921e-005, -1, 0.000127263353, 0.000189371844, 0.000195158253, 5.28593773e-005, 1)) | |
| 232 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 5, 0.300000012))
| |
| 233 | Sphere=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Sphere",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 234 | SphereWeld=CFuncs.Weld.Create(m,LeftArmHandle,Sphere,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.476074219, 0.702378571, 0.513114929, -1, 0.000147737563, 3.67819157e-005, 0.000149032334, 0.999999881, -2.23378756e-005, -4.25648541e-005, -2.23315201e-005, -1)) | |
| 235 | CFuncs.Mesh.Create("SpecialMesh",Sphere,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 0.300000012, 0.300000012))
| |
| 236 | Sphere=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Sphere",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 237 | SphereWeld=CFuncs.Weld.Create(m,LeftArmHandle,Sphere,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.476043701, 0.702355623, -0.508605957, -1, 0.000147737563, 3.67819157e-005, 0.000149032334, 0.999999881, -2.23378756e-005, -4.25648541e-005, -2.23315201e-005, -1)) | |
| 238 | CFuncs.Mesh.Create("SpecialMesh",Sphere,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 0.300000012, 0.300000012))
| |
| 239 | Sphere=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Sphere",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 240 | SphereWeld=CFuncs.Weld.Create(m,LeftArmHandle,Sphere,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.545562744, 0.702369809, -0.508575439, -1, 0.000147737563, 3.67819157e-005, 0.000149032334, 0.999999881, -2.23378756e-005, -4.25648541e-005, -2.23315201e-005, -1)) | |
| 241 | CFuncs.Mesh.Create("SpecialMesh",Sphere,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 0.300000012, 0.300000012))
| |
| 242 | Sphere=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Sphere",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 243 | SphereWeld=CFuncs.Weld.Create(m,LeftArmHandle,Sphere,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.545597076, 0.4980883, -0.508575439, -1, 0.000147737563, 3.67819157e-005, 0.000149032334, 0.999999881, -2.23378756e-005, -4.25648541e-005, -2.23315201e-005, -1)) | |
| 244 | CFuncs.Mesh.Create("SpecialMesh",Sphere,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 0.300000012, 0.300000012))
| |
| 245 | Sphere=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Sphere",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 246 | SphereWeld=CFuncs.Weld.Create(m,LeftArmHandle,Sphere,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.545532227, 0.70239538, 0.513031006, -1, 0.000147737563, 3.67819157e-005, 0.000149032334, 0.999999881, -2.23378756e-005, -4.25648541e-005, -2.23315201e-005, -1)) | |
| 247 | CFuncs.Mesh.Create("SpecialMesh",Sphere,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 0.300000012, 0.300000012))
| |
| 248 | Sphere=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Sphere",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 249 | SphereWeld=CFuncs.Weld.Create(m,LeftArmHandle,Sphere,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.545562744, 0.498053908, 0.513145447, -1, 0.000147737563, 3.67819157e-005, 0.000149032334, 0.999999881, -2.23378756e-005, -4.25648541e-005, -2.23315201e-005, -1)) | |
| 250 | CFuncs.Mesh.Create("SpecialMesh",Sphere,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 0.300000012, 0.300000012))
| |
| 251 | Sphere=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Sphere",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 252 | SphereWeld=CFuncs.Weld.Create(m,LeftArmHandle,Sphere,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.476013184, 0.498069584, -0.508598328, -1, 0.000147737563, 3.67819157e-005, 0.000149032334, 0.999999881, -2.23378756e-005, -4.25648541e-005, -2.23315201e-005, -1)) | |
| 253 | CFuncs.Mesh.Create("SpecialMesh",Sphere,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 0.300000012, 0.300000012))
| |
| 254 | Sphere=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Sphere",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 255 | SphereWeld=CFuncs.Weld.Create(m,LeftArmHandle,Sphere,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.476043701, 0.498034835, 0.513122559, -1, 0.000147737563, 3.67819157e-005, 0.000149032334, 0.999999881, -2.23378756e-005, -4.25648541e-005, -2.23315201e-005, -1)) | |
| 256 | CFuncs.Mesh.Create("SpecialMesh",Sphere,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 0.300000012, 0.300000012))
| |
| 257 | BlockPart=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","BlockPart",Vector3.new(1.03186011, 1.61419833, 1.03186023)) | |
| 258 | BlockPartWeld=CFuncs.Weld.Create(m,LeftArmHandle,BlockPart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0296173096, -0.206890911, -0.00724029541, 1, -0.000117227413, -0.000189372367, 0.000118527452, 0.99999994, -5.28527162e-005, 0.000195158253, 5.28295895e-005, 1)) | |
| 259 | BlockPart=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","BlockPart",Vector3.new(1.1340245, 0.38822481, 1.23618889)) | |
| 260 | BlockPartWeld=CFuncs.Weld.Create(m,LeftArmHandle,BlockPart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0806465149, -0.615587652, -0.0072555542, 1, -0.000117227413, -0.000189372367, 0.000118527452, 0.99999994, -5.28527162e-005, 0.000195158253, 5.28295895e-005, 1)) | |
| 261 | BlockPart=CFuncs.Part.Create(m,Enum.Material.Fabric,0,0,"Really black","BlockPart",Vector3.new(1.08294213, 0.20432891, 1.1340245)) | |
| 262 | BlockPartWeld=CFuncs.Weld.Create(m,LeftArmHandle,BlockPart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0552101135, -0.31925866, -0.00730133057, 1, -0.000117227413, -0.000189372367, 0.000118527452, 0.99999994, -5.28527162e-005, 0.000195158253, 5.28295895e-005, 1)) | |
| 263 | BlockPart=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","BlockPart",Vector3.new(0.429090351, 0.20432891, 1.03186023)) | |
| 264 | BlockPartWeld=CFuncs.Weld.Create(m,LeftArmHandle,BlockPart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.615546405, 0.610099792, -0.40265274, 0.000130933797, 0.999999881, -3.73575203e-005, -0.000216438566, -3.73293005e-005, -1, -1, 0.000129640073, 0.000210654034)) | |
| 265 | CFuncs.Mesh.Create("BlockMesh",BlockPart,"","",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.300000012, 0.5))
| |
| 266 | BlockPart=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","BlockPart",Vector3.new(0.429090351, 0.20432891, 1.03186023)) | |
| 267 | BlockPartWeld=CFuncs.Weld.Create(m,LeftArmHandle,BlockPart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.615591347, -0.585273743, -0.402488708, 0.000130933797, 0.999999881, -3.73575203e-005, -0.000216438566, -3.73293005e-005, -1, -1, 0.000129640073, 0.000210654034)) | |
| 268 | CFuncs.Mesh.Create("BlockMesh",BlockPart,"","",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.300000012, 0.5))
| |
| 269 | BlockPart=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","BlockPart",Vector3.new(0.429090351, 0.20432891, 0.674284816)) | |
| 270 | BlockPartWeld=CFuncs.Weld.Create(m,LeftArmHandle,BlockPart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0996056497, -0.488204956, -0.0449676514, 0.000130933797, 0.999999881, -3.73575203e-005, -0.000216438566, -3.73293005e-005, -1, -1, 0.000129640073, 0.000210654034)) | |
| 271 | CFuncs.Mesh.Create("BlockMesh",BlockPart,"","",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.300000012, 1.5))
| |
| 272 | BlockPart=CFuncs.Part.Create(m,Enum.Material.Plastic,0,0,"Dark stone grey","BlockPart",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 273 | BlockPartWeld=CFuncs.Weld.Create(m,LeftArmHandle,BlockPart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.615568459, 0.610153198, -0.0348625183, 0.000130933797, 0.999999881, -3.73575203e-005, -0.000216438566, -3.73293005e-005, -1, -1, 0.000129640073, 0.000210654034)) | |
| 274 | CFuncs.Mesh.Create("BlockMesh",BlockPart,"","",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.300000012, 0.5))
| |
| 275 | BlockPart=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","BlockPart",Vector3.new(0.429090351, 0.20432891, 0.674284816)) | |
| 276 | BlockPartWeld=CFuncs.Weld.Create(m,LeftArmHandle,BlockPart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0995882899, -0.525165558, -0.00215911865, 0.000130933797, 0.999999881, -3.73575203e-005, -1, 0.000129640088, 0.00019478357, 0.000200568087, 3.73313524e-005, 1)) | |
| 277 | CFuncs.Mesh.Create("BlockMesh",BlockPart,"","",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.300000012, 1.53999996))
| |
| 278 | BlockPart=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","BlockPart",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 279 | BlockPartWeld=CFuncs.Weld.Create(m,LeftArmHandle,BlockPart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.61554879, -0.595466614, 0.00614929199, 0.000130933797, 0.999999881, -3.73575203e-005, -0.000216438566, -3.73293005e-005, -1, -1, 0.000129640073, 0.000210654034)) | |
| 280 | CFuncs.Mesh.Create("BlockMesh",BlockPart,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 281 | BlockPart=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","BlockPart",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 282 | BlockPartWeld=CFuncs.Weld.Create(m,LeftArmHandle,BlockPart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.615568757, 0.630607605, 0.00597000122, 0.000130933797, 0.999999881, -3.73575203e-005, -0.000216438566, -3.73293005e-005, -1, -1, 0.000129640073, 0.000210654034)) | |
| 283 | CFuncs.Mesh.Create("BlockMesh",BlockPart,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 284 | BlockPart=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","BlockPart",Vector3.new(0.429090351, 0.20432891, 1.03186023)) | |
| 285 | BlockPartWeld=CFuncs.Weld.Create(m,LeftArmHandle,BlockPart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.615555465, -0.627300262, -0.00736236572, 0.000130933797, 0.999999881, -3.73575203e-005, -1, 0.000129640088, 0.000193783562, 0.000199568065, 3.73314797e-005, 1)) | |
| 286 | CFuncs.Mesh.Create("BlockMesh",BlockPart,"","",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.300000012, 1.21000004))
| |
| 287 | BlockPart=CFuncs.Part.Create(m,Enum.Material.Plastic,0,0,"Dark stone grey","BlockPart",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 288 | BlockPartWeld=CFuncs.Weld.Create(m,LeftArmHandle,BlockPart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.615548491, -0.585220337, -0.034702301, 0.000130933797, 0.999999881, -3.73575203e-005, -0.000216438566, -3.73293005e-005, -1, -1, 0.000129640073, 0.000210654034)) | |
| 289 | CFuncs.Mesh.Create("BlockMesh",BlockPart,"","",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.300000012, 0.5))
| |
| 290 | BlockPart=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","BlockPart",Vector3.new(0.418873847, 0.245194674, 1.03186023)) | |
| 291 | BlockPartWeld=CFuncs.Weld.Create(m,LeftArmHandle,BlockPart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.276817322, 0.722777784, -0.00722503662, 1, -0.000117227413, -0.000189372367, 0.000118527452, 0.99999994, -5.28527162e-005, 0.000195158253, 5.28295895e-005, 1)) | |
| 292 | BlockPart=CFuncs.Part.Create(m,Enum.Material.WoodPlanks,0,0,"Royal purple","BlockPart",Vector3.new(0.429090351, 0.20432891, 0.674284816)) | |
| 293 | BlockPartWeld=CFuncs.Weld.Create(m,LeftArmHandle,BlockPart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0996034965, -0.498390198, -0.0143318176, 0.000130933797, 0.999999881, -3.73575203e-005, -0.000216438566, -3.73293005e-005, -1, -1, 0.000129640073, 0.000210654034)) | |
| 294 | CFuncs.Mesh.Create("BlockMesh",BlockPart,"","",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.300000012, 1.5))
| |
| 295 | BlockPart=CFuncs.Part.Create(m,Enum.Material.WoodPlanks,0,0,"Royal purple","BlockPart",Vector3.new(0.429090351, 0.20432891, 0.674284816)) | |
| 296 | BlockPartWeld=CFuncs.Weld.Create(m,LeftArmHandle,BlockPart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0995925367, 0.464801788, 0.00168609619, 0.000130933797, 0.999999881, -3.73575203e-005, -1, 0.000129640088, 0.00019478357, 0.000200568087, 3.73313524e-005, 1)) | |
| 297 | CFuncs.Mesh.Create("BlockMesh",BlockPart,"","",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.300000012, 1.56700003))
| |
| 298 | BlockPart=CFuncs.Part.Create(m,Enum.Material.WoodPlanks,0,0,"Royal purple","BlockPart",Vector3.new(0.429090351, 0.20432891, 0.674284816)) | |
| 299 | BlockPartWeld=CFuncs.Weld.Create(m,LeftArmHandle,BlockPart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0995789021, 0.495742798, -0.0451889038, 0.000130933797, 0.999999881, -3.73575203e-005, -0.000216438566, -3.73293005e-005, -1, -1, 0.000129640073, 0.000210654034)) | |
| 300 | CFuncs.Mesh.Create("BlockMesh",BlockPart,"","",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.300000012, 1.5))
| |
| 301 | BlockPart=CFuncs.Part.Create(m,Enum.Material.WoodPlanks,0,0,"Royal purple","BlockPart",Vector3.new(0.429090351, 0.20432891, 0.674284816)) | |
| 302 | BlockPartWeld=CFuncs.Weld.Create(m,LeftArmHandle,BlockPart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0995293558, -0.526256561, 0.000831604004, 0.000130933797, 0.999999881, -3.73575203e-005, -1, 0.000129640088, 0.00019478357, 0.000200568087, 3.73313524e-005, 1)) | |
| 303 | CFuncs.Mesh.Create("BlockMesh",BlockPart,"","",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.300000012, 1.55700004))
| |
| 304 | BlockPart=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","BlockPart",Vector3.new(0.20432879, 0.20432891, 1.03186023)) | |
| 305 | BlockPartWeld=CFuncs.Weld.Create(m,LeftArmHandle,BlockPart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.118488312, 0.79431659, -0.00726318359, 1, -0.000117227413, -0.000189372367, 0.000118527452, 0.99999994, -5.28527162e-005, 0.000195158253, 5.28295895e-005, 1)) | |
| 306 | BlockPart=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","BlockPart",Vector3.new(0.429090351, 0.20432891, 0.674284816)) | |
| 307 | BlockPartWeld=CFuncs.Weld.Create(m,LeftArmHandle,BlockPart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.099578917, 0.4947052, -0.0451889038, 0.000130933797, 0.999999881, -3.73575203e-005, -0.000216438566, -3.73293005e-005, -1, -1, 0.000129640073, 0.000210654034)) | |
| 308 | CFuncs.Mesh.Create("BlockMesh",BlockPart,"","",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.300000012, 1.5))
| |
| 309 | BlockPart=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","BlockPart",Vector3.new(0.623202682, 0.439307153, 1.03186023)) | |
| 310 | BlockPartWeld=CFuncs.Weld.Create(m,LeftArmHandle,BlockPart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.233989716, 0.819848657, -0.00727844238, 1, -0.000117227413, -0.000189372367, 0.000118527452, 0.99999994, -5.28527162e-005, 0.000195158253, 5.28295895e-005, 1)) | |
| 311 | BlockPart=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","BlockPart",Vector3.new(0.429090351, 0.20432891, 0.674284816)) | |
| 312 | BlockPartWeld=CFuncs.Weld.Create(m,LeftArmHandle,BlockPart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0995963886, 0.463737488, -0.00240325928, 0.000130933797, 0.999999881, -3.73575203e-005, -1, 0.000129640088, 0.00019478357, 0.000200568087, 3.73313524e-005, 1)) | |
| 313 | CFuncs.Mesh.Create("BlockMesh",BlockPart,"","",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.300000012, 1.54999995))
| |
| 314 | BlockPart=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","BlockPart",Vector3.new(1.03288174, 0.245194659, 1.03288198)) | |
| 315 | BlockPartWeld=CFuncs.Weld.Create(m,LeftArmHandle,BlockPart,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0296516418, 0.620620668, -0.00731658936, 1, -0.000117227413, -0.000189372367, 0.000118527452, 0.99999994, -5.28527162e-005, 0.000195158253, 5.28295895e-005, 1)) | |
| 316 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 317 | WedgeWeld=CFuncs.Weld.Create(m,LeftArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.517189026, -0.730190277, -0.575263977, 0.000245539792, -0.000146586797, -1, 0.719249189, -0.694751203, 0.000282603694, -0.694752395, -0.719250023, -6.91713649e-005)) | |
| 318 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 319 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 320 | WedgeWeld=CFuncs.Weld.Create(m,LeftArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.504592896, -0.857043505, 0.359676361, 0.000245539792, -0.000146586797, -1, -0.0698879734, -0.997554898, 0.00012866543, -0.997554898, 0.0698866397, -0.000260949659)) | |
| 321 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 322 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 323 | WedgeWeld=CFuncs.Weld.Create(m,LeftArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.504562378, -0.936662674, -0.0744056702, 0.000245539792, -0.000146586797, -1, 0.275509149, -0.961298108, 0.000210155704, -0.961298525, -0.27551043, -0.000201206683)) | |
| 324 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 325 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 326 | WedgeWeld=CFuncs.Weld.Create(m,LeftArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.517227173, -0.936897278, -0.0741348267, 0.000245539792, -0.000146586797, -1, 0.275509149, -0.961298108, 0.000210155704, -0.961298525, -0.27551043, -0.000201206683)) | |
| 327 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 328 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 329 | WedgeWeld=CFuncs.Weld.Create(m,LeftArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.51713562, -0.857171297, 0.36000824, 0.000245539792, -0.000146586797, -1, -0.0698879734, -0.997554898, 0.00012866543, -0.997554898, 0.0698866397, -0.000260949659)) | |
| 330 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 331 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 332 | WedgeWeld=CFuncs.Weld.Create(m,LeftArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.517173767, -0.739536285, 0.587677002, 0.000245539792, -0.000146586797, -1, -0.242048025, -0.970264554, 8.13978186e-005, -0.970264316, 0.242046624, -0.000279327651)) | |
| 333 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 334 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 335 | WedgeWeld=CFuncs.Weld.Create(m,LeftArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.504562378, -0.739466667, 0.587333679, 0.000245539792, -0.000146586797, -1, -0.242048025, -0.970264554, 8.13978186e-005, -0.970264316, 0.242046624, -0.000279327651)) | |
| 336 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 337 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 338 | WedgeWeld=CFuncs.Weld.Create(m,LeftArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.50453949, -0.729885101, -0.575344086, 0.000245539792, -0.000146586797, -1, 0.719249189, -0.694751203, 0.000282603694, -0.694752395, -0.719250023, -6.91713649e-005)) | |
| 339 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 340 | RightArmHandle=CFuncs.Part.Create(m,Enum.Material.Plastic,0,1,"Medium stone grey","RightArmHandle",Vector3.new(1.0117017, 2.02340055, 1.01170254)) | |
| 341 | RightArmHandleWeld=CFuncs.Weld.Create(m,Character["Right Arm"],RightArmHandle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000328063965, 0.000292792916, 0.000274658203, 1, 6.48181754e-007, 2.88981391e-006, 6.48181754e-007, 0.999999881, -4.58399541e-010, 2.88981391e-006, -4.58399541e-010, 1)) | |
| 342 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 343 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.504295349, 0.0224113464, -0.154676437, 0.000263542519, -0.000128559201, -1, 0.970265985, -0.24203977, 0.00029243101, -0.242041096, -0.970266283, 5.95508573e-005)) | |
| 344 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.349999994, 0.400000006))
| |
| 345 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.20432879, 0.20432891, 0.326925993)) | |
| 346 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.496276855, -0.176352754, -0.129585266, 1.00000012, -0.000117368945, -0.000372461276, -0.000118621472, -0.999999881, 9.2011076e-005, -0.000378251745, -9.19664453e-005, -1)) | |
| 347 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 0.800000012, 1.10000002))
| |
| 348 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.25541088, 0.20432891, 0.367791742)) | |
| 349 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.388278961, -0.196606636, 0.320396423, -1, 0.000147737563, 3.67819157e-005, 0.000149032334, 0.999999881, -2.23378756e-005, -4.25648541e-005, -2.23315201e-005, -1)) | |
| 350 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.800000012, 1.10000002))
| |
| 351 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.25541088, 0.20432891, 0.204328775)) | |
| 352 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.388439178, -0.378845215, 0.167448044, -1, 0.000147737563, 3.67819157e-005, -7.9684818e-005, -0.258836746, -0.965921104, -0.000132944187, -0.965921104, 0.258836895)) | |
| 353 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.699999988, 0.800000012))
| |
| 354 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.25541088, 0.20432891, 0.204328775)) | |
| 355 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.388267517, -0.19661504, -0.0985488892, -1, 0.000147737563, 3.67819157e-005, 0.000149032334, 0.999999881, -2.23378756e-005, -4.25648541e-005, -2.23315201e-005, -1)) | |
| 356 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.5, 1))
| |
| 357 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.25541088, 0.20432891, 0.204328775)) | |
| 358 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.38829422, -0.000816345215, -0.0369873047, -1, 0.000147737563, 3.67819157e-005, 6.32018055e-005, 0.642772079, -0.766057611, -0.000141528857, -0.766057432, -0.642772198)) | |
| 359 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.600000024, 1.10000002))
| |
| 360 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 361 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.285402298, -0.295471191, -0.432151794, 0.500171542, 0.865926921, -0.000232767779, 0.865926564, -0.50017041, -0.000295688864, -0.000378248165, -5.36642074e-005, -1)) | |
| 362 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.349999994, 0.800000012))
| |
| 363 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.25541088, 0.20432891, 0.224761635)) | |
| 364 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.388191223, 0.0322570801, -0.148422241, -1, 0.000147737563, 3.67819157e-005, 0.000141528857, 0.766057014, 0.642772675, 6.32018782e-005, 0.642772555, -0.766057074)) | |
| 365 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.5, 0.800000012))
| |
| 366 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.25541088, 0.20432891, 0.204328775)) | |
| 367 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.388195038, -0.23739624, -0.326156616, -1, 0.000147737563, 3.67819157e-005, 8.68119532e-005, 0.766031206, -0.642803371, -0.000128410262, -0.642803311, -0.766031444)) | |
| 368 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.349999994, 0.800000012))
| |
| 369 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.25541088, 0.20432891, 0.204328775)) | |
| 370 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.388202667, -0.153205872, -0.273921967, -1, 0.000147737563, 3.67819157e-005, 3.76535245e-005, 0.499982685, -0.866035581, -0.000150358697, -0.866035402, -0.499982744)) | |
| 371 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.349999994, 0.800000012))
| |
| 372 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.03186011, 0.776449621, 1.03186023)) | |
| 373 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.81469727e-005, -0.625537932, 0.00699615479, -1, 0.000147737563, 3.67819157e-005, 0.000149032334, 0.999999881, -2.23378756e-005, -4.25648541e-005, -2.23315201e-005, -1)) | |
| 374 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.25541088, 0.224761769, 0.296276659)) | |
| 375 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.388275146, -0.186428398, -0.338600159, -1, 0.000147737563, 3.67819157e-005, 0.000149032334, 0.999999881, -2.23378756e-005, -4.25648541e-005, -2.23315201e-005, -1)) | |
| 376 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.800000012, 1.10000002))
| |
| 377 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.25541088, 0.20432891, 0.204328775)) | |
| 378 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.388282776, -0.0581741333, -0.0940246582, -1, 0.000147737563, 3.67819157e-005, 0.000141528857, 0.766057014, 0.642772675, 6.32018782e-005, 0.642772555, -0.766057074)) | |
| 379 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.5, 0.800000012))
| |
| 380 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.25541088, 0.20432891, 0.316709578)) | |
| 381 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.388214111, 0.119171143, -0.0602874756, -1, 0.000147737563, 3.67819157e-005, -6.77998178e-005, -0.173666015, -0.98480463, -0.000139387237, -0.984804511, 0.17366603)) | |
| 382 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.800000012, 1.10000002))
| |
| 383 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 384 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.227526337, -0.459342957, -0.405273438, -0.000203925607, -0.99999994, 5.83409928e-005, -1.00000012, 0.000202648298, 0.000364783366, -0.000370574882, -5.82661487e-005, -1)) | |
| 385 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.5, 1))
| |
| 386 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.216838658, 0.216838822, 0.776449323)) | |
| 387 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.495471954, 0.432418823, 0.166039735, 1, 0.000219255715, -0.00039579341, -0.00040155524, -8.14841624e-005, -1, -0.000217994995, 0.999999881, -8.13983061e-005)) | |
| 388 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 0.800000012, 1))
| |
| 389 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 390 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.173473358, 0.437576294, -0.299474716, 0.939617872, 0.342227578, -0.000403211976, -0.0004070047, -7.65974837e-005, -1, -0.342226416, 0.939617038, 6.53370662e-005)) | |
| 391 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.800000012, 1.10000002))
| |
| 392 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 393 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0261306763, 0.437713623, -0.229450226, 0.866131127, -0.49981609, -0.00030468902, -0.000408853055, -8.88829672e-005, -1, 0.499817163, 0.866131425, -0.000278447667)) | |
| 394 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.800000012, 1.10000002))
| |
| 395 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 396 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.245258331, 0.437797546, -0.0368394852, 0.984769821, 0.173865423, -0.000411116838, -0.000409536355, -7.77006935e-005, -1, -0.173864245, 0.984769404, -6.31882904e-006)) | |
| 397 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.800000012, 1.10000002))
| |
| 398 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 399 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.161447525, 0.175319672, -0.405158997, -0.499822646, 0.866127074, 0.000139049152, 0.866128087, 0.499823779, -0.000350035174, -0.000378454744, -5.45206749e-005, -1)) | |
| 400 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.400000006, 1))
| |
| 401 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 402 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.184986115, -0.398830414, -0.405380249, 0.7659145, -0.642941415, -0.00024379525, -0.642942488, -0.765915334, 0.000285808288, -0.000376264245, -6.21579675e-005, -1)) | |
| 403 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.5, 1))
| |
| 404 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 405 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.238075256, -0.0317344666, -0.405128479, -0.499822646, 0.866127074, 0.000139049152, 0.866128087, 0.499823779, -0.000350035174, -0.000378454744, -5.45206749e-005, -1)) | |
| 406 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.800000012, 1))
| |
| 407 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 408 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0851974487, 0.296497345, -0.405174255, 0.500171542, 0.865926921, -0.000235747983, 0.865926564, -0.50017041, -0.000293662306, -0.000377983903, -5.72584322e-005, -1)) | |
| 409 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.5, 1))
| |
| 410 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.20432879, 1.17489111, 0.367791772)) | |
| 411 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.455463409, -0.0221786499, 0.442047179, 1, -0.000117756375, -0.000372785726, -0.000378575787, -8.74835532e-005, -1, 0.000119009223, 0.999999881, -8.75283658e-005)) | |
| 412 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.800000012, 1.10000002))
| |
| 413 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.20432879, 0.572120905, 0.204328775)) | |
| 414 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.496189117, -0.329588413, -0.395172119, 1.00000012, -0.000117368945, -0.000372461276, -0.000118621472, -0.999999881, 9.2011076e-005, -0.000378251745, -9.19664453e-005, -1)) | |
| 415 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 0.800000012, 1.10000002))
| |
| 416 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.20432879, 0.357575566, 0.204328775)) | |
| 417 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.496147156, 0.13525632, -0.395133972, 1.00000012, -0.000117368945, -0.000372461276, -0.000118621472, -0.999999881, 9.2011076e-005, -0.000378251745, -9.19664453e-005, -1)) | |
| 418 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 0.800000012, 1.10000002))
| |
| 419 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 420 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.504524231, 0.468618393, -0.209846497, 0.00030053372, -0.00018155307, -1, -0.484704494, 0.874677181, -0.000307273061, 0.874678075, 0.484705657, 0.000179925206)) | |
| 421 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.300000012, 0.5))
| |
| 422 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 423 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.504516602, 0.421760559, 0.405538559, 0.000272540521, -0.000140570803, -1, -0.994534075, -0.10441269, -0.000262121524, -0.104411356, 0.994533956, -0.000168863568)) | |
| 424 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.300000012, 0.300000012))
| |
| 425 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 426 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.504447937, 0.383110046, 0.154088974, 0.000271539786, -0.000144593927, -1, -0.961293817, -0.275526524, -0.000226745877, -0.275525302, 0.961293459, -0.000215407039)) | |
| 427 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.349999994, 0.699999988))
| |
| 428 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 429 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.504211426, 0.418453217, 0.430289507, -0.000270541554, 0.000133567024, 1, 0.997555554, -0.0698769838, 0.000284979236, 0.0698783174, 0.997555673, -0.000113932976)) | |
| 430 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.349999994, 0.5))
| |
| 431 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 432 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.504425049, 0.29598999, -0.320083618, 0.000272540085, -0.000143580837, -1, -0.913495362, 0.406848073, -0.000312660093, 0.406849205, 0.913495779, -1.79274466e-005)) | |
| 433 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.699999988, 0.699999988))
| |
| 434 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 435 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.504341125, 0.0844573975, -0.0917243958, 0.000261541747, -0.000133565642, -1, -0.913494468, 0.40685004, -0.000298538478, 0.406851172, 0.913494885, -1.32526311e-005)) | |
| 436 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.899999976, 1))
| |
| 437 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 438 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.504241943, 0.160745621, -0.344959259, -0.000224551739, 7.25848513e-005, 1, 0.55929637, 0.828968465, 6.86519197e-005, -0.82896781, 0.559295177, -0.000231534301)) | |
| 439 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.600000024, 0.699999988))
| |
| 440 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 441 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.410995483, -0.470344543, 0.0471916199, -1, 0.000116743155, 3.67826069e-005, 6.2420324e-005, 0.173694044, 0.984799623, 0.00010886728, 0.984799683, -0.173694074)) | |
| 442 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.5, 1))
| |
| 443 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 444 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.410968781, -0.0135574341, -0.177940369, 1, -0.000147737563, -3.67819157e-005, 7.2914263e-005, 0.69463259, -0.719364643, 0.000136784278, 0.719364524, 0.694632947)) | |
| 445 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.800000012))
| |
| 446 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 447 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.410972595, -0.109760284, -0.0746383667, 1, -0.000147737563, -3.67819157e-005, 0.000143772035, 0.994518042, -0.104565434, 5.79129264e-005, 0.104565397, 0.994518161)) | |
| 448 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.800000012))
| |
| 449 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 450 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.50453186, 0.549198151, -0.0208511353, 0.000282533205, -0.000185603378, -1, -0.819082558, 0.57367456, -0.00034262886, 0.573675692, 0.819083273, 1.33724207e-005)) | |
| 451 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.300000012, 0.300000012))
| |
| 452 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 453 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.483680725, 0.272553444, -0.396469116, 0.000288938085, 0.0521913469, -0.99863714, 0.000111813541, 0.998637021, 0.0521913953, 1, -0.000125445484, 0.000288488518)) | |
| 454 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.300000012, 0.699999988))
| |
| 455 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 456 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.410972595, -0.119522095, 0.057723999, 1, -0.000147737563, -3.67819157e-005, 0.000122033991, 0.587812066, 0.808997691, -9.55414725e-005, -0.808997452, 0.587812245)) | |
| 457 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.800000012))
| |
| 458 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 459 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.410968781, 0.103988647, -0.145017624, 1, -0.000147737563, -3.67819157e-005, -3.20669205e-005, 0.0697234422, -0.997566521, 0.000151642118, 0.997566342, 0.0697234422)) | |
| 460 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.800000012))
| |
| 461 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 462 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.410964966, -0.250419617, 0.171031952, -1, 0.000114746399, 3.67826324e-005, -1.53697183e-005, 0.224910572, -0.97437942, -0.000122634956, -0.974379301, -0.224910572)) | |
| 463 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.600000024, 0.800000012))
| |
| 464 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 465 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.410957336, -0.0422668457, 0.285446167, -1, 0.000114746399, 3.67826324e-005, -0.000103830207, -0.601848364, -0.798610389, -6.70543523e-005, -0.79861033, 0.601848423)) | |
| 466 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.600000024, 0.800000012))
| |
| 467 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 468 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.410961151, -0.0189056396, 0.190279007, 1, -0.000147737563, -3.67819157e-005, 3.20669205e-005, -0.0697234422, 0.997566521, -0.000151642118, -0.997566342, -0.0697234422)) | |
| 469 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.800000012))
| |
| 470 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 471 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.410961151, 0.202838898, -0.0363540649, 1, -0.000147737563, -3.67819157e-005, -0.000147369865, -0.829057157, -0.559163868, 4.80528724e-005, 0.559163809, -0.829057395)) | |
| 472 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.800000012))
| |
| 473 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 474 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.410961151, 0.157485962, -0.132907867, 1, -0.000147737563, -3.67819157e-005, -0.000103596474, -0.438400656, -0.89877975, 0.000115300703, 0.898779631, -0.438400716)) | |
| 475 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.800000012))
| |
| 476 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 477 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.410961151, -0.37702179, -0.0033416748, -1, 0.000114746399, 3.67826324e-005, 2.75017555e-005, 0.544602752, -0.838694274, -0.000120498778, -0.838694036, -0.544602811)) | |
| 478 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.800000012))
| |
| 479 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 480 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.504508972, 0.24685958, -0.461833954, 0.000283539703, -0.000144595819, -1, 0.000129905311, 0.999999881, -0.000144559541, 1, -0.000128574728, 0.000289338117)) | |
| 481 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.300000012, 0.300000012))
| |
| 482 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 483 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.41091156, -0.112014771, 0.275939941, 1, -0.000106737025, -3.67828397e-005, -8.56020197e-005, -0.933564425, 0.358409822, -7.84567528e-005, -0.358409703, -0.933564544)) | |
| 484 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.699999988, 1))
| |
| 485 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.275843859)) | |
| 486 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.410987854, 0.0453997925, 0.307884216, 1, -0.000111751266, -3.67827379e-005, -0.000113044436, -0.99999994, 4.43603894e-005, -4.25673643e-005, -4.43553618e-005, -1)) | |
| 487 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.699999988, 1))
| |
| 488 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 489 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.410964966, 0.131492615, -0.246994019, 1, -0.000114746399, -3.67826324e-005, -9.44891872e-005, -0.939675748, 0.342066318, -7.96902168e-005, -0.342066258, -0.939675927)) | |
| 490 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.600000024, 0.400000006))
| |
| 491 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 492 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.410923004, -0.195152283, 0.304946899, -1, 0.000116743155, 3.67826069e-005, 0.000117783602, 0.766076028, 0.642749846, 4.3264783e-005, 0.642749786, -0.766076267)) | |
| 493 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.5, 1))
| |
| 494 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 495 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.410896301, 0.45009613, 0.185099363, -1, 0.000116743155, 3.67826069e-005, 3.84225677e-005, -0.0348523967, 0.99939245, 0.000119450931, 0.99939245, 0.0348524116)) | |
| 496 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.400000006, 0.699999988))
| |
| 497 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 498 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.41091156, -0.412086487, 0.35200882, 1, -0.000115752227, -3.67825705e-005, -8.0032718e-005, -0.342061341, -0.939677656, 9.54284333e-005, 0.939677477, -0.3420614)) | |
| 499 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.400000006, 0.699999988))
| |
| 500 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 501 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.410972595, 0.362792969, 0.119937897, -1, 7.3745854e-005, 3.67835273e-005, 6.9411195e-005, 0.406802952, 0.913516104, 5.12315346e-005, 0.913515866, -0.406803012)) | |
| 502 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.400000006, 0.400000006))
| |
| 503 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 504 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.410907745, -0.0938911438, 0.183761597, -1, 0.000116743155, 3.67826069e-005, -0.000108874476, -0.984799147, 0.173697144, 6.24205131e-005, 0.173697129, 0.984799147)) | |
| 505 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.5, 0.699999988))
| |
| 506 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 507 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.410972595, -0.214584351, -0.18421936, 1, -0.000114746399, -3.67826324e-005, -0.000121785037, -0.866048515, -0.499960005, 2.11590668e-005, 0.499959975, -0.866048634)) | |
| 508 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.600000024, 0.800000012))
| |
| 509 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 510 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.410900116, -0.329032898, -0.229385376, -1, 8.67396666e-005, 3.67832727e-005, -5.00770693e-005, -0.087201342, -0.996190786, -8.39964559e-005, -0.996190786, 0.0872013792)) | |
| 511 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.400000006, 0.699999988))
| |
| 512 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 513 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.410934448, 0.0279159546, 0.434230804, -1, 0.000116743155, 3.67826069e-005, 9.58899691e-005, 0.500041127, 0.866001785, 8.09386984e-005, 0.866001606, -0.500041246)) | |
| 514 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.5, 1))
| |
| 515 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 516 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.410919189, -0.203201294, 0.225597382, -1, 0.000116743155, 3.67826069e-005, -3.7389691e-007, -0.341975003, 0.939709127, 0.000125485472, 0.939709008, 0.341974974)) | |
| 517 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.699999988, 1))
| |
| 518 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 519 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.410980225, 0.144927979, 0.155738831, -1, 0.000116743155, 3.67826069e-005, 8.03718576e-005, 0.342064261, 0.939676583, 9.63669227e-005, 0.939676464, -0.342064351)) | |
| 520 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.5, 0.699999988))
| |
| 521 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 522 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417160034, 0.085773468, -0.189151764, -0.000344439643, -5.15180727e-005, -1, -0.866087675, -0.499893814, 0.000319062994, -0.499892741, 0.866086662, 0.000124674101)) | |
| 523 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.699999988, 0.699999988))
| |
| 524 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 525 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.504264832, -0.250984192, -0.259490967, 0.000228549266, -8.85594054e-005, -1, -0.559294462, -0.828969836, -5.76447565e-005, -0.828969181, 0.559293211, -0.000243782881)) | |
| 526 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 1))
| |
| 527 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 528 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417243958, 0.244930267, -0.0811271667, -0.000403443584, -8.0506652e-005, -1, 0.17351748, -0.984830439, 1.0284165e-005, -0.984831035, -0.173518762, 0.000405601342)) | |
| 529 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.400000006, 1))
| |
| 530 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 531 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.41734314, 0.298152924, -0.0665493011, -0.000344439643, -5.15180727e-005, -1, -0.866087675, -0.499893814, 0.000319062994, -0.499892741, 0.866086662, 0.000124674101)) | |
| 532 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.699999988, 0.699999988))
| |
| 533 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 534 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.51153183, 0.0897979736, -0.158996582, 1, -0.000117741496, -0.000241784524, -0.000250321988, -0.766075134, -0.642750919, -0.000113137648, 0.642750978, -0.766075313)) | |
| 535 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 536 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 537 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.5115242, 0.153572083, -0.16759491, 1, -0.000117741496, -0.000241784524, -0.000196534165, -0.939709306, -0.34197405, -0.000191927538, 0.341974109, -0.939709485)) | |
| 538 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 539 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 540 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.511508942, -0.13369751, 0.106483459, 1, -0.000117741496, -0.000241784524, 2.71728131e-005, 0.939674377, -0.342070103, 0.000273349637, 0.342070013, 0.939674616)) | |
| 541 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 542 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 543 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.511512756, -0.126716614, -0.0299186707, 1, -0.000117741496, -0.000241784524, -0.000154883761, 0.499955595, -0.866051197, 0.000226875345, 0.866051018, 0.499955624)) | |
| 544 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 545 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 546 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.511512756, 0.229206085, -0.138748169, 1, -0.000117741496, -0.000241784524, -7.42440752e-005, -0.984798908, 0.173698202, -0.000264480303, -0.173698187, -0.984798968)) | |
| 547 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 548 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 549 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.511497498, 0.237724304, 0.181190476, 1, -0.000117741496, -0.000241784524, 0.000247569813, 4.74790759e-005, 1, -0.00011903447, -0.999999881, 4.75084635e-005)) | |
| 550 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 551 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.296276689)) | |
| 552 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.511455536, -0.400665283, -0.116775513, 1, -0.000118747324, -0.000239784378, -0.000271812751, -0.342066288, -0.939675927, 2.88048632e-005, 0.939675808, -0.342066348)) | |
| 553 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 554 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 555 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.511489868, 0.0188293457, 0.251922607, 1, -0.000117741496, -0.000241784524, 0.00022687536, 0.866050601, 0.49995628, 0.000154883688, -0.49995622, 0.86605078)) | |
| 556 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 557 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 558 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.511554718, 0.0990829468, 0.100013733, 1, -0.000117741496, -0.000241784524, -0.000266168005, -0.642823577, -0.766014159, -6.79542354e-005, 0.766014099, -0.642823696)) | |
| 559 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 560 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 561 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.5115242, 0.0646362305, 0.00978851318, 1, -0.000117741496, -0.000241784524, 0.000273349404, 0.342065394, 0.939676285, -2.71807221e-005, -0.939676106, 0.342065483)) | |
| 562 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 563 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 564 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.511535645, -0.0146827698, 0.00257873535, 1, -0.000117741496, -0.000241784524, -2.71879162e-005, -0.939675093, 0.342068017, -0.000273351383, -0.342067957, -0.939675331)) | |
| 565 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 566 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 567 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.491127014, 0.453292847, 0.171007797, 1, -0.000119745702, -0.000241784408, 0.000247569929, 4.84923949e-005, 1, -0.000121038604, -0.999999881, 4.8522259e-005)) | |
| 568 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 0.5, 0.699999988))
| |
| 569 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 570 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.511634827, 0.06980896, -0.0550994873, 1, -0.000117741496, -0.000241784524, 0.000196526613, 0.939710021, 0.341971993, 0.000191927742, -0.341972053, 0.939710259)) | |
| 571 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 572 | Wedge=CFuncs.Part.Create(m,Enum.Material.Plastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 573 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.511550903, 0.609474182, 0.531238556, -1, 0.000113755435, 0.000240784531, 0.000271043566, 0.342068374, 0.939675152, 2.37680615e-005, 0.939674973, -0.342068434)) | |
| 574 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 575 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 576 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.511665344, 0.24779892, -0.21282196, 1, -0.000117748947, -0.000241783651, 7.42364064e-005, 0.984798372, -0.173700735, 0.000264478615, 0.17370075, 0.984798431)) | |
| 577 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 578 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 579 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.51166153, 0.148300171, -0.0453567505, 1, -0.000117741496, -0.000241784524, -6.79472723e-005, 0.766011059, -0.642827451, 0.000266168063, 0.642827272, 0.766011119)) | |
| 580 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 581 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 582 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.511680603, 0.618110657, 0.452018738, 1, -0.000115752191, -0.000241784524, -0.00019261126, 0.341972828, -0.939710021, 0.000194656575, 0.939709842, 0.341972768)) | |
| 583 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 584 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 585 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.511680603, 0.345146179, 0.149419785, 1, -0.000117741496, -0.000241784524, -0.000223140451, 0.173599422, -0.984816372, 0.000160211639, 0.984816313, 0.173599422)) | |
| 586 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 587 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 588 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.511569977, 0.0109024048, -0.248100281, 1, -0.000117741496, -0.000241784524, 0.000160211508, 0.984816611, 0.173597425, 0.000223140611, -0.17359744, 0.98481673)) | |
| 589 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 590 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 591 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.511627197, 0.129051208, 0.18813324, 1, -0.000117741496, -0.000241784524, -0.000154883761, 0.499955595, -0.866051197, 0.000226875345, 0.866051018, 0.499955624)) | |
| 592 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 593 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 594 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.511695862, 0.616630554, 0.334281921, 1, -0.000115752191, -0.000241784524, -6.94746414e-005, 0.766011059, -0.642827451, 0.000264882838, 0.642827272, 0.766011119)) | |
| 595 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 596 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 597 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.511581421, -0.0587234497, 0.677345276, -1, 0.000113755435, 0.000240784531, 0.000192356209, -0.341971576, 0.939710438, 0.000192436244, 0.939710259, 0.341971576)) | |
| 598 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 599 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 600 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.511631012, 0.463775635, 0.638645172, -1, 0.000113755435, 0.000240784531, 0.000271043566, 0.342068374, 0.939675152, 2.37680615e-005, 0.939674973, -0.342068434)) | |
| 601 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 602 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 603 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.511676788, -0.0533447266, 0.698778152, 1, -0.000115752191, -0.000241784524, -0.000264133792, -0.173697159, -0.984799087, 7.2277202e-005, 0.984799027, -0.173697159)) | |
| 604 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 605 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 606 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.511615753, -0.319847107, 0.672073364, -1, 0.000113755435, 0.000240784531, 7.03688638e-005, -0.766010165, 0.642828584, 0.000262826507, 0.642828465, 0.766010225)) | |
| 607 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 608 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 609 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.511600494, 0.313552856, 0.584598541, -1, 0.000113755435, 0.000240784531, 0.000271043566, 0.342068374, 0.939675152, 2.37680615e-005, 0.939674973, -0.342068434)) | |
| 610 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 611 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 612 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.51166153, -0.184135437, 0.675708771, 1, -0.000115752191, -0.000241784524, -0.000264133792, -0.173697159, -0.984799087, 7.2277202e-005, 0.984799027, -0.173697159)) | |
| 613 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 614 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 615 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.511615753, -0.138504028, 0.683759689, -1, 0.000113755435, 0.000240784531, 0.000222849951, -0.173598513, 0.984816492, 0.000156098875, 0.984816432, 0.173598528)) | |
| 616 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 617 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 618 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.511665344, 0.0774307251, 0.705162048, 1, -0.000117741496, -0.000241784524, -0.000273349462, -0.342067122, -0.939675629, 2.71805529e-005, 0.93967545, -0.342067212)) | |
| 619 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 620 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.296276689)) | |
| 621 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.511566162, 0.399703979, 0.149036407, 1, -0.000117741496, -0.000241784524, 0.000273351296, 0.342066258, 0.939675927, -2.71806366e-005, -0.939675808, 0.342066348)) | |
| 622 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 623 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 624 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.416992188, 0.459632874, 0.00236076862, -0.000396448741, -0.00011150194, -1, 1.00000012, -0.000118754753, -0.000390655739, -0.000120005861, -0.999999881, 0.000111549271)) | |
| 625 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.400000006, 1))
| |
| 626 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 627 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.511650085, 0.416511536, 0.525382996, 1, -0.000115752191, -0.000241784524, -0.00019261126, 0.341972828, -0.939710021, 0.000194656575, 0.939709842, 0.341972768)) | |
| 628 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 629 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 630 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.41733551, 0.233234406, 0.0431079865, -0.000389445486, -9.04924964e-005, -1, -0.939651012, 0.342134237, 0.000329551112, 0.342135549, 0.939651072, -0.000216297456)) | |
| 631 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.400000006, 1))
| |
| 632 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 633 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417289734, -0.156667709, 0.0191993713, -0.000339440623, -5.64659931e-005, -1, 0.34189257, -0.939738572, -6.10124189e-005, -0.939739287, -0.341893673, 0.000332859723)) | |
| 634 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
| |
| 635 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 636 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.511569977, 0.00520896912, 0.39793396, 1, -0.000117748947, -0.000241783651, 7.42364064e-005, 0.984798372, -0.173700735, 0.000264478615, 0.17370075, 0.984798431)) | |
| 637 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 638 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 639 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417243958, 0.0805511475, 0.250875473, -0.000396447169, -0.000101518206, -1, -0.939651966, 0.342131168, 0.000332358759, 0.342132419, 0.939652205, -0.000229052181)) | |
| 640 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 1))
| |
| 641 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 642 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417190552, -0.231136322, 0.100609779, -0.000371439994, -5.55074948e-005, -1, -0.984786391, 0.173769146, 0.000350451679, 0.173770443, 0.984786391, -0.000118204414)) | |
| 643 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
| |
| 644 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 645 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.41733551, 0.224536896, -0.0618000031, -0.000389446213, -9.54992574e-005, -1, -0.866084218, -0.499899626, 0.00038002769, -0.499898553, 0.866083205, 0.00010908363)) | |
| 646 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.430000007, 1))
| |
| 647 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 648 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.417160034, 0.255838394, -0.430774689, 0.000386443135, 7.55024375e-005, 1, -0.499885589, 0.866090715, 0.0001248958, -0.866091669, -0.499886721, 0.000367432192)) | |
| 649 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.200000003, 1))
| |
| 650 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 651 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.416999817, -0.275058746, 0.355922699, -0.000391443638, -7.84819276e-005, -1, -0.642685592, 0.766129196, 0.000187732905, 0.766130328, 0.642686427, -0.000345908309)) | |
| 652 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.400000006, 0.699999988))
| |
| 653 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 654 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.416999817, -0.283462524, -0.326116562, 0.000390444708, 8.55153776e-005, 1, -0.86596179, 0.500109196, 0.000290337892, -0.500110388, -0.865962446, 0.000266428367)) | |
| 655 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.400000006, 1))
| |
| 656 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 657 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.417144775, 0.175773621, -0.36309433, 0.000385444175, 8.25061143e-005, 1, 0.17377694, 0.984785199, -0.000147228187, -0.984785259, 0.173775703, 0.000359550351)) | |
| 658 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.400000006, 0.800000012))
| |
| 659 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 660 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.41708374, 0.656784058, 0.361309052, 0.000403443235, 7.64833676e-005, 1, 0.866086483, 0.499895841, -0.000382644823, -0.499894738, 0.866085529, 0.000132548375)) | |
| 661 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.400000006, 1))
| |
| 662 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 663 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417121887, -0.273510188, -0.377922058, -0.00039144812, -0.000107479427, -1, -0.000125929379, -0.99999994, 0.000107528424, -1.00000012, 0.000124670521, 0.000385655032)) | |
| 664 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.5, 1))
| |
| 665 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 666 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.417114258, 0.527671814, 0.117294312, 0.000399442564, 7.24904676e-005, 1, 0.866086483, 0.499895841, -0.000377183896, -0.499894738, 0.866085529, 0.000134006681)) | |
| 667 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.400000006, 1))
| |
| 668 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 669 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.417106628, 0.498235762, -0.367706299, 0.000391444686, 8.55152175e-005, 1, 0.000131913781, 0.999999881, -8.55665203e-005, -1, 0.000130660788, 0.000385653751)) | |
| 670 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.400000006, 1))
| |
| 671 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 672 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.417114258, -0.301620483, -0.465762138, 0.00038944374, 7.94954976e-005, 1, -0.98478663, 0.173767999, 0.000364013307, -0.17376928, -0.98478657, 0.000144955571)) | |
| 673 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.400000006, 1))
| |
| 674 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 675 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417190552, 0.149868011, -0.202709198, -0.00038744061, -5.95283491e-005, -1, 0.765962422, -0.642884314, -0.000254067825, -0.642885566, -0.765963256, 0.000290961121)) | |
| 676 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 0.5))
| |
| 677 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 678 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.417068481, 0.459686279, 0.436964452, 0.000403446611, 9.84773505e-005, 1, 1.00000012, -0.000118754753, -0.000397655182, 0.000120006807, 0.999999881, -9.85254956e-005)) | |
| 679 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 1))
| |
| 680 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 681 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417190552, -0.276691437, 0.103364944, -0.000395444047, -8.25045863e-005, -1, -0.939734519, -0.341907352, 0.000394390052, -0.34190613, 0.939733624, 5.56958839e-005)) | |
| 682 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.400000006, 1))
| |
| 683 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 684 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417366028, 0.413482666, 0.0416736603, -0.000389445486, -9.04924964e-005, -1, -0.865962803, 0.500107288, 0.000286984112, 0.500108421, 0.865963399, -0.00027023803)) | |
| 685 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.430000007, 1))
| |
| 686 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 687 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417137146, -0.399623871, -0.145516396, -0.000394444418, -8.34882085e-005, -1, -0.984829068, -0.173529476, 0.000397255935, -0.173528224, 0.984828591, -1.47777164e-005)) | |
| 688 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.400000006, 1))
| |
| 689 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 690 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417182922, -0.285552979, 0.0272340775, -0.000394444069, -8.25047318e-005, -1, -0.984786272, 0.17377013, 0.000368414272, 0.173771366, 0.984786272, -0.00014878872)) | |
| 691 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.400000006, 1))
| |
| 692 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 693 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417243958, 0.0754985809, -0.157909393, -0.000396443676, -8.05076852e-005, -1, -0.342140973, -0.939649105, 0.000209311504, -0.939648867, 0.342139602, 0.000339541904)) | |
| 694 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.400000006, 1))
| |
| 695 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 696 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417175293, -0.338485718, 0.120929718, -0.000390444038, -8.14921077e-005, -1, -0.765962422, 0.642884314, 0.000242248134, 0.642885625, 0.765963197, -0.000309715339)) | |
| 697 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.400000006, 1))
| |
| 698 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 699 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417236328, -0.0827102661, 0.0710887909, -0.000400449906, -0.000118475073, -1, -0.939652264, 0.342130303, 0.000330318551, 0.342131466, 0.939652503, -0.000246354903)) | |
| 700 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 1))
| |
| 701 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 702 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417289734, 0.123802185, 0.0236358643, -0.00039244676, -9.84789949e-005, -1, -0.642691612, 0.766124129, 0.000173060107, 0.766125202, 0.642692447, -0.000359527301)) | |
| 703 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 1))
| |
| 704 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 705 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417167664, 0.186263442, -0.388122559, -0.00039144812, -0.000107479427, -1, -0.000125929379, -0.99999994, 0.000107528424, -1.00000012, 0.000124670521, 0.000385655032)) | |
| 706 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.5, 1))
| |
| 707 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 708 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417289734, 0.0655403137, -0.000379562378, -0.000396447955, -0.000106495165, -1, -0.939732671, -0.341912329, 0.000403535814, -0.341911107, 0.939731777, 3.34964789e-005)) | |
| 709 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.5, 1))
| |
| 710 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 711 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417243958, -0.113883972, 0.0671386719, -0.000390446512, -9.74958384e-005, -1, -0.341900557, 0.939735591, 3.98970442e-005, 0.939736485, 0.341901779, -0.000394819508)) | |
| 712 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 1))
| |
| 713 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 714 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417358398, 0.214199066, 0.262556076, -0.000389446213, -9.54992574e-005, -1, -0.866084218, -0.499899626, 0.00038002769, -0.499898553, 0.866083205, 0.00010908363)) | |
| 715 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.430000007, 1))
| |
| 716 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 717 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417411804, 0.384922028, 0.137599945, -0.000392445567, -9.15052951e-005, -1, -0.939733267, -0.341910571, 0.000394649367, -0.341909379, 0.939732552, 4.62137323e-005)) | |
| 718 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.400000006, 1))
| |
| 719 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.245194674, 0.25541091)) | |
| 720 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417381287, 0.203924179, 0.28465271, -0.000391446025, -9.44856729e-005, -1, -0.342136979, -0.939650536, 0.000220734597, -0.939650416, 0.342135727, 0.000330064388)) | |
| 721 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.5, 1))
| |
| 722 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 723 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.504364014, 0.209217072, -0.0522956848, 0.000259542023, -0.000131598383, -1, -0.559294462, -0.828969836, -3.93007867e-005, -0.828969181, 0.559293211, -0.000293546414)) | |
| 724 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.699999988, 1))
| |
| 725 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 726 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.504386902, 0.148723602, 0.193184853, 0.000262542424, -0.000129572334, -1, -0.96129477, -0.275523454, -0.000222236151, -0.275522202, 0.961294293, -0.000198487061)) | |
| 727 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.699999988, 1.29999995))
| |
| 728 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 729 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.504257202, -0.134284973, -0.00554275513, 0.000261541747, -0.000133565642, -1, -0.913494468, 0.40685004, -0.000298538478, 0.406851172, 0.913494885, -1.32526311e-005)) | |
| 730 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.899999976, 1))
| |
| 731 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 732 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.50428009, -0.195178986, 0.289588928, 0.000260543893, -0.000120571785, -1, -0.809087217, -0.587689757, -0.000144619378, -0.587688923, 0.809086084, -0.000254069426)) | |
| 733 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.400000006, 0.800000012))
| |
| 734 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 735 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.504295349, 0.0224113464, -0.154676437, 0.000263542519, -0.000128559201, -1, 0.970265985, -0.24203977, 0.00029243101, -0.242041096, -0.970266283, 5.95508573e-005)) | |
| 736 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.349999994, 0.400000006))
| |
| 737 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 738 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.504394531, 0.00591659546, 0.084854126, 0.000259542023, -0.000131598383, -1, -0.559294462, -0.828969836, -3.93007867e-005, -0.828969181, 0.559293211, -0.000293546414)) | |
| 739 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.699999988, 1))
| |
| 740 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 741 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.504203796, 0.717723846, 0.156257629, -0.000248541008, 0.000139553944, 1, 0.694746673, 0.719255567, 7.63125136e-005, -0.719254673, 0.694745421, -0.000279876695)) | |
| 742 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 743 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 744 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.504386902, 0.0999422073, 0.349708557, 0.000261540321, -0.000142595687, -1, 0.275510103, -0.96129775, 0.000210727507, -0.961298227, -0.275511324, -0.000217687237)) | |
| 745 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.899999976, 1))
| |
| 746 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 747 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.504226685, 0.298980713, -0.314445496, -0.000224551972, 7.15715869e-005, 1, 0.898846865, 0.43826443, 0.000175664987, -0.438263148, 0.89884603, -0.000165278834)) | |
| 748 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.600000024, 0.699999988))
| |
| 749 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 750 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.504394531, 0.00591659546, 0.084854126, 0.000259542023, -0.000131598383, -1, -0.559294462, -0.828969836, -3.93007867e-005, -0.828969181, 0.559293211, -0.000293546414)) | |
| 751 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.699999988, 1))
| |
| 752 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 753 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.504341125, 0.0844573975, -0.0917243958, 0.000261541747, -0.000133565642, -1, -0.913494468, 0.40685004, -0.000298538478, 0.406851172, 0.913494885, -1.32526311e-005)) | |
| 754 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.899999976, 1))
| |
| 755 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.20432879, 0.265627563, 0.347358912)) | |
| 756 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.496185303, -0.033338815, -0.231636047, 1.00000012, -0.000117368945, -0.000372461276, -0.000118621472, -0.999999881, 9.2011076e-005, -0.000378251745, -9.19664453e-005, -1)) | |
| 757 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 0.800000012, 1.10000002))
| |
| 758 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.20432879, 0.224761769, 0.245194495)) | |
| 759 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.496154785, 0.0279518738, 0.268928528, 1.00000012, -0.000117368945, -0.000372461276, -0.000118621472, -0.999999881, 9.2011076e-005, -0.000378251745, -9.19664453e-005, -1)) | |
| 760 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.20432879, 0.34735921, 0.418873906)) | |
| 761 | PartWeld=CFuncs.Weld.Create(m,RightArmHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.496192932, 0.140328363, 0.1820755, 1.00000012, -0.000117368945, -0.000372461276, -0.000118621472, -0.999999881, 9.2011076e-005, -0.000378251745, -9.19664453e-005, -1)) | |
| 762 | CFuncs.Mesh.Create("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 0.800000012, 1.10000002))
| |
| 763 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 764 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.504501343, 0.496192932, 0.182048798, 0.000278538238, -0.000154578782, -1, -0.997555554, 0.069876954, -0.000294424593, 0.0698782951, 0.997555673, -0.000134334594)) | |
| 765 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.300000012, 0.300000012))
| |
| 766 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 767 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.504295349, 0.526973724, 0.0621414185, -0.000248541008, 0.000139553944, 1, 0.559296191, 0.828968585, 2.65537165e-005, -0.828967929, 0.559294999, -0.000288876297)) | |
| 768 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.699999988))
| |
| 769 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 770 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.50440979, 0.132255554, 0.0659236908, 0.000260543165, -0.000124565253, -1, -0.913495183, 0.406848371, -0.000293964404, 0.406849533, 0.913495719, -5.43762144e-006)) | |
| 771 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.400000006, 0.800000012))
| |
| 772 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 773 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.504180908, 0.371734619, -0.189682007, 0.000231549464, -8.656313e-005, -1, 0.913494408, -0.40685004, 0.000252017577, -0.406851351, -0.913494885, -1.74815414e-005)) | |
| 774 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.800000012))
| |
| 775 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 776 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.504257202, -0.402713776, 0.0517959595, 0.000258544402, -0.000117591262, -1, 0.898846149, 0.438265622, 0.000186049961, 0.43826443, -0.898845375, 0.000221541355)) | |
| 777 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.300000012, 0.699999988))
| |
| 778 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 779 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.50428009, -0.0886383057, 0.0971984863, 0.000259542488, -0.000129571839, -1, -0.913495183, 0.406848371, -0.000295087229, 0.406849504, 0.91349566, -1.04182855e-005)) | |
| 780 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.699999988, 1))
| |
| 781 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 782 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.504249573, 0.213688374, -0.24924469, -0.000226548815, 9.15691489e-005, 1, 0.0698869452, 0.997555017, -7.51097541e-005, -0.997554898, 0.0698856264, -0.000238159919)) | |
| 783 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 1))
| |
| 784 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 785 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.504272461, -0.273704529, 0.0105292797, 0.000258541375, -0.000135591763, -1, -0.997555614, 0.0698769987, -0.000273149926, 0.0698783323, 0.997555673, -0.000116791285)) | |
| 786 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 1))
| |
| 787 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 788 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.504257202, 0.372005463, 0.267033577, -0.000228548219, 9.45794454e-005, 1, 0.96129477, 0.275523484, 0.000199199072, -0.275522202, 0.961294353, -0.000155482398)) | |
| 789 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 0.800000012))
| |
| 790 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 791 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.504203796, -0.302482605, -0.169031143, -0.000228548772, 9.15694254e-005, 1, -0.828965902, 0.559297919, -0.000245465635, -0.559299171, -0.828966618, -5.51506855e-005)) | |
| 792 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 1))
| |
| 793 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 794 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.504150391, -0.158781052, 0.506530762, -0.000224551128, 7.65783479e-005, 1, -0.55929637, -0.828968465, -6.53411553e-005, 0.82896781, -0.559295177, 0.000233767438)) | |
| 795 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.600000024, 0.300000012))
| |
| 796 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 797 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.504264832, 0.147003174, -0.495708466, -0.000252541358, 0.000136604111, 1, -0.587679029, 0.809093356, -0.000262336369, -0.809094489, -0.587679863, -0.000128725864)) | |
| 798 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 1))
| |
| 799 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 800 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.504196167, -0.602104187, -0.254190445, -0.000258542714, 0.000127574982, 1, -0.96129477, -0.275523454, -0.000218941539, 0.275522202, -0.961294293, 0.000195465007)) | |
| 801 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.5, 1))
| |
| 802 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 803 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.50428009, -0.195178986, 0.289588928, 0.000260543893, -0.000120571785, -1, -0.809087217, -0.587689757, -0.000144619378, -0.587688923, 0.809086084, -0.000254069426)) | |
| 804 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.400000006, 0.800000012))
| |
| 805 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 806 | WedgeWeld=CFuncs.Weld.Create(m,RightArmHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.504386902, 0.148723602, 0.193184853, 0.000262542424, -0.000129572334, -1, -0.96129477, -0.275523454, -0.000222236151, -0.275522202, 0.961294293, -0.000198487061)) | |
| 807 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.0500000007, 0.699999988, 1.29999995))
| |
| 808 | LeftLegHandle=CFuncs.Part.Create(m,Enum.Material.Plastic,0,1,"Medium stone grey","LeftLegHandle",Vector3.new(1.0117017, 2.02340055, 1.01170254)) | |
| 809 | LeftLegHandleWeld=CFuncs.Weld.Create(m,Character["Left Leg"],LeftLegHandle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000335693359, -0.000207066536, 0.000152587891, 1, 6.48181754e-007, 2.88981391e-006, 6.48181754e-007, 0.999999881, -4.58399541e-010, 2.88981391e-006, -4.58399541e-010, 1)) | |
| 810 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Block",Vector3.new(1.03186011, 2.02285647, 1.03186023)) | |
| 811 | BlockWeld=CFuncs.Weld.Create(m,LeftLegHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0191879272, 0.0484238863, -0.00722503662, 1, -0.000117227413, -0.000189372367, 0.000118527452, 0.99999994, -5.28527162e-005, 0.000195158253, 5.28295895e-005, 1)) | |
| 812 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.735583544, 0.234978229, 0.582337022)) | |
| 813 | BlockWeld=CFuncs.Weld.Create(m,LeftLegHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0192871094, 0.937266469, 0.242759705, 1, -0.000117227413, -0.000189372367, 0.000118527452, 0.99999994, -5.28527162e-005, 0.000195158253, 5.28295895e-005, 1)) | |
| 814 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(1.04207659, 0.38822481, 1.04207695)) | |
| 815 | BlockWeld=CFuncs.Weld.Create(m,LeftLegHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0193328857, 0.866779923, -0.00755310059, 1, -0.000117227413, -0.000189372367, 0.000118527452, 0.99999994, -5.28527162e-005, 0.000195158253, 5.28295895e-005, 1)) | |
| 816 | RightLegHandle=CFuncs.Part.Create(m,Enum.Material.Plastic,0,1,"Medium stone grey","RightLegHandle",Vector3.new(1.0117017, 2.02340055, 1.01170254)) | |
| 817 | RightLegHandleWeld=CFuncs.Weld.Create(m,Character["Right Leg"],RightLegHandle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000335693359, -0.000207066536, 0.000152587891, 1, 6.48181754e-007, 2.88981391e-006, 6.48181754e-007, 0.999999881, -4.58399541e-010, 2.88981391e-006, -4.58399541e-010, 1)) | |
| 818 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Block",Vector3.new(1.03186011, 2.02285647, 1.03186023)) | |
| 819 | BlockWeld=CFuncs.Weld.Create(m,RightLegHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0191879272, 0.0484238863, -0.00722503662, 1, -0.000117227413, -0.000189372367, 0.000118527452, 0.99999994, -5.28527162e-005, 0.000195158253, 5.28295895e-005, 1)) | |
| 820 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.735583544, 0.234978229, 0.582337022)) | |
| 821 | BlockWeld=CFuncs.Weld.Create(m,RightLegHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0192871094, 0.937266469, 0.242759705, 1, -0.000117227413, -0.000189372367, 0.000118527452, 0.99999994, -5.28527162e-005, 0.000195158253, 5.28295895e-005, 1)) | |
| 822 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(1.04207659, 0.38822481, 1.04207695)) | |
| 823 | BlockWeld=CFuncs.Weld.Create(m,RightLegHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0193328857, 0.866779923, -0.00755310059, 1, -0.000117227413, -0.000189372367, 0.000118527452, 0.99999994, -5.28527162e-005, 0.000195158253, 5.28295895e-005, 1)) | |
| 824 | TorsoHandle=CFuncs.Part.Create(m,Enum.Material.Plastic,0,1,"Medium stone grey","TorsoHandle",Vector3.new(2.02340341, 2.02340055, 1.01170254)) | |
| 825 | TorsoHandleWeld=CFuncs.Weld.Create(m,Character["Torso"],TorsoHandle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(7.2479248e-005, 0.000236198306, 0.000152587891, 1, 6.4818812e-007, 2.88982847e-006, 6.4818812e-007, 0.999999881, -4.57326621e-010, 2.88982847e-006, -4.57326621e-010, 1)) | |
| 826 | Part=CFuncs.Part.Create(m,Enum.Material.Plastic,0,0,"Dark indigo","Part",Vector3.new(0.25541088, 0.75601697, 0.633419156)) | |
| 827 | Part.Shape = "Cylinder" | |
| 828 | PartWeld=CFuncs.Weld.Create(m,TorsoHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.43221283, -0.279815674, -0.0484636724, -0.000242504699, 0.00010346956, -1, -1, 8.66204355e-005, 0.000236734166, 8.79392246e-005, 0.999999881, 0.000103448117)) | |
| 829 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 830 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.106277466, 0.437164307, -0.523692966, 1, -0.000147648156, -3.67818939e-005, 4.25642938e-005, 1.86005291e-005, 1, -0.000148943203, -0.999999881, 1.86068664e-005)) | |
| 831 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 832 | Chain=CFuncs.Part.Create(m,Enum.Material.Ice,0,0,"Medium stone grey","Chain",Vector3.new(1.02164352, 1.02164447, 2.04328704)) | |
| 833 | ChainWeld=CFuncs.Weld.Create(m,TorsoHandle,Chain,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0293579102, 0.0640106201, -1.84176445, 7.15616552e-005, -1.86178404e-005, -1, 0.866100311, 0.49987179, 5.76783059e-005, 0.499870747, -0.866099358, 5.47864438e-005)) | |
| 834 | CFuncs.Mesh.Create("SpecialMesh",Chain,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=29750668",Vector3.new(0, 0, 0),Vector3.new(1.22597265, 1.02164447, 1.02164352))
| |
| 835 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(1.03186011, 0.766233265, 0.204328775)) | |
| 836 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0163879395, -1.57710409, -0.778968811, -0.00032053265, 5.74369406e-005, -1, -0.173681721, -0.984802067, -1.89667662e-006, -0.984802067, 0.17368035, 0.000319945102)) | |
| 837 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(1.23618877, 1.14424181, 0.204328775)) | |
| 838 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.727314, 0.435474396, 0.0424423218, -0.000128910935, -0.939656138, 0.34212032, -1, 0.000150963664, 3.55795091e-005, -9.09497903e-005, -0.342120141, -0.939656258)) | |
| 839 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.623202622, 0.326926231, 0.204328775)) | |
| 840 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.56653595, -2.16213417, -0.778991699, 0.029844597, 0.171066761, -0.984807372, -0.171098381, -0.969830513, -0.173651263, -0.984802127, 0.173680142, 0.000319354323)) | |
| 841 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.20432879, 0.899047136, 1.03186023)) | |
| 842 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.098110199, 0.144485474, -0.0379180908, 0.865963578, -0.500106037, -0.000136621151, 0.500107229, 0.865964115, -0.000138875926, 0.000193541375, 5.19355781e-005, 1)) | |
| 843 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 844 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.657678604, 0.528282166, -0.0202674866, 0.5001086, 0.86596328, -0.000128862215, -0.000212473416, -2.94381189e-005, -1, -0.865962803, 0.500107348, 0.00016426653)) | |
| 845 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 846 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 847 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.427041054, 0.528305054, -0.141517639, 0.173775822, 0.984785497, -7.54407811e-005, -0.000217549677, -3.92366128e-005, -1, -0.984785318, 0.173774511, 0.000201729519)) | |
| 848 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 849 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 850 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.651926041, 0.528335571, -0.153358459, 0.5001086, 0.86596328, -0.000128862215, -0.000212473416, -2.94381189e-005, -1, -0.865962803, 0.500107348, 0.00016426653)) | |
| 851 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 852 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 853 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.248695374, 0.528419495, 0.43561554, -0.499885619, 0.866090834, 5.09700003e-005, -0.000208811485, -5.83334549e-005, -1, -0.866091549, -0.499886632, 0.00020500453)) | |
| 854 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 855 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 856 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.19166483, 0.528396606, 0.409698486, 0.000130843444, 0.999999881, -5.04387062e-005, -0.000213440624, -5.04108903e-005, -1, -1, 0.000129550681, 0.000207654404)) | |
| 857 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 858 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 859 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.172019958, 0.528419495, 0.400695801, -0.34189558, 0.93973738, 2.64931423e-005, -0.000211181527, -4.65366356e-005, -1, -0.939738095, -0.341896743, 0.000208934856)) | |
| 860 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 861 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 862 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.5366745, 0.528266907, -0.546220779, 0.965893507, -0.258939236, -0.000170726416, -0.000192740612, -3.80698657e-005, -1, 0.258940369, 0.965893626, -8.51838486e-005)) | |
| 863 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 864 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 865 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.295816422, 0.528526306, 0.371753693, -0.34189564, 0.93973738, 1.64795474e-005, -0.000210413418, -5.69129188e-005, -1, -0.939738035, -0.341896802, 0.000211760693)) | |
| 866 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 867 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 868 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00170135498, 0.518218994, 0.416286469, -0.17351757, 0.984830379, -1.57270915e-005, -0.000217322668, -5.32405102e-005, -1, -0.984830797, -0.173518866, 0.000217572364)) | |
| 869 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 0.400000006, 0.300000012))
| |
| 870 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Royal purple","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 871 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.526626587, -0.431297302, 0.38895607, 0.866099358, 0.499873042, -4.30540967e-005, 4.84240591e-005, 1.22418305e-005, 1, 0.499872059, -0.866098642, -1.07134001e-005)) | |
| 872 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(1.14999998, 1, 1.14999998))
| |
| 873 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 874 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.275513649, 0.528419495, 0.445476532, -0.258691281, 0.965959668, -1.18595199e-006, -0.000211375707, -5.62872483e-005, -1, -0.965960085, -0.258692294, 0.000213158826)) | |
| 875 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 876 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 877 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.202257156, 0.528404236, 0.290966034, 0.0872854814, 0.996183395, -6.45678447e-005, -0.000215602195, -4.64299337e-005, -1, -0.996183395, 0.0872841552, 0.000204969037)) | |
| 878 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 879 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 880 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.623466492, 0.528297424, -0.57352066, 0.996183932, -0.0872778222, -0.000195688976, -0.000205553661, -3.80696038e-005, -1, 0.0872791559, 0.996183932, -5.53611098e-005)) | |
| 881 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 882 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 883 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.363153458, 0.528305054, -0.145610809, 0.422732919, 0.906254828, -0.000115903182, -0.000214092637, -3.07218725e-005, -1, -0.906254411, 0.422731817, 0.000175797133)) | |
| 884 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 885 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 886 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0625190735, 0.528297424, 0.0266113281, 0.258942932, 0.965892911, -9.21843312e-005, -0.000217211928, -3.87567088e-005, -1, -0.965892673, 0.25894174, 0.000194184948)) | |
| 887 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 888 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 889 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.347141266, 0.52822876, -0.716051102, 0.939734519, 0.341906399, -0.000193244487, -0.000200212031, -3.07962982e-005, -1, -0.341905236, 0.939733922, 3.75364907e-005)) | |
| 890 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 891 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 892 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.111335754, 0.528358459, -0.594998002, 1, -0.000121660523, -0.000188783888, -0.000194567634, -3.35973964e-005, -1, 0.000122954501, 0.999999881, -3.36212834e-005)) | |
| 893 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 894 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 895 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.131408691, 0.528366089, 0.644223213, -0.965957522, -0.258702487, 0.000185339974, -0.000190528051, -2.65970757e-005, -1, 0.258701473, -0.965956926, -2.21023874e-005)) | |
| 896 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 897 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 898 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0805473328, 0.528343201, -0.546169281, 0.866086841, 0.499894798, -0.000183065204, -0.000200309616, -2.9176259e-005, -1, -0.499893695, 0.866086125, 7.19745585e-005)) | |
| 899 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 900 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 901 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.540473938, 0.528251648, -0.595039666, 1, -0.000121660523, -0.000188783888, -0.000194567634, -3.35973964e-005, -1, 0.000122954501, 0.999999881, -3.36212834e-005)) | |
| 902 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 903 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 904 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.283384323, 0.528305054, -0.127037048, 0.5001086, 0.86596334, -0.000127848907, -0.000212065788, -2.85033857e-005, -1, -0.865962803, 0.500107348, 0.000164380996)) | |
| 905 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 906 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 907 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.305492401, 0.518074036, -0.594986677, 1, -0.000121660523, -0.000183783821, -0.00018956748, -3.25848741e-005, -1, 0.000122954574, 0.999999881, -3.26081499e-005)) | |
| 908 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 0.400000006, 0.300000012))
| |
| 909 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 910 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0871238708, 0.528366089, -0.538367748, 0.996183932, -0.0872778222, -0.000184688106, -0.000194249747, -3.50912269e-005, -1, 0.0872791559, 0.996183932, -5.14074964e-005)) | |
| 911 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 912 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 913 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.269329071, 0.528312683, -0.122524261, 0.766123056, 0.642694652, -0.000173595123, -0.00020785557, -2.92202603e-005, -1, -0.642693877, 0.766122162, 0.000107486143)) | |
| 914 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 915 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 916 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.353628159, 0.528427124, 0.380271912, 0.0872854814, 0.996183395, -6.6594388e-005, -0.000213618565, -4.86380522e-005, -1, -0.996183395, 0.0872841552, 0.000202800249)) | |
| 917 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 918 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 919 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.341537476, 0.528381348, -0.0508613586, 0.573678315, 0.819081426, -0.000141450611, -0.000211792678, -2.84036378e-005, -1, -0.81908071, 0.573677182, 0.000152446417)) | |
| 920 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 921 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 922 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.172019958, 0.528419495, 0.400695801, -0.34189558, 0.93973738, 2.64931423e-005, -0.000211181527, -4.65366356e-005, -1, -0.939738095, -0.341896743, 0.000208934856)) | |
| 923 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 924 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 925 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.594734192, 0.52822113, -0.115596771, 0.5001086, 0.86596328, -0.000128862215, -0.000212473416, -2.94381189e-005, -1, -0.865962803, 0.500107348, 0.00016426653)) | |
| 926 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 927 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 928 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.298691183, 0.528419495, 0.358577728, 0.000130843444, 0.999999881, -5.04387062e-005, -0.000213440624, -5.04108903e-005, -1, -1, 0.000129550681, 0.000207654404)) | |
| 929 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 930 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.20432879, 0.296276867, 0.204328775)) | |
| 931 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.42980957, -2.26263809, -0.721710205, 0.000102296312, -5.74113947e-005, 1, 0.173456281, -0.984841287, -7.32817862e-005, 0.984841645, 0.173457533, -8.50954239e-005)) | |
| 932 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(1.23618877, 1.14424181, 0.204328775)) | |
| 933 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.72732544, -0.484031677, 0.0424575806, -0.000128910935, -0.939656138, 0.34212032, -1, 0.000150963664, 3.55795091e-005, -9.09497903e-005, -0.342120141, -0.939656258)) | |
| 934 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Block",Vector3.new(0.429090351, 0.20432891, 1.03186023)) | |
| 935 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.916976035, -0.211868286, -0.527198792, 0.00013084439, 0.999999881, -3.7444941e-005, 0.000215438544, 3.74168667e-005, 1, 1, -0.000129550681, -0.000209654012)) | |
| 936 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.300000012, 1))
| |
| 937 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.20432879, 0.296276867, 0.204328775)) | |
| 938 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.430038452, -2.27284431, -0.780128479, -0.00032053265, 5.74369406e-005, -1, -0.173681721, -0.984802067, -1.89667662e-006, -0.984802067, 0.17368035, 0.000319945102)) | |
| 939 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.20432879, 0.408657789, 0.21454522)) | |
| 940 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.270210266, -1.12802124, -0.0889282227, 0.13309826, -0.642770529, 0.754408181, 0.111850806, 0.766058624, 0.632965088, -0.984771311, 0.000133351612, 0.173849806)) | |
| 941 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.20432879, 0.20432891, 0.306493193)) | |
| 942 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.199523926, -1.26028442, -0.0317230225, -0.603908837, -0.341920435, 0.719989359, -0.219676614, 0.939728916, 0.262014866, -0.766183019, 6.82739847e-005, -0.64262253)) | |
| 943 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Block",Vector3.new(0.429090351, 0.20432891, 1.03186023)) | |
| 944 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.917022169, 0.207015991, -0.527252197, 0.00013084439, 0.999999881, -3.7444941e-005, 0.000215438544, 3.74168667e-005, 1, 1, -0.000129550681, -0.000209654012)) | |
| 945 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.300000012, 1))
| |
| 946 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.653851986, 0.234978244, 0.204328775)) | |
| 947 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.197502136, -2.03866005, -0.720588684, 0.000102296188, -5.83948749e-005, 1, 0.173456281, -0.984841347, -7.42503471e-005, 0.984841645, 0.173457503, -8.49247153e-005)) | |
| 948 | Block=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 949 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.306386948, 0.528373718, -0.101051331, 0.573678315, 0.819081426, -0.000141450611, -0.000211792678, -2.84036378e-005, -1, -0.81908071, 0.573677182, 0.000152446417)) | |
| 950 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.400000006, 0.200000003, 0.100000001))
| |
| 951 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(1.03186011, 0.766233265, 0.204328775)) | |
| 952 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0160751343, -1.56690121, -0.720497131, 0.000102296312, -5.74113947e-005, 1, 0.173456281, -0.984841287, -7.32817862e-005, 0.984841645, 0.173457533, -8.50954239e-005)) | |
| 953 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.623202622, 0.326926231, 0.204328775)) | |
| 954 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.564483643, -2.15213394, -0.720565796, 0.0302218646, -0.171073586, 0.984794796, 0.170802951, -0.969869256, -0.173721626, 0.984841704, 0.17345725, -8.56973347e-005)) | |
| 955 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Medium stone grey","Block",Vector3.new(0.429090351, 0.20432891, 1.03186023)) | |
| 956 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.19311714, 0.387729645, 0.0229797363, -0.34189558, 0.93973738, 3.24834182e-005, -0.939738095, -0.341896743, 0.000193244865, 0.000198485068, 3.55429875e-005, 1)) | |
| 957 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.300000012, 1))
| |
| 958 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.653851986, 0.234978244, 0.204328775)) | |
| 959 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.197738647, -2.04886627, -0.779018402, -0.000320532621, 5.84204208e-005, -1, -0.173681706, -0.984802127, -2.86521299e-006, -0.984802067, 0.17368035, 0.000320115883)) | |
| 960 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.20432879, 0.20432891, 0.306493193)) | |
| 961 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.157455444, -1.24506378, 0.0211410522, -0.604127288, 0.342061698, -0.719738901, 0.220016405, 0.939677596, 0.261914074, 0.765913248, -0.000124911487, -0.642943919)) | |
| 962 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.20432879, 0.20432891, 0.306493193)) | |
| 963 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0385856628, -1.24954796, 0.00178527832, -0.906255782, 0.422728926, 0.000155452013, 0.422729999, 0.906256139, -0.000111849964, -0.000193941232, -3.56497767e-005, -1)) | |
| 964 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.357575327, 0.623203099, 0.204328775)) | |
| 965 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.31264877, 0.0659294128, 0.320365906, 0.342142045, 0.936079502, 0.0818242952, -0.939648449, 0.340835601, 0.0298496094, 5.86125861e-005, -0.0870988518, 0.996199906)) | |
| 966 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.418873847, 0.837748349, 0.204328775)) | |
| 967 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.803085327, 1.46542358, 0.320526123, 1, -0.00010365247, -0.000185784273, 0.000121238889, 0.99619931, 0.0871028528, 0.000181693526, -0.0871028602, 0.996199489)) | |
| 968 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 969 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.15074539, 0.22561264, 0.3204422, 0.422734737, 0.9028126, 0.0789060444, -0.906253576, 0.421122849, 0.0368615165, 5.55565639e-005, -0.0870915055, 0.996200502)) | |
| 970 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.306493163, 0.510822177, 0.204328775)) | |
| 971 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.48254204, 0.514205933, 0.320602417, 0.573467374, -0.816104829, -0.0714554712, 0.81922859, 0.571302295, 0.0498023666, 0.000184351404, -0.0870983824, 0.996199846)) | |
| 972 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.306493163, 0.510822177, 0.204328775)) | |
| 973 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.4988327, 0.490982056, 0.320457458, 0.573678732, 0.815971553, 0.0713104978, -0.81908077, 0.571493149, 0.0500086695, 5.78284853e-005, -0.0870979279, 0.996200025)) | |
| 974 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 975 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.08162117, 0.373813629, 0.320381165, 0.422734737, 0.9028126, 0.0789060444, -0.906253576, 0.421122849, 0.0368615165, 5.55565639e-005, -0.0870915055, 0.996200502)) | |
| 976 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.316709608, 0.378008485, 0.204328775)) | |
| 977 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.05677414, 1.37703896, 0.320663452, 0.93965137, -0.340822607, -0.029903261, 0.34213379, 0.93608427, 0.0818045363, 0.000116775089, -0.0870986506, 0.996199846)) | |
| 978 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.418873847, 0.837748349, 0.204328775)) | |
| 979 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.831409454, 1.46547031, 0.320373535, 1, -0.000114656985, -6.47828638e-005, 0.000121656121, 0.99619925, 0.0871028751, 6.01945867e-005, -0.0871028751, 0.996199548)) | |
| 980 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 981 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.14737129, 0.232673645, 0.320594788, 0.422497094, -0.902912974, -0.0790129155, 0.906364381, 0.420907468, 0.0366332717, 0.000186115387, -0.0870919153, 0.996200383)) | |
| 982 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 983 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.49298096, -1.31683159, -0.930618286, 0.118712634, 0.671592176, 0.731349945, -0.96218729, -0.104052804, 0.251726419, 0.245159224, -0.733578086, 0.633846581)) | |
| 984 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(2.04873276, 0.929574251, 2.34379125))
| |
| 985 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 986 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0427017212, -2.4785614, -0.0754623413, -7.91625207e-005, -0.3419514, -0.93971771, -0.000342930667, -0.939717531, 0.341951519, -1, 0.000348038942, -4.86533972e-005)) | |
| 987 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.29999995, 2))
| |
| 988 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 989 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0426177979, -2.47837067, 0.690757751, -7.91625207e-005, -0.3419514, -0.93971771, -0.000342930667, -0.939717531, 0.341951519, -1, 0.000348038942, -4.86533972e-005)) | |
| 990 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.29999995, 2))
| |
| 991 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 992 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.042755127, -2.47822952, -0.047203064, 0.000202162293, 0.34195137, 0.93971765, -9.89315886e-005, -0.939717531, 0.341951489, 1, -0.000160813332, -0.000150366162)) | |
| 993 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.29999995, 2))
| |
| 994 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 995 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.733070374, -0.896598816, 1.82460499, -0.431915879, 0.0761658996, -0.898694754, -0.901586056, -0.0633394867, 0.427933335, -0.0243270826, 0.995081306, 0.0960273147)) | |
| 996 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.897728205, 0.36627984))
| |
| 997 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 998 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0426940918, -2.47821045, 0.719017029, 0.000202162293, 0.34195137, 0.93971765, -9.89315886e-005, -0.939717531, 0.341951489, 1, -0.000160813332, -0.000150366162)) | |
| 999 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.29999995, 2))
| |
| 1000 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1001 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.653182983, 0.869350433, 1.44331264, 0.344746232, -0.0818130225, 0.935125887, 0.938380778, 0.0558550358, -0.341054887, -0.0243269037, 0.995081365, 0.0960274413)) | |
| 1002 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.106863573, 4.09860706))
| |
| 1003 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1004 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.733078003, -0.896640778, -1.37849998, 0.431915879, -0.0761658996, 0.898694754, -0.901586056, -0.0633393973, 0.427933365, 0.0243269932, -0.995081306, -0.0960272551)) | |
| 1005 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.897728205, 4.00051117))
| |
| 1006 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1007 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.835861206, 1.76192474, -0.117393494, -0.869637787, -0.168936968, -0.463886231, -0.070332408, 0.972440481, -0.222290292, 0.488654792, -0.160685822, -0.857552707)) | |
| 1008 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 5.98837423, 0.861329198))
| |
| 1009 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1010 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.80958748, -1.02048492, 0.143783569, 0.52525717, -0.650066257, -0.549103439, -0.106815293, -0.690556228, 0.715347409, -0.844213188, -0.317089707, -0.43216148)) | |
| 1011 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(2.19117522, 2.67499804, 0.448923111))
| |
| 1012 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1013 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.36268234, 0.569274902, 0.499229431, -0.166665018, 0.946187198, -0.277403265, -0.884956539, -0.267610669, -0.381101966, -0.434827268, 0.181973174, 0.881934762)) | |
| 1014 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.917938411, 0.39670372))
| |
| 1015 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1016 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.36268616, 0.569229126, -0.228744507, 0.166665018, -0.946187198, 0.277403265, -0.884956717, -0.267610669, -0.381101876, 0.434827119, -0.181973204, -0.881934762)) | |
| 1017 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.917938411, 2.25125289))
| |
| 1018 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1019 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.48622894, -1.259758, -0.944999695, 0.118250139, -0.671621263, -0.731396198, 0.962263584, -0.104288563, 0.251347929, -0.245084226, -0.733517885, 0.6339432)) | |
| 1020 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(2.04873276, 0.929574251, 2.34379125))
| |
| 1021 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1022 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.81331825, -1.02017975, -0.0510482788, -0.52525717, 0.650066257, 0.549103439, -0.10681539, -0.690556228, 0.71534735, 0.844213068, 0.317089587, 0.43216157)) | |
| 1023 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(2.19117522, 2.67499804, 0.520646214))
| |
| 1024 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 1.22359776, 0.297242999)) | |
| 1025 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.835800171, 1.76186562, 0.353996277, 0.869637787, 0.168936998, 0.463886261, -0.0703323781, 0.972440481, -0.222290382, -0.488654852, 0.160685912, 0.857552588)) | |
| 1026 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1027 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48616791, -1.25975037, 1.22211456, -0.118250139, 0.671621263, 0.731396198, 0.962263525, -0.104288623, 0.251347959, 0.245084256, 0.733517885, -0.633943081)) | |
| 1028 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(2.04873276, 0.929574251, 0.368614644))
| |
| 1029 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.216975361, 0.226115584, 0.204328775)) | |
| 1030 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.289352417, 0.788764954, 0.837745667, -0.106263191, -0.660668671, 0.743118048, -0.693411529, -0.4864057, -0.531596839, 0.712663114, -0.5717749, -0.406424135)) | |
| 1031 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1032 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.289306641, 0.788833618, -0.655715942, 0.106263191, 0.660668671, -0.743118048, -0.69341141, -0.48640576, -0.531596899, -0.712663233, 0.57177484, 0.406424046)) | |
| 1033 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.06189334, 1.10662568, 0.782044649))
| |
| 1034 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1035 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.17351532, -0.908821106, -0.59318924, 0.282709837, -0.296140879, 0.912347913, 0.642017603, 0.76509726, 0.0494060405, -0.712663114, 0.5717749, 0.406424046)) | |
| 1036 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.54893827, 0.498059273, 0.170772836))
| |
| 1037 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1038 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.173492432, -0.908805847, 0.804264069, -0.282709837, 0.296140879, -0.912347913, 0.642017543, 0.765097439, 0.0494061261, 0.712663293, -0.571774781, -0.406424016)) | |
| 1039 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.54893827, 0.498059273, 1.89491391))
| |
| 1040 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1041 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.589288712, -0.913322449, -0.416030884, -0.380909294, -0.805445433, 0.454053432, 0.00865703914, 0.487948269, 0.872829616, -0.924572051, 0.336398393, -0.178896636)) | |
| 1042 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.94255471, 0.851256251, 1.2318716))
| |
| 1043 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1044 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.589271545, -0.913383484, 0.668037415, 0.380909294, 0.805445433, -0.454053432, 0.00865696091, 0.487948328, 0.872829616, 0.924572051, -0.336398363, 0.178896725)) | |
| 1045 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.94255471, 0.851256251, 1.23506224))
| |
| 1046 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.387691706, 0.391955018, 0.259938806)) | |
| 1047 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.794935226, 0.492752075, 0.664306641, -0.368865371, -0.907897532, 0.199149236, 0.095420517, -0.250116348, -0.963501751, 0.92457217, -0.336398184, 0.178896695)) | |
| 1048 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.387691706, 0.391955018, 0.244126722)) | |
| 1049 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.794984818, 0.492767334, -0.412269592, 0.368865371, 0.907897532, -0.199149236, 0.0954206139, -0.250116378, -0.963501751, -0.924572051, 0.336398125, -0.178896755)) | |
| 1050 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.216279984, 0.268463403, 0.211804286)) | |
| 1051 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.133033752, 0.894514084, -0.629932404, -0.593129337, 0.35604313, -0.722101808, -0.618662477, -0.775523007, 0.125781745, -0.515222788, 0.521342099, 0.68025583)) | |
| 1052 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1053 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.133010864, 0.8944664, 0.814159393, 0.593129218, -0.35604316, 0.722101808, -0.618662477, -0.775522888, 0.125781819, 0.515222609, -0.521342218, -0.68025583)) | |
| 1054 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.05849016, 1.31387877, 0.766175389))
| |
| 1055 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1056 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0940704346, -1.10329437, -0.166370392, -0.593506873, 0.384419501, -0.707086444, -0.00224121055, 0.877762198, 0.479091406, 0.804825783, 0.285928816, -0.520096302)) | |
| 1057 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.10899508, 0.464785218, 0.247388422))
| |
| 1058 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1059 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0940475464, -1.10327911, 0.337337494, 0.593506932, -0.384419501, 0.707086384, -0.00224115117, 0.877762198, 0.479091376, -0.804825783, -0.285928756, 0.520096362)) | |
| 1060 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.10899508, 0.464785218, 1.42616677))
| |
| 1061 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1062 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.581382751, -0.872062683, -0.449806213, -0.389106125, 0.795986891, -0.463683754, -0.0806557238, 0.471977741, 0.87791276, 0.917655289, 0.379000992, -0.119443215)) | |
| 1063 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.77654254, 0.939429104, 1.01966178))
| |
| 1064 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1065 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.581329346, -0.872131348, 0.673458099, 0.389106125, -0.795986891, 0.463683754, -0.0806556195, 0.471977741, 0.8779127, -0.917655289, -0.379000962, 0.119443297)) | |
| 1066 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.77654254, 0.939429104, 1.16938007))
| |
| 1067 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.256694704, 0.345953107, 0.217528462)) | |
| 1068 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.28805542, 0.984390259, 0.553504944, 0.349464387, -0.626595259, 0.696601748, -0.58984983, -0.724786162, -0.356039286, 0.727977872, -0.286466926, -0.622882009)) | |
| 1069 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.256694704, 0.345953107, 0.283513159)) | |
| 1070 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.288063049, 0.984405518, -0.303031921, -0.349464387, 0.626595259, -0.696601748, -0.58984977, -0.724786162, -0.356039315, -0.727977931, 0.286466867, 0.622882068)) | |
| 1071 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1072 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.30206108, 0.210021973, 0.0918807983, 0.213602901, -0.93970108, -0.267085344, -0.239669487, 0.214633793, -0.946833491, 0.947065353, 0.26625973, -0.179365799)) | |
| 1073 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.610000014, 0.610000014, 0.819999993))
| |
| 1074 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1075 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.20340919, 0.209495544, 0.0651016235, -0.213602901, 0.93970108, 0.267085344, -0.239669427, 0.214633867, -0.946833551, -0.947065353, -0.2662597, 0.179365695)) | |
| 1076 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.56573594, 0.610362649, 0.730387509))
| |
| 1077 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1078 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.17146301, -0.0792198181, 0.34438324, -0.0869988501, 0.750661254, 0.654933631, -0.987280965, -0.152786821, 0.0439651422, 0.133071706, -0.642778158, 0.754406452)) | |
| 1079 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.69480586, 1.4974947, 0.274708271))
| |
| 1080 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1081 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.17146301, -0.0792541504, -0.242202759, 0.0869988501, -0.750661254, -0.654933631, -0.987280846, -0.152786896, 0.0439652018, -0.133071795, 0.642778158, -0.754406452)) | |
| 1082 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.69480586, 1.4974947, 0.725284159))
| |
| 1083 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1084 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.160186768, -0.180229187, 1.31716919, 0.320789039, 0.323206872, -0.890296996, 0.921328843, 0.111509696, 0.372455925, 0.219654351, -0.939735472, -0.262007415)) | |
| 1085 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.61094129, 1.60385787, 0.442908227))
| |
| 1086 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1087 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.160263062, -0.180236816, -1.21509933, -0.320789039, -0.323206872, 0.890296996, 0.921328843, 0.111509636, 0.372455895, -0.219654307, 0.939735532, 0.262007475)) | |
| 1088 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.61094129, 1.60385787, 0.557083368))
| |
| 1089 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1090 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.303962708, 1.05537224, -0.499168396, -0.100719966, -0.624946356, 0.774142683, 0.593835354, -0.662059665, -0.457200617, 0.798257649, 0.413665026, 0.437802613)) | |
| 1091 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.82474399, 0.730152011, 1.01456404))
| |
| 1092 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1093 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.303970337, 1.05539703, 0.672561646, 0.100719966, 0.624946356, -0.774142683, 0.593835413, -0.662059665, -0.457200557, -0.79825747, -0.413664997, -0.437802583)) | |
| 1094 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.82474399, 0.730152011, 0.683287978))
| |
| 1095 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1096 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.303977966, -0.356681824, -1.00946808, 0.100720018, 0.624946415, -0.774142563, -0.988609254, 0.150328442, -0.00727142533, 0.111836076, 0.766056776, 0.632969797)) | |
| 1097 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.82474399, 1.2396872, 0.839884996))
| |
| 1098 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.372847736, 0.253303885, 0.23704578)) | |
| 1099 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.304000854, -0.356693268, 1.21382141, -0.100720018, -0.624946415, 0.774142563, -0.988609254, 0.150328502, -0.00727137411, -0.11183615, -0.766056776, -0.632969797)) | |
| 1100 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1101 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.777759552, 0.625682831, 0.443702698, 0.590519965, -0.394368023, -0.704102337, -0.057478819, -0.890805781, 0.450734109, -0.804973543, -0.225696489, -0.548706412)) | |
| 1102 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(2.30175447, 0.368513346, 1.65737736))
| |
| 1103 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1104 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.777755737, 0.625671387, -0.125808716, -0.590519965, 0.394368023, 0.704102337, -0.0574789084, -0.8908059, 0.450734019, 0.804973543, 0.2256964, 0.548706472)) | |
| 1105 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(2.30175447, 0.368513346, 1.45403373))
| |
| 1106 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1107 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.22268677, 0.302383423, 0.0618515015, -0.0160375927, -0.762472272, -0.646822155, -0.523417056, -0.544784069, 0.655167878, -0.851925731, 0.349065065, -0.390353948)) | |
| 1108 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.995311439, 0.774772108, 0.529077947))
| |
| 1109 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1110 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.22258759, 0.302444458, 0.0568466187, 0.0160375927, 0.762472272, 0.646822155, -0.523417115, -0.544784069, 0.655167818, 0.851925671, -0.349065125, 0.390354007)) | |
| 1111 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.995311439, 0.774772108, 0.632228613))
| |
| 1112 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1113 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.18283844, -0.260612488, 0.20174408, -0.274878114, -0.93256408, -0.234024808, -0.877319396, 0.143687353, 0.457886159, -0.393386394, 0.331176847, -0.857655346)) | |
| 1114 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.52094769, 0.718637109, 0.912246406))
| |
| 1115 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1116 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.18282318, -0.260601044, -0.0488891602, 0.274878114, 0.93256408, 0.234024808, -0.877319455, 0.143687382, 0.45788607, 0.393386245, -0.331176728, 0.857655287)) | |
| 1117 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.52094769, 0.718637109, 0.583401918))
| |
| 1118 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1119 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.365692139, 0.812561035, 0.923587799, -0.0180520453, -0.635292768, 0.772060573, -0.816389382, -0.436429083, -0.378209621, 0.577219725, -0.637128532, -0.510764539)) | |
| 1120 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.92601693, 0.665026605, 0.746825218))
| |
| 1121 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1122 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.142150879, -0.927974701, 0.949180603, -0.393373668, 0.331174374, -0.857661068, 0.715592921, 0.695981979, -0.05946666, 0.577220917, -0.637128353, -0.510765314)) | |
| 1123 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.49563551, 0.795872152, 0.496771097))
| |
| 1124 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1125 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.14214325, -0.92798233, -0.83659935, 0.393373668, -0.331174374, 0.857661068, 0.715592921, 0.69598192, -0.0594666786, -0.577220917, 0.637128353, 0.510765314)) | |
| 1126 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.49563551, 0.795872152, 0.605472267))
| |
| 1127 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1128 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.365684509, 0.812530518, -0.811040878, 0.0180520453, 0.635292768, -0.772060573, -0.816389322, -0.436429173, -0.378209651, -0.577219665, 0.637128472, 0.51076448)) | |
| 1129 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.92601693, 0.665026605, 0.355418116))
| |
| 1130 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1131 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.1647644, -0.25113678, 0.241355896, 0.394208491, 0.845286489, -0.36068055, 0.794160008, -0.115810141, 0.596571803, 0.462503612, -0.52161175, -0.716946065)) | |
| 1132 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.47358465, 0.76854372, 0.639793634))
| |
| 1133 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1134 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.16476631, -0.251144409, -0.027923584, -0.394208491, -0.845286489, 0.36068058, 0.794160068, -0.115810178, 0.596571803, -0.462503552, 0.52161175, 0.716946125)) | |
| 1135 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.47358465, 0.76854372, 1.44932234))
| |
| 1136 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1137 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.18397713, -0.0475769043, 0.0525474548, 0.477965951, 0.827753663, -0.293892175, -0.746752262, 0.206749544, -0.632151723, -0.462503791, 0.521611631, 0.716946065)) | |
| 1138 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.39288604, 0.749927998, 0.661516845))
| |
| 1139 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1140 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.18399811, -0.0476379395, 0.16085434, -0.477965951, -0.827753663, 0.293892205, -0.746752322, 0.206749573, -0.632151663, 0.462503731, -0.521611631, -0.716946125)) | |
| 1141 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.39288604, 0.749927998, 1.42759919))
| |
| 1142 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1143 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.201507568, -0.459602356, 1.14183044, -0.583255231, 0.218789414, -0.782268822, 0.751457036, 0.510999739, -0.41736272, 0.308424652, -0.831270337, -0.46245411)) | |
| 1144 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.8984164, 0.703295708, 0.799203038))
| |
| 1145 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1146 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.20149231, -0.459648132, -0.996704102, 0.583255231, -0.218789384, 0.782268822, 0.751456976, 0.510999739, -0.417362779, -0.308424592, 0.831270397, 0.462454081)) | |
| 1147 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.8984164, 0.703295708, 0.621487975))
| |
| 1148 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1149 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0147323608, -0.973236084, 0.914958954, -0.156483904, 0.435198843, -0.886632025, 0.683841348, 0.695461452, 0.220674947, 0.712652802, -0.57178241, -0.406431377)) | |
| 1150 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.46008873, 0.666695833, 0.811124384))
| |
| 1151 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1152 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0147171021, -0.973182678, -0.783901215, 0.156483904, -0.435198843, 0.886632025, 0.683841527, 0.695461452, 0.220674947, -0.712652802, 0.571782529, 0.406431407)) | |
| 1153 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.46008873, 0.666695833, 0.472502589))
| |
| 1154 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1155 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00747680664, 0.491611481, 1.14885712, 0.15648216, -0.435194016, 0.886634767, -0.93828851, -0.345830202, -0.00415303372, 0.308428675, -0.831268728, -0.462451935)) | |
| 1156 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.677845, 0.366974115, 0.730107963))
| |
| 1157 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1158 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0075302124, 0.491550446, -1.00376511, -0.15648216, 0.435194016, -0.886634767, -0.93828851, -0.345830232, -0.00415305141, -0.308428705, 0.831268787, 0.462451965)) | |
| 1159 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.677845, 0.366974115, 0.69058305))
| |
| 1160 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1161 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.193820953, 0.709960938, -0.841911316, -0.874475479, -0.30871588, 0.374148548, 0.482719928, -0.629681706, 0.608672738, 0.0476875678, 0.712878287, 0.699664593)) | |
| 1162 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.54733896, 0.538285136, 1.11585033))
| |
| 1163 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1164 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.193775177, 0.709960938, 1.0419693, 0.874475479, 0.30871594, -0.374148577, 0.482719988, -0.629681706, 0.608672738, -0.0476875678, -0.712878346, -0.699664533)) | |
| 1165 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.54733896, 0.538285136, 0.842755437))
| |
| 1166 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1167 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.158584595, -0.902748108, -0.82408905, 0.848674536, 0.340479612, -0.404753417, -0.526761472, 0.613088965, -0.588765144, 0.0476873368, 0.712878346, 0.699664533)) | |
| 1168 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.50549781, 1.18244338, 0.941709101))
| |
| 1169 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.307616472, 0.241607338, 0.207781255)) | |
| 1170 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.158584595, -0.90272522, 1.02418518, -0.848674536, -0.340479553, 0.404753417, -0.526761413, 0.613088965, -0.588765144, -0.0476873666, -0.712878346, -0.699664533)) | |
| 1171 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1172 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.19345474, -0.119552612, 0.239513397, 0.3351264, -0.928513765, -0.159852102, -0.723190963, -0.144759417, -0.675307095, 0.60389179, 0.3419168, -0.720005393)) | |
| 1173 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.77400637, 1.43617654, 0.608117402))
| |
| 1174 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1175 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.19345284, -0.119468689, -0.137443542, -0.33512637, 0.928513646, 0.159852102, -0.723190844, -0.144759372, -0.675307155, -0.60389179, -0.3419168, 0.720005274)) | |
| 1176 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.77400637, 1.43617654, 0.391861618))
| |
| 1177 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1178 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.18893051, -0.143814087, -0.0478820801, 0.364204645, -0.903420329, -0.226240769, -0.925450444, -0.323840916, -0.196651235, 0.104387544, 0.280996025, -0.954014301)) | |
| 1179 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.85433221, 1.42614818, 0.426919371))
| |
| 1180 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1181 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.18892097, -0.143798828, 0.127159119, -0.364204645, 0.903420329, 0.226240769, -0.925450444, -0.323840886, -0.19665134, -0.104387648, -0.280996084, 0.954014301)) | |
| 1182 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.85433221, 1.42614818, 0.349282175))
| |
| 1183 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1184 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.125923157, -0.187637329, 1.31838608, -0.849575102, 0.31651327, -0.421949774, 0.479390979, 0.129658356, -0.867970645, -0.220014945, -0.939685106, -0.261888117)) | |
| 1185 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.60906887, 1.60550332, 0.282343328))
| |
| 1186 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1187 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.125892639, -0.187728882, -1.21619415, 0.849575102, -0.31651333, 0.421949744, 0.479390949, 0.129658341, -0.867970645, 0.220014974, 0.939685166, 0.261888087)) | |
| 1188 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.60906887, 1.60550332, 0.717650354))
| |
| 1189 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1190 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0220947266, 0.982192993, 0.778064728, -0.844950199, 0.394084632, -0.361602783, -0.0886972621, -0.769973457, -0.631881058, -0.527439177, -0.50183481, 0.685543478)) | |
| 1191 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.6173017, 0.73521018, 0.677838624))
| |
| 1192 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1193 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.022064209, 0.98210907, -0.598415375, 0.84495008, -0.394084692, 0.361602813, -0.088697277, -0.769973457, -0.631881058, 0.527439177, 0.50183481, -0.685543418)) | |
| 1194 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.6173017, 0.73521018, 1.08075833))
| |
| 1195 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1196 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.1960907, -0.250663757, -0.128540039, -0.304940253, 0.909325957, -0.28308621, -0.740459204, -0.413307071, -0.529997647, -0.598942161, 0.0479961559, 0.799352646)) | |
| 1197 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.37767649, 0.819024384, 0.573752046))
| |
| 1198 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1199 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.19606018, -0.250579834, 0.291267395, 0.304940253, -0.909325957, 0.283086181, -0.740459263, -0.413307071, -0.529997528, 0.598942041, -0.0479962192, -0.799352705)) | |
| 1200 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.37767649, 0.819024384, 1.01813722))
| |
| 1201 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1202 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.19810486, -0.0906600952, 0.341804504, -0.396177769, 0.849719644, -0.347879052, 0.695916116, 0.525045455, 0.48992914, 0.598952413, -0.0479951911, -0.799343288)) | |
| 1203 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.45940757, 0.852486551, 0.522749722))
| |
| 1204 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1205 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.1980896, -0.0906600952, -0.179210663, 0.396177769, -0.849719644, 0.347879052, 0.695916176, 0.525045395, 0.48992902, -0.598952353, 0.0479953066, 0.799343348)) | |
| 1206 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.45940757, 0.852486551, 1.0691396))
| |
| 1207 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1208 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.16056633, -0.287460327, -0.298797607, -0.341383576, 0.938276768, -0.0556189939, 0.423022717, 0.100534245, -0.900522351, -0.839350402, -0.330952615, -0.431237996)) | |
| 1209 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.34054089, 0.432091653, 0.206000254))
| |
| 1210 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1211 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.16056061, -0.287406921, 0.411987305, 0.341383576, -0.938276768, 0.0556189939, 0.423022598, 0.10053423, -0.900522411, 0.839350462, 0.330952585, 0.431237876)) | |
| 1212 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.34054089, 0.432091653, 0.901821733))
| |
| 1213 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1214 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.17240524, 0.10735321, -0.368659973, 0.311656386, -0.942955077, 0.117069989, -0.445377439, -0.03613583, 0.894610882, -0.839350581, -0.330952555, -0.431237936)) | |
| 1215 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.35788095, 0.456353605, 0.88979423))
| |
| 1216 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1217 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.17238617, 0.107315063, 0.481796265, -0.311656386, 0.942955077, -0.117069989, -0.445377558, -0.0361358784, 0.894610882, 0.839350402, 0.330952495, 0.431237996)) | |
| 1218 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.35788095, 0.456353605, 0.218027741))
| |
| 1219 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1220 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.707763672, -0.843032837, -1.38007164, 0.431558937, 0.0760657713, -0.898869574, 0.901749432, -0.0635482073, 0.42756781, -0.0246001333, -0.995075643, -0.0960171968)) | |
| 1221 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.897728205, 4.00051117))
| |
| 1222 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1223 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.35168457, -0.766448975, -1.44050694, 0.499652296, 0.0880823061, -0.861736119, 0.866216838, -0.0553927086, 0.496588379, -0.00399324391, -0.994571924, -0.103975467)) | |
| 1224 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(4.85897541, 0.767845988, 3.67054677))
| |
| 1225 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1226 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.351707458, -0.766471863, 1.85136318, -0.499652296, -0.0880823061, 0.861736119, 0.866216838, -0.0553927943, 0.496588379, 0.00399331842, 0.994571924, 0.103975512)) | |
| 1227 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(4.85897541, 0.767845988, 0.351230234))
| |
| 1228 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1229 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.854278564, 0.179862976, -1.05461311, 0.974913418, 0.0192669258, -0.221743852, 0.222584799, -0.0849288478, 0.971208513, -0.00012204994, -0.996200621, -0.0870868042)) | |
| 1230 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(2.22106624, 0.0699908063, 0.078826271))
| |
| 1231 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1232 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.854242325, 0.179824829, 1.47348976, -0.974913418, -0.0192669258, 0.221743852, 0.222584784, -0.0849289373, 0.971208513, 0.000122072292, 0.996200621, 0.0870868936)) | |
| 1233 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(2.22106624, 0.0699908063, 4.02116823))
| |
| 1234 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1235 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.21919632, -0.0326881409, -0.0951690674, -0.359190404, -0.923120201, -0.137227714, 0.711338758, -0.175616279, -0.680555761, 0.604135334, -0.34206447, 0.719730794)) | |
| 1236 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.26254737, 1.51202679, 0.390782684))
| |
| 1237 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1238 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.21922302, -0.0326271057, 0.197357178, 0.359190404, 0.923120141, 0.137227759, 0.711338818, -0.175616309, -0.680555761, -0.604135275, 0.34206447, -0.719730914)) | |
| 1239 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.26254737, 1.51202679, 0.609207273))
| |
| 1240 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1241 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.21037292, -0.143875122, 0.126155853, 0.409395009, 0.877541602, 0.249636665, -0.356349826, 0.405680567, -0.841689527, -0.83988744, 0.255624324, 0.478790551)) | |
| 1242 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.34293306, 0.494276524, 0.869299412))
| |
| 1243 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1244 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.21037674, -0.143844604, 0.0334014893, -0.409395009, -0.877541602, -0.249636665, -0.356349856, 0.405680597, -0.841689527, 0.83988744, -0.255624294, -0.478790611)) | |
| 1245 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.34293306, 0.494276524, 0.692410111))
| |
| 1246 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1247 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.281303406, -0.0255355835, -1.09235001, 0.936334133, 0.340577036, 0.0853662863, 0.174037009, -0.239044428, -0.955283642, -0.304941863, 0.90932107, -0.283100277)) | |
| 1248 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.99632597, 0.303129911, 0.36273855))
| |
| 1249 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1250 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.281280518, -0.0254974365, 1.23389816, -0.936334133, -0.340577036, -0.0853662863, 0.17403698, -0.239044324, -0.955283701, 0.304941863, -0.909321129, 0.283100188)) | |
| 1251 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.99632597, 0.303129911, 1.02286696))
| |
| 1252 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.300009131, 0.318958759, 0.308870733)) | |
| 1253 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.109375, -0.0329818726, -1.2195549, -0.92370671, -0.381412029, 0.0359371938, 0.0237883106, 0.0365352854, 0.999049604, -0.382361412, 0.923682928, -0.02467696)) | |
| 1254 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1255 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.195072174, 0.757850647, -0.789703369, -0.950788319, -0.306532681, -0.045175951, 0.184521183, -0.677290559, 0.712201357, -0.248905346, 0.668816149, 0.700520277)) | |
| 1256 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.56093466, 0.59068346, 1.36605966))
| |
| 1257 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1258 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.195049286, 0.757858276, 1.01163483, 0.950788319, 0.306532681, 0.045175951, 0.184521154, -0.677290499, 0.712201416, 0.248905331, -0.668816209, -0.700520217)) | |
| 1259 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.56093466, 0.59068346, 0.806907356))
| |
| 1260 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1261 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.21956635, -0.0637664795, -0.151447296, -0.382345438, 0.923689306, -0.0246913396, -0.358557761, -0.172939762, -0.917349517, -0.851615131, -0.341891676, 0.397316217)) | |
| 1262 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.51162803, 1.45380855, 0.431501448))
| |
| 1263 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1264 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.21951485, -0.0637512207, 0.25359726, 0.382345438, -0.923689306, 0.0246913396, -0.35855782, -0.172939792, -0.917349458, 0.851615131, 0.341891646, -0.397316307)) | |
| 1265 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.51162803, 1.45380855, 0.568490505))
| |
| 1266 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1267 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.22348022, -0.0297927856, -0.0385665894, -0.42246747, 0.906299114, 0.0119684767, 0.691414475, 0.330781877, -0.642284513, -0.586060822, -0.263069153, -0.7663728)) | |
| 1268 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.52209508, 0.766567051, 0.874328911))
| |
| 1269 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1270 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.22348785, -0.0297851563, 0.19354248, 0.42246753, -0.906299114, -0.011968445, 0.691414416, 0.330781788, -0.642284691, 0.586061001, 0.263069242, 0.766372681)) | |
| 1271 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.52209508, 0.766567051, 0.642164826))
| |
| 1272 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1273 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.298576355, -0.0441589355, 1.22732544, -0.935637772, -0.340421289, -0.0932586938, 0.181173086, -0.236450061, -0.954602361, 0.302916467, -0.910057485, 0.282908499)) | |
| 1274 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.13579595, 0.270692378, 0.913378119))
| |
| 1275 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1276 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.16928291, -0.231796265, -0.020275116, -0.39572525, -0.848519921, 0.351305455, 0.812094152, -0.14468956, 0.565303504, -0.428840995, 0.508997977, 0.746335387)) | |
| 1277 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.46309757, 0.797017336, 1.56692863))
| |
| 1278 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1279 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.16924667, -0.231811523, 0.242053986, 0.39572525, 0.848519921, -0.351305425, 0.812094152, -0.14468953, 0.565303564, 0.428841114, -0.508997917, -0.746335447)) | |
| 1280 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.46309757, 0.797017336, 0.603948653))
| |
| 1281 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1282 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.16946411, 0.0625610352, 0.136352539, -0.39654845, -0.848372757, 0.350732058, -0.811692536, 0.145549893, -0.565659344, 0.428840965, -0.508997858, -0.746335506)) | |
| 1283 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.46245193, 0.846652985, 1.6387167))
| |
| 1284 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1285 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.16942978, 0.0625152588, 0.0853347778, 0.39654845, 0.848372877, -0.350731909, -0.811692536, 0.145549878, -0.565659404, -0.428841054, 0.508997858, 0.746335387)) | |
| 1286 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.46245193, 0.846652985, 0.53216064))
| |
| 1287 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1288 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.633041382, 0.813529968, 1.44483662, 0.344373345, 0.0817331821, -0.935266376, -0.938510537, 0.0560721718, -0.340672195, 0.0246000513, 0.995075703, 0.0960173607)) | |
| 1289 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.106863573, 4.09860706))
| |
| 1290 | Wedge=CFuncs.Part.Create(m,Enum.Material.Plastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1291 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.643669128, 0.842651367, -0.99784565, -0.344488174, -0.0817330554, 0.935224235, -0.938468814, 0.0560724102, -0.3407875, -0.0245885253, -0.995075643, -0.096020326)) | |
| 1292 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.106863573, 0.268184096))
| |
| 1293 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1294 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.134666443, 0.0933227539, 1.28321838, -0.281085044, -0.00132162112, 0.959680498, -0.446045697, 0.885602355, -0.129427373, -0.849726319, -0.464442343, -0.249523982)) | |
| 1295 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.800000012, 1.5))
| |
| 1296 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1297 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.134864807, -0.249932289, 1.22412872, -0.281084031, -0.00131962809, 0.959680676, -0.128520384, 0.991042852, -0.0362810865, -0.95103848, -0.133537784, -0.278741479)) | |
| 1298 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.800000012, 1.5))
| |
| 1299 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1300 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.657094955, 0.268882751, 1.38109589, -0.192165166, 0.972471178, -0.13180314, 0.253973722, -0.0804480314, -0.963858247, -0.947929382, -0.218695641, -0.231528327)) | |
| 1301 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.600000024, 1.5))
| |
| 1302 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1303 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0532608032, -0.737085342, 1.26184082, -0.312324136, -0.170946971, 0.934466541, -0.177306131, 0.976880133, 0.119443841, -0.933282614, -0.128382668, -0.335418671)) | |
| 1304 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.600000024, 1.5))
| |
| 1305 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1306 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.041015625, -1.05544662, 0.94883728, -0.312324136, -0.170946956, 0.934466541, 0.152587712, 0.96187675, 0.226960301, -0.937641144, 0.213472098, -0.274338275)) | |
| 1307 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.600000024, 1.5))
| |
| 1308 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1309 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.134513855, -0.913040161, 1.00812531, -0.281082004, -0.00131965615, 0.959681392, 0.204503432, 0.976948619, 0.0612413213, -0.937641442, 0.213470697, -0.274338156)) | |
| 1310 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.800000012, 1.5))
| |
| 1311 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1312 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.142997742, -0.618379593, 1.24410248, -0.281082004, -0.00131965615, 0.959681392, -0.128520504, 0.991042793, -0.0362807848, -0.951039076, -0.133537799, -0.278739423)) | |
| 1313 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.600000024, 1.5))
| |
| 1314 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1315 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.709629059, 0.115264893, 1.28879547, 0.192162216, -0.972471297, 0.131806165, -0.253972739, 0.0804520026, 0.963858247, -0.947930336, -0.218693405, -0.231526896)) | |
| 1316 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.600000024, 1.5))
| |
| 1317 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1318 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0950088501, -0.908855438, 0.785774231, -0.451516688, -0.0763901398, 0.888986647, 0.464072257, 0.830859721, 0.307097852, -0.762082398, 0.551213861, -0.339696497)) | |
| 1319 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.800000012, 1.5))
| |
| 1320 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1321 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.675924301, 0.391967773, 1.33868027, -0.19216305, 0.972471595, -0.13180308, 0.0855095014, -0.117201947, -0.98941946, -0.977630556, -0.201401472, -0.0606393404)) | |
| 1322 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.600000024, 1.5))
| |
| 1323 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1324 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.253860474, -0.323736191, 1.56922913, 0.173673511, -7.3144829e-006, 0.984804332, -0.492261946, 0.866105974, 0.0868159309, -0.852945447, -0.499860287, 0.150411159)) | |
| 1325 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.600000024, 1.5))
| |
| 1326 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1327 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.730560303, -0.162284851, 1.27997208, 0.19216305, -0.972471595, 0.13180308, 0.0855543092, 0.150394559, 0.984917939, -0.977626741, -0.177989632, 0.112093799)) | |
| 1328 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.600000024, 1))
| |
| 1329 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1330 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.745353699, -0.371025085, 1.27064514, -0.192163259, 0.972471595, -0.1318032, 0.253974766, -0.080448322, -0.963858068, -0.947929561, -0.218693852, -0.231529504)) | |
| 1331 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.600000024, 1.5))
| |
| 1332 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1333 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.715274811, -0.650196075, 1.09525299, -0.192163274, 0.97247237, -0.131798893, 0.693910718, 0.0396773107, -0.71896714, -0.693946123, -0.229615763, -0.682433426)) | |
| 1334 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.600000024, 1.5))
| |
| 1335 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1336 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.758314133, 0.0522842407, 1.36688614, 0.19216305, -0.972471595, 0.13180308, 0.0855543092, 0.150394559, 0.984917939, -0.977626741, -0.177989632, 0.112093799)) | |
| 1337 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.600000024, 1.5))
| |
| 1338 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1339 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.721757889, -0.0192871094, 1.28364944, 0.19216305, -0.972471595, 0.13180308, -0.0855075866, 0.117202349, 0.989419639, -0.977630734, -0.201401249, -0.0606374033)) | |
| 1340 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.600000024, 1.5))
| |
| 1341 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1342 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.243873596, -0.495903969, 1.4525795, 0.173673511, -7.3144829e-006, 0.984804332, -0.336670876, 0.93974781, 0.0593783446, -0.92546773, -0.341868401, 0.163201511)) | |
| 1343 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.600000024, 1.5))
| |
| 1344 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1345 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.692108154, 0.497634888, 1.26395416, -0.19216305, 0.972471595, -0.13180308, -0.0855522454, -0.150394201, -0.984918237, -0.97762692, -0.177989975, 0.112091713)) | |
| 1346 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.800000012, 0.600000024, 1.5))
| |
| 1347 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1348 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.243888855, -1.01602936, 0.902326584, 0.173671409, -7.31526143e-006, 0.984804749, 0.336968005, 0.939639807, -0.05941559, -0.925360024, 0.342165112, 0.163185701)) | |
| 1349 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.800000012, 1.5))
| |
| 1350 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1351 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.319404602, -0.914527893, 0.690523148, 0.142561167, -0.170562282, 0.974980354, 0.64707607, 0.761448801, 0.0385958962, -0.748978674, 0.625383019, 0.218915507)) | |
| 1352 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.800000012, 1.5))
| |
| 1353 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1354 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.322914124, -0.328063965, 1.17824173, 0.142568156, -0.170563221, 0.974979222, 0.0142656704, 0.985292077, 0.170281798, -0.989682257, -0.0103693129, 0.142898783)) | |
| 1355 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.800000012, 1.5))
| |
| 1356 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1357 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.24382782, -0.743279457, 1.08272171, 0.173671409, -7.31526143e-006, 0.984804749, 0.171164095, 0.98478049, -0.0301764794, -0.969815075, 0.173802719, 0.171023846)) | |
| 1358 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.800000012, 1))
| |
| 1359 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1360 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.24382782, -0.809600115, 1.19537735, 0.173671514, -7.34507103e-006, 0.98480469, 0.000159187621, 0.999999881, -2.03871987e-005, -0.984803677, 0.000159036135, 0.173665836)) | |
| 1361 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.600000024, 1.5))
| |
| 1362 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1363 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.24382782, -0.0735530853, 1.29883575, 0.173670441, -7.3440624e-006, 0.984804928, -0.336670905, 0.93974787, 0.059377294, -0.925468206, -0.341868252, 0.16319859)) | |
| 1364 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.800000012, 1.5))
| |
| 1365 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1366 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.134651184, -0.803262711, 1.03211212, -0.281082004, -0.00131965615, 0.959681392, 0.204503432, 0.976948619, 0.0612413213, -0.937641442, 0.213470697, -0.274338156)) | |
| 1367 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.800000012, 1.5))
| |
| 1368 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1369 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.243850708, -0.461564064, 1.13243103, 0.17366752, -7.28517716e-006, 0.984805346, 0.171164066, 0.98478061, -0.030175807, -0.96981591, 0.173802599, 0.171020046)) | |
| 1370 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.800000012, 1.5))
| |
| 1371 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1372 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.21591949, -1.04887199, 0.149971008, 0.738176703, -0.633985758, 0.23055996, -0.671119869, -0.724850059, 0.155533791, 0.068509303, -0.269544721, -0.960547388)) | |
| 1373 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.102075592, 0.99475044))
| |
| 1374 | Wedge=CFuncs.Part.Create(m,Enum.Material.Plastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.418873966)) | |
| 1375 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00539398193, -0.518615723, -0.523536682, 0.866129518, 0.499821275, 0.000181923358, 0.000226406322, -3.83719525e-005, -1, -0.499820113, 0.866128623, -0.000149287356)) | |
| 1376 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 1.5))
| |
| 1377 | Wedge=CFuncs.Part.Create(m,Enum.Material.Plastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.4495233)) | |
| 1378 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.167789459, -0.518707275, -0.438488007, 0.81902945, -0.573750377, 0.000221751005, 0.000211779436, -7.59266695e-005, -1, 0.573751569, 0.819030166, 6.26376714e-005)) | |
| 1379 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.300000012, 1.5))
| |
| 1380 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1381 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.143371582, -0.600265503, -0.916534424, 0.766179204, 0.642628253, 0.000149400657, 0.000222153642, -3.92702314e-005, -1, -0.642627597, 0.766177952, -0.000176565052)) | |
| 1382 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1.5))
| |
| 1383 | Wedge=CFuncs.Part.Create(m,Enum.Material.Plastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.326926023)) | |
| 1384 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.282157898, -0.600479126, -0.832672119, 0.706954181, -0.707258344, 0.000205863966, 0.000208647136, -7.67374149e-005, -1, 0.707259595, 0.706955075, 9.74045834e-005)) | |
| 1385 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1.5))
| |
| 1386 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1387 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.49295807, -1.31685257, 1.20770264, -0.118712634, -0.671592176, -0.731349945, -0.96218735, -0.104052857, 0.251726508, -0.245159283, 0.733578146, -0.633846521)) | |
| 1388 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(2.04873276, 0.929574251, 0.368614644))
| |
| 1389 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1390 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.37257385, 0.621868134, -0.254203796, 0.166764513, 0.946150839, -0.277467132, 0.884746373, -0.267804444, -0.381445229, -0.435217023, -0.181876972, -0.8817662)) | |
| 1391 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.917938411, 2.25125289))
| |
| 1392 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1393 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.37258148, 0.621910095, 0.524650574, -0.166764513, -0.946150839, 0.277467132, 0.884746313, -0.267804474, -0.381445378, 0.435217172, 0.181876898, 0.88176614)) | |
| 1394 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.917938411, 0.39670372))
| |
| 1395 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1396 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.2597084, -1.00904465, 0.146209717, 0.738231182, 0.633818805, -0.230841458, 0.671015143, -0.725001514, 0.155278623, -0.0689477846, -0.269529611, -0.960521162)) | |
| 1397 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.102075592, 0.99475044))
| |
| 1398 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1399 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.84049988, -1.01443481, 0.194034576, 0.52563417, 0.649938822, 0.548901021, 0.106950767, -0.690589964, 0.715295672, 0.843961179, -0.317277342, -0.432504386)) | |
| 1400 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(2.19117522, 2.67499804, 0.448923111))
| |
| 1401 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 1.22359776, 0.297242999)) | |
| 1402 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.887481689, 1.76607323, 0.3826828, 0.869409382, -0.169139594, -0.46423772, 0.0704672337, 0.972423315, -0.222322136, 0.489041686, 0.160575718, 0.857354224)) | |
| 1403 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1404 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.887508392, 1.76605225, -0.146125793, -0.869409382, 0.169139594, 0.46423772, 0.0704672784, 0.972423434, -0.222322106, -0.489041686, -0.160575658, -0.857354224)) | |
| 1405 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 5.98837423, 0.861329198))
| |
| 1406 | Wedge=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Wedge",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1407 | WedgeWeld=CFuncs.Weld.Create(m,TorsoHandle,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.84049988, -1.01435852, -0.0949707031, -0.52563417, -0.649938822, -0.548901021, 0.106950872, -0.690589964, 0.715295613, -0.843961239, 0.317277282, 0.432504505)) | |
| 1408 | CFuncs.Mesh.Create("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(2.19117522, 2.67499804, 0.520646214))
| |
| 1409 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1410 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.06961441, 0.39944458, 0.320617676, 0.422497094, -0.902912974, -0.0790129155, 0.906364381, 0.420907468, 0.0366332717, 0.000186115387, -0.0870919153, 0.996200383)) | |
| 1411 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.316709608, 0.378008485, 0.204328775)) | |
| 1412 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.08344269, 1.36742687, 0.320472717, 0.939735532, 0.340614736, 0.0296679195, -0.341902643, 0.93615973, 0.0818906799, 0.000124904109, -0.0870991424, 0.996199846)) | |
| 1413 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.357575327, 0.623203099, 0.204328775)) | |
| 1414 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.30290413, 0.0924987793, 0.320655823, 0.341894269, -0.936161101, -0.0819110945, 0.939738512, 0.340611249, 0.0296118464, 0.00018402352, -0.0870991275, 0.996199727)) | |
| 1415 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Block",Vector3.new(0.429090351, 0.20432891, 1.03186023)) | |
| 1416 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.916990221, -0.770381927, -0.0481796265, 0.00013084439, 0.999999881, -3.7444941e-005, -1, 0.000129550681, 0.000193783548, 0.00019956808, 3.74189221e-005, 1)) | |
| 1417 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.300000012, 1))
| |
| 1418 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Block",Vector3.new(0.429090351, 0.20432891, 1.03186023)) | |
| 1419 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.917011857, -0.167484283, -0.0483169556, 0.00013084439, 0.999999881, -3.7444941e-005, -1, 0.000129550681, 0.000193783548, 0.00019956808, 3.74189221e-005, 1)) | |
| 1420 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.300000012, 1))
| |
| 1421 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Block",Vector3.new(0.429090351, 0.20432891, 1.03186023)) | |
| 1422 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.916977465, 0.425041199, -0.0483932495, 0.00013084439, 0.999999881, -3.7444941e-005, -1, 0.000129550681, 0.000193783548, 0.00019956808, 3.74189221e-005, 1)) | |
| 1423 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.300000012, 1))
| |
| 1424 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Medium stone grey","Block",Vector3.new(0.429090351, 0.20432891, 1.03186023)) | |
| 1425 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.19165039, 0.459186554, 0.132827759, -0.258729309, 0.951277912, -0.167717412, -0.965949833, -0.254761547, 0.0451389551, 0.000217641791, 0.173685327, 0.984801352)) | |
| 1426 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.300000012, 1))
| |
| 1427 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(1.03186011, 0.653852522, 0.204328775)) | |
| 1428 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0140762329, -0.692106426, -0.421150208, 1, -0.000117138021, -0.000189372338, 0.000118438045, 0.99999994, -5.29401368e-005, 0.000195158267, 5.29170284e-005, 1)) | |
| 1429 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 1430 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.351108551, -0.503547668, -0.252998352, 0.64288193, 0.765966117, -0.000155845904, -0.00021153345, -3.07716255e-005, -1, -0.765965343, 0.642880857, 0.000137817333)) | |
| 1431 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.180000007, 0.150000006, 0.0599999987))
| |
| 1432 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 1433 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.657119751, -0.534034729, -0.269756317, 0.64288193, 0.765966117, -0.000155845904, -0.00021153345, -3.07716255e-005, -1, -0.765965343, 0.642880857, 0.000137817333)) | |
| 1434 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.180000007, 0.150000006, 0.0599999987))
| |
| 1435 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Block",Vector3.new(0.429090351, 0.20432891, 0.439306885)) | |
| 1436 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.504066467, -0.523918152, -0.261383057, 0.64288193, 0.765966117, -0.000155845904, -0.00021153345, -3.07716255e-005, -1, -0.765965343, 0.642880857, 0.000137817333)) | |
| 1437 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.180000007, 0.150000006, 0.0599999987))
| |
| 1438 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1439 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.187904358, 0.426956177, 0.416240185, 1, -0.000147648156, -3.67818939e-005, 4.25642938e-005, 1.86005291e-005, 1, -0.000148943203, -0.999999881, 1.86068664e-005)) | |
| 1440 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 1441 | Block=CFuncs.Part.Create(m,Enum.Material.Plastic,0,0,"Dark indigo","Block",Vector3.new(0.20432879, 0.490389347, 0.204328775)) | |
| 1442 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.208106995, -0.565958023, 0.378990173, 0.819080472, -0.57367754, -0.000128238316, 0.571478665, 0.815960288, -0.0873012841, 0.05019328, 0.0714335442, 0.996182084)) | |
| 1443 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.20000005, 1))
| |
| 1444 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.316709608, 0.429090559, 1.03186023)) | |
| 1445 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.353622437, -0.564400077, -0.00731658936, 1, -0.000117138021, -0.000189372338, 0.000118438045, 0.99999994, -5.29401368e-005, 0.000195158267, 5.29170284e-005, 1)) | |
| 1446 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1447 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.065574646, 0.62374115, -1.12470627, -0.771373272, -0.633602023, 0.0594346672, 0.0490493886, 0.0339298137, 0.998220146, -0.634490132, 0.772914648, 0.00490157353)) | |
| 1448 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 1449 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1450 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.273571014, 0.611114502, -1.07255173, -0.771373272, -0.633602023, 0.0594346672, 0.0490493886, 0.0339298137, 0.998220146, -0.634490132, 0.772914648, 0.00490157353)) | |
| 1451 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 1452 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.22476162, 0.316709787, 1.03186023)) | |
| 1453 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.407535553, -0.508210003, -0.00720977783, 1, -0.000117138021, -0.000189372338, 0.000118438045, 0.99999994, -5.29401368e-005, 0.000195158267, 5.29170284e-005, 1)) | |
| 1454 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1455 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.06333923, 0.570411682, -0.264526367, -0.771373272, -0.633602023, 0.0594346672, 0.0490493886, 0.0339298137, 0.998220146, -0.634490132, 0.772914648, 0.00490157353)) | |
| 1456 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1.5, 0.300000012))
| |
| 1457 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1458 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.00056458, 0.575164795, -0.461666107, -0.771373272, -0.633602023, 0.0594346672, 0.0490493886, 0.0339298137, 0.998220146, -0.634490132, 0.772914648, 0.00490157353)) | |
| 1459 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1.5, 0.300000012))
| |
| 1460 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1461 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.279945374, 0.447395325, 0.549048066, 1, -0.000147648156, -3.67818939e-005, 4.25642938e-005, 1.86005291e-005, 1, -0.000148943203, -0.999999881, 1.86068664e-005)) | |
| 1462 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 1463 | Block=CFuncs.Part.Create(m,Enum.Material.Plastic,0,0,"Black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1464 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.101985931, 0.762905121, 0.454162598, -0.866100073, -0.49987188, 4.3054155e-005, 0.49797231, -0.862801492, 0.0871576145, -0.0435246266, 0.0755085647, 0.996194601)) | |
| 1465 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 2.5, 0.300000012))
| |
| 1466 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1467 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.399791718, 0.986255646, 0.143608093, -0.716332436, 0.693889797, -0.073376894, -0.654266179, -0.63141346, 0.416234016, 0.242495134, 0.346170187, 0.906291902)) | |
| 1468 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 2, 0.300000012))
| |
| 1469 | Block=CFuncs.Part.Create(m,Enum.Material.Plastic,0,0,"Black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1470 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0467643738, 0.60241127, 0.518814087, -0.819062412, 0.573703408, 1.72674372e-005, -0.573704541, -0.819063067, 3.94681665e-005, 4.25657854e-005, 2.2419621e-005, 1)) | |
| 1471 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 2, 0.300000012))
| |
| 1472 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1473 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.361625671, 0.447395325, 0.671660423, 1, -0.000147648156, -3.67818939e-005, 4.25642938e-005, 1.86005291e-005, 1, -0.000148943203, -0.999999881, 1.86068664e-005)) | |
| 1474 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 1475 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1476 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0806465149, 1.09708405, 0.229934692, -0.77137357, -0.633601725, 0.0594341755, 0.612998188, -0.714692771, 0.336821318, -0.170927599, 0.29624778, 0.939691007)) | |
| 1477 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1.60000002, 0.300000012))
| |
| 1478 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.20432879, 0.326926231, 0.204328775)) | |
| 1479 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.261711121, 0.948196411, 0.0397186279, -0.771373272, -0.633602023, 0.0594346672, 0.574004948, -0.652392149, 0.494879007, -0.274776191, 0.415851742, 0.866927087)) | |
| 1480 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 2, 0.300000012))
| |
| 1481 | Block=CFuncs.Part.Create(m,Enum.Material.Plastic,0,0,"Black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1482 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.202278137, 1.05443192, 0.074256897, -0.718370676, 0.691030681, -0.0801227838, -0.630975664, -0.598741949, 0.493330777, 0.292939425, 0.404950142, 0.866143882)) | |
| 1483 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 2, 0.300000012))
| |
| 1484 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.20432879, 0.20432891, 0.316709608)) | |
| 1485 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000926971436, -1.14476585, 0.615692139, 0.865963578, -0.500106096, -0.000144638005, 0.500107288, 0.865964115, -0.00013586595, 0.000198978407, 4.5319739e-005, 1)) | |
| 1486 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1487 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.106266022, 0.437164307, -0.67688632, 1, -0.000147648156, -3.67818939e-005, 4.25642938e-005, 1.86005291e-005, 1, -0.000148943203, -0.999999881, 1.86068664e-005)) | |
| 1488 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 1489 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1490 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.247322083, -1.1689949, 0.610839844, 0.93973273, 0.341911435, -0.000195256172, -0.341910303, 0.939732194, 2.05054221e-005, 0.000196279201, 4.7489797e-005, 1)) | |
| 1491 | Block=CFuncs.Part.Create(m,Enum.Material.Plastic,0,0,"Really black","Block",Vector3.new(0.408657581, 0.20432891, 1.03186023)) | |
| 1492 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.578826904, -0.258167267, 0.146263123, 0.852841854, -0.492498308, 0.173514232, 0.500106514, 0.865964472, -0.000140637043, -0.150182083, 0.0868953019, 0.984831333)) | |
| 1493 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.200000003, 1))
| |
| 1494 | Block=CFuncs.Part.Create(m,Enum.Material.Plastic,0,0,"Really black","Block",Vector3.new(0.429090351, 0.20432891, 1.03186023)) | |
| 1495 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.498118222, 0.0346755981, 0.0129394531, -0.000128846688, -0.999999881, 5.04386444e-005, 1, -0.000127546475, -0.000190783467, 0.000196569599, 5.04133932e-005, 1)) | |
| 1496 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(1.29999995, 0.200000003, 1))
| |
| 1497 | Block=CFuncs.Part.Create(m,Enum.Material.Plastic,0,0,"Really black","Block",Vector3.new(0.40865761, 0.20432891, 0.204328775)) | |
| 1498 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.631591797, 0.165372849, 0.569297791, 0.852961361, 0.4923127, 0.173459724, -0.499897003, 0.866084218, 4.82927644e-005, -0.150201395, -0.0867533609, 0.984841049)) | |
| 1499 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.200000003, 1))
| |
| 1500 | Block=CFuncs.Part.Create(m,Enum.Material.Plastic,0,0,"Really black","Block",Vector3.new(2.0739367, 0.20432891, 1.05229294)) | |
| 1501 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0142211914, 0.917001307, -0.00724029541, 1, -0.000117138021, -0.000189372338, 0.000118438045, 0.99999994, -5.29401368e-005, 0.000195158267, 5.29170284e-005, 1)) | |
| 1502 | Part=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Part",Vector3.new(0.25541088, 0.75601697, 0.633419156)) | |
| 1503 | Part.Shape = "Cylinder" | |
| 1504 | PartWeld=CFuncs.Weld.Create(m,TorsoHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.401390076, 0.414894104, -0.0484144688, -0.000242504699, 0.00010346956, -1, -1, 8.66204355e-005, 0.000236734166, 8.79392246e-005, 0.999999881, 0.000103448117)) | |
| 1505 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1506 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.514907837, 0.467842102, 0.171043664, 1, -0.000147648156, -3.67818939e-005, 4.25642938e-005, 1.86005291e-005, 1, -0.000148943203, -0.999999881, 1.86068664e-005)) | |
| 1507 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 1508 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1509 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.106197357, 0.437164307, -0.370426983, 1, -0.000147648156, -3.67818939e-005, 4.25642938e-005, 1.86005291e-005, 1, -0.000148943203, -0.999999881, 1.86068664e-005)) | |
| 1510 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 1511 | Block=CFuncs.Part.Create(m,Enum.Material.Plastic,0,0,"Really black","Block",Vector3.new(0.459739625, 0.20432891, 1.03186023)) | |
| 1512 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0470962524, 0.247809082, 0.0537490845, 1, -0.000117138021, -0.000189372338, 0.000118438045, 0.99999994, -5.29401368e-005, 0.000195158267, 5.29170284e-005, 1)) | |
| 1513 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(1.29999995, 0.200000003, 1))
| |
| 1514 | Part=CFuncs.Part.Create(m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.25541088, 0.75601697, 0.633419156)) | |
| 1515 | Part.Shape = "Cylinder" | |
| 1516 | PartWeld=CFuncs.Weld.Create(m,TorsoHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.43208313, 0.118618011, -0.0484086573, -0.000242504699, 0.00010346956, -1, -1, 8.66204355e-005, 0.000236734166, 8.79392246e-005, 0.999999881, 0.000103448117)) | |
| 1517 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(2.05350399, 1.40986931, 1.03186023)) | |
| 1518 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0141868591, 0.334668666, -0.00722503662, 1, -0.000117138021, -0.000189372338, 0.000118438045, 0.99999994, -5.29401368e-005, 0.000195158267, 5.29170284e-005, 1)) | |
| 1519 | Block=CFuncs.Part.Create(m,Enum.Material.Plastic,0,0,"Dark indigo","Block",Vector3.new(0.20432879, 0.490389347, 0.204328775)) | |
| 1520 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.101119995, 0.487908572, 0.426948547, 1, -0.000117138021, -0.000189372338, 0.000118438045, 0.99999994, -5.29401368e-005, 0.000195158267, 5.29170284e-005, 1)) | |
| 1521 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.20000005, 1))
| |
| 1522 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.521038294, 0.664068878, 1.03186023)) | |
| 1523 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.780406952, -0.681897581, -0.00723266602, 1, -0.000117138021, -0.000189372338, 0.000118438045, 0.99999994, -5.29401368e-005, 0.000195158267, 5.29170284e-005, 1)) | |
| 1524 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 1.03186023)) | |
| 1525 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.138961792, -0.794376075, 0.0231781006, -1, 0.000118657939, 0.000197783986, -0.00011994403, -0.999999881, 3.9439692e-005, 0.000203568343, 3.94153103e-005, 1)) | |
| 1526 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.899999976, 0.200000003, 1))
| |
| 1527 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Block",Vector3.new(0.429090351, 0.20432891, 1.03186023)) | |
| 1528 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.916997552, -0.933769226, 0.0233154297, 0.00013084439, 0.999999881, -3.7444941e-005, -1, 0.000129550681, 0.000193783548, 0.00019956808, 3.74189221e-005, 1)) | |
| 1529 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.300000012, 1))
| |
| 1530 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Dark indigo","Block",Vector3.new(0.429090351, 0.20432891, 1.03186023)) | |
| 1531 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0266075134, 0.916997254, 0.0231323242, 1, -0.000120654695, -0.000185783865, 0.000121955258, 0.999999881, -4.5430148e-005, 0.000191569037, 4.54068067e-005, 1)) | |
| 1532 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.200000003, 1))
| |
| 1533 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Black","Block",Vector3.new(0.521038294, 0.643636048, 1.03186023)) | |
| 1534 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.752067566, -0.692039907, -0.00748443604, 1, -0.000117138021, -0.000189372338, 0.000118438045, 0.99999994, -5.29401368e-005, 0.000195158267, 5.29170284e-005, 1)) | |
| 1535 | Part=CFuncs.Part.Create(m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.25541088, 0.75601697, 0.633419156)) | |
| 1536 | Part.Shape = "Cylinder" | |
| 1537 | PartWeld=CFuncs.Weld.Create(m,TorsoHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.442298889, -0.0346221924, -0.048402667, -0.000242504699, 0.00010346956, -1, -1, 8.66204355e-005, 0.000236734166, 8.79392246e-005, 0.999999881, 0.000103448117)) | |
| 1538 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.429090351, 0.20432891, 1.03186023)) | |
| 1539 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.138973236, -1.03961945, 0.0231170654, -1, 0.000118657939, 0.000197783986, -0.00011994403, -0.999999881, 3.9439692e-005, 0.000203568343, 3.94153103e-005, 1)) | |
| 1540 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.899999976, 0.200000003, 1))
| |
| 1541 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Block",Vector3.new(0.429090351, 0.20432891, 1.03186023)) | |
| 1542 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.917024016, 0.619155884, 0.0230560303, 0.00013084439, 0.999999881, -3.7444941e-005, -1, 0.000129550681, 0.000193783548, 0.00019956808, 3.74189221e-005, 1)) | |
| 1543 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.300000012, 1))
| |
| 1544 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.429090351, 0.20432891, 1.03186023)) | |
| 1545 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.9169783, 0.353458405, 0.0231399536, 0.00013084439, 0.999999881, -3.7444941e-005, -1, 0.000129550681, 0.000193783548, 0.00019956808, 3.74189221e-005, 1)) | |
| 1546 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.670000017, 0.200000003, 1))
| |
| 1547 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Block",Vector3.new(0.429090351, 0.20432891, 1.03186023)) | |
| 1548 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.917004466, -0.075553894, 0.0230789185, 0.00013084439, 0.999999881, -3.7444941e-005, -1, 0.000129550681, 0.000193783548, 0.00019956808, 3.74189221e-005, 1)) | |
| 1549 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.670000017, 0.200000003, 1))
| |
| 1550 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","Block",Vector3.new(0.429090351, 0.20432891, 1.03186023)) | |
| 1551 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.916968167, -0.453540802, 0.0232543945, 0.00013084439, 0.999999881, -3.7444941e-005, -1, 0.000129550681, 0.000193783548, 0.00019956808, 3.74189221e-005, 1)) | |
| 1552 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.5, 0.300000012, 1))
| |
| 1553 | Block=CFuncs.Part.Create(m,Enum.Material.SmoothPlastic,0,0,"Really black","Block",Vector3.new(0.20432879, 0.20432891, 0.204328775)) | |
| 1554 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.514881134, 0.467788696, -0.0639477298, 1, -0.000147648156, -3.67818939e-005, 4.25642938e-005, 1.86005291e-005, 1, -0.000148943203, -0.999999881, 1.86068664e-005)) | |
| 1555 | CFuncs.Mesh.Create("CylinderMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(0.300000012, 1, 0.300000012))
| |
| 1556 | Part=CFuncs.Part.Create(m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.25541088, 0.510822237, 0.633419156)) | |
| 1557 | Part.Shape = "Cylinder" | |
| 1558 | PartWeld=CFuncs.Weld.Create(m,TorsoHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.452613831, -0.0346183777, -0.0484021753, -0.000242504699, 0.00010346956, -1, -1, 8.66204355e-005, 0.000236734166, 8.79392246e-005, 0.999999881, 0.000103448117)) | |
| 1559 | Block=CFuncs.Part.Create(m,Enum.Material.Plastic,0,0,"Really black","Block",Vector3.new(0.408657581, 0.20432891, 1.03186023)) | |
| 1560 | BlockWeld=CFuncs.Weld.Create(m,TorsoHandle,Block,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.052192688, -0.344719172, 0.0537796021, 1, -0.000117138021, -0.000189372338, 0.000118438045, 0.99999994, -5.29401368e-005, 0.000195158267, 5.29170284e-005, 1)) | |
| 1561 | CFuncs.Mesh.Create("BlockMesh",Block,"","",Vector3.new(0, 0, 0),Vector3.new(1.29999995, 0.200000003, 1))
| |
| 1562 | Part=CFuncs.Part.Create(m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.25541088, 0.75601697, 0.633419156)) | |
| 1563 | Part.Shape = "Cylinder" | |
| 1564 | PartWeld=CFuncs.Weld.Create(m,TorsoHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.442321777, -0.136814117, -0.0484017283, -0.000242504699, 0.00010346956, -1, -1, 8.66204355e-005, 0.000236734166, 8.79392246e-005, 0.999999881, 0.000103448117)) | |
| 1565 | Part=CFuncs.Part.Create(m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.25541088, 0.75601697, 0.633419156)) | |
| 1566 | Part.Shape = "Cylinder" | |
| 1567 | PartWeld=CFuncs.Weld.Create(m,TorsoHandle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.421798706, 0.302509308, -0.0484103411, -0.000242504699, 0.00010346956, -1, -1, 8.66204355e-005, 0.000236734166, 8.79392246e-005, 0.999999881, 0.000103448117)) | |
| 1568 | end | |
| 1569 | Armor() | |
| 1570 | ||
| 1571 | --//====================================================\\-- | |
| 1572 | --|| CREATED BY SHACKLUSTER ||-- | |
| 1573 | --\\====================================================//-- | |
| 1574 | ||
| 1575 | ||
| 1576 | ||
| 1577 | wait(0.2) | |
| 1578 | ||
| 1579 | Player = game:GetService("Players").LocalPlayer
| |
| 1580 | PlayerGui = Player.PlayerGui | |
| 1581 | Cam = workspace.CurrentCamera | |
| 1582 | Backpack = Player.Backpack | |
| 1583 | Character = Player.Character | |
| 1584 | Humanoid = Character.Humanoid | |
| 1585 | Mouse = Player:GetMouse() | |
| 1586 | RootPart = Character["HumanoidRootPart"] | |
| 1587 | Torso = Character["Torso"] | |
| 1588 | Head = Character["Head"] | |
| 1589 | RightArm = Character["Right Arm"] | |
| 1590 | LeftArm = Character["Left Arm"] | |
| 1591 | RightLeg = Character["Right Leg"] | |
| 1592 | LeftLeg = Character["Left Leg"] | |
| 1593 | RootJoint = RootPart["RootJoint"] | |
| 1594 | Neck = Torso["Neck"] | |
| 1595 | RightShoulder = Torso["Right Shoulder"] | |
| 1596 | LeftShoulder = Torso["Left Shoulder"] | |
| 1597 | RightHip = Torso["Right Hip"] | |
| 1598 | LeftHip = Torso["Left Hip"] | |
| 1599 | local sick = Instance.new("Sound",Character)
| |
| 1600 | sick.SoundId = "rbxassetid://152000442" | |
| 1601 | sick.Looped = true | |
| 1602 | sick.Pitch = 1 | |
| 1603 | sick.Volume = 1 | |
| 1604 | sick:Play() | |
| 1605 | ||
| 1606 | IT = Instance.new | |
| 1607 | CF = CFrame.new | |
| 1608 | VT = Vector3.new | |
| 1609 | RAD = math.rad | |
| 1610 | C3 = Color3.new | |
| 1611 | UD2 = UDim2.new | |
| 1612 | BRICKC = BrickColor.new | |
| 1613 | ANGLES = CFrame.Angles | |
| 1614 | EULER = CFrame.fromEulerAnglesXYZ | |
| 1615 | COS = math.cos | |
| 1616 | ACOS = math.acos | |
| 1617 | SIN = math.sin | |
| 1618 | ASIN = math.asin | |
| 1619 | ABS = math.abs | |
| 1620 | MRANDOM = math.random | |
| 1621 | FLOOR = math.floor | |
| 1622 | ||
| 1623 | ||
| 1624 | ||
| 1625 | local char = game.Players.localPlayer.Character | |
| 1626 | local txt = Instance.new("BillboardGui", char)
| |
| 1627 | txt.Adornee = char .Head | |
| 1628 | txt.Name = "_status" | |
| 1629 | txt.Size = UDim2.new(2, 0, 1.2, 0) | |
| 1630 | txt.StudsOffset = Vector3.new(-9, 10, 0) | |
| 1631 | local text = Instance.new("TextLabel", txt)
| |
| 1632 | text.Size = UDim2.new(10, 0, 7, 0) | |
| 1633 | text.FontSize = "Size24" | |
| 1634 | text.TextScaled = true | |
| 1635 | text.TextTransparency = 0 | |
| 1636 | text.BackgroundTransparency = 1 | |
| 1637 | text.TextTransparency = 0 | |
| 1638 | text.TextStrokeTransparency = 0 | |
| 1639 | text.Font = "Garamond" | |
| 1640 | text.TextStrokeColor3 = Color3.new(1,1,1) | |
| 1641 | text.Text = "N̶i̵g̸h̴t̴m̷a̵r̴e̴" | |
| 1642 | ||
| 1643 | --custom chat by tomonaoboys (it will be my 2nd custom chat which has uploaded) | |
| 1644 | function chatfunc(text) | |
| 1645 | spawn(function() | |
| 1646 | local rs=game:service'RunService'.RenderStepped | |
| 1647 | local function sw(n)if n==nil then rs:wait()else for i=1,n do rs:wait()end end return true end | |
| 1648 | local Character=game:service'Players'.LocalPlayer.Character local RootPart=Character.HumanoidRootPart | |
| 1649 | local s=Instance.new("Sound",Character)s.SoundId="rbxassetid://418252437"s.Volume=2
| |
| 1650 | if Character:FindFirstChild("cht")then Character.cht:Destroy()end
| |
| 1651 | local b=Instance.new("BillboardGui",Character)b.AlwaysOnTop=true b.Adornee=RootPart b.StudsOffset=Vector3.new(0,4.5,0)b.Name="cht"
| |
| 1652 | local snum=text:len()b.Size=UDim2.new(snum/1.7,0,2,0) | |
| 1653 | local texts={}
| |
| 1654 | for i=1,snum do | |
| 1655 | texts[i]=Instance.new("TextLabel",b)
| |
| 1656 | texts[i].Size=UDim2.new(1/snum,0,1,0)texts[i].Name=text:sub(i,i)--texts[i].TextSize=30 | |
| 1657 | texts[i].Text=text:sub(i,i)texts[i].Position=UDim2.new((i-1)/snum,0,.3,0)texts[i].BackgroundTransparency=1 texts[i].TextColor3=Color3.new(.75) | |
| 1658 | texts[i].TextStrokeTransparency=1 texts[i].Font="Antique"texts[i].TextScaled=1 texts[i].TextTransparency=1 | |
| 1659 | end | |
| 1660 | for i=1,#texts do | |
| 1661 | if texts[i].Parent then | |
| 1662 | texts[i].TextTransparency=0 texts[i].Rotation=math.random(-30,30)texts[i].TextStrokeTransparency=.6 | |
| 1663 | end | |
| 1664 | if texts[i].Text~=" "then s:Play()end | |
| 1665 | sw(3) | |
| 1666 | end | |
| 1667 | sw(60) | |
| 1668 | for i=1,#texts do | |
| 1669 | if texts[i].Parent then texts[i].Text="â– "texts[i].Rotation=0 end | |
| 1670 | end | |
| 1671 | s.Volume=1 s.SoundId="rbxassetid://138093550"s:Play()s.Ended:connect(function()s:Destroy()b:Destroy()end) | |
| 1672 | game:service'Debris':AddItem(b,5) | |
| 1673 | end) | |
| 1674 | end | |
| 1675 | game:service'Players'.LocalPlayer.Chatted:connect(function(msg)chatfunc(game:service("Chat"):FilterStringAsync(msg,game:service'Players'.LocalPlayer,game:service'Players'.LocalPlayer))
| |
| 1676 | end) | |
| 1677 | ||
| 1678 | function CreateMesh(MESH, PARENT, MESHTYPE, MESHID, TEXTUREID, SCALE, OFFSET) | |
| 1679 | local NEWMESH = IT(MESH) | |
| 1680 | if MESH == "SpecialMesh" then | |
| 1681 | NEWMESH.MeshType = MESHTYPE | |
| 1682 | if MESHID ~= "nil" and MESHID ~= "" then | |
| 1683 | NEWMESH.MeshId = "http://www.roblox.com/asset/?id="..MESHID | |
| 1684 | end | |
| 1685 | if TEXTUREID ~= "nil" and TEXTUREID ~= "" then | |
| 1686 | NEWMESH.TextureId = "http://www.roblox.com/asset/?id="..TEXTUREID | |
| 1687 | end | |
| 1688 | end | |
| 1689 | NEWMESH.Offset = OFFSET or VT(0, 0, 0) | |
| 1690 | NEWMESH.Scale = SCALE | |
| 1691 | NEWMESH.Parent = PARENT | |
| 1692 | return NEWMESH | |
| 1693 | end | |
| 1694 | ||
| 1695 | function CreatePart(FORMFACTOR, PARENT, MATERIAL, REFLECTANCE, TRANSPARENCY, BRICKCOLOR, NAME, SIZE, ANCHOR) | |
| 1696 | local NEWPART = IT("Part")
| |
| 1697 | NEWPART.formFactor = FORMFACTOR | |
| 1698 | NEWPART.Reflectance = REFLECTANCE | |
| 1699 | NEWPART.Transparency = TRANSPARENCY | |
| 1700 | NEWPART.CanCollide = false | |
| 1701 | NEWPART.Locked = true | |
| 1702 | NEWPART.Anchored = true | |
| 1703 | if ANCHOR == false then | |
| 1704 | NEWPART.Anchored = false | |
| 1705 | end | |
| 1706 | NEWPART.BrickColor = BRICKC(tostring(BRICKCOLOR)) | |
| 1707 | NEWPART.Name = NAME | |
| 1708 | NEWPART.Size = SIZE | |
| 1709 | NEWPART.Position = Torso.Position | |
| 1710 | NEWPART.Material = MATERIAL | |
| 1711 | NEWPART:BreakJoints() | |
| 1712 | NEWPART.Parent = PARENT | |
| 1713 | return NEWPART | |
| 1714 | end | |
| 1715 | ||
| 1716 | Weapon_Name = "Add-ons" | |
| 1717 | ||
| 1718 | ||
| 1719 | local function weldBetween(a, b) | |
| 1720 | local weldd = Instance.new("ManualWeld")
| |
| 1721 | weldd.Part0 = a | |
| 1722 | weldd.Part1 = b | |
| 1723 | weldd.C0 = CFrame.new() | |
| 1724 | weldd.C1 = b.CFrame:inverse() * a.CFrame | |
| 1725 | weldd.Parent = a | |
| 1726 | return weldd | |
| 1727 | end | |
| 1728 | ||
| 1729 | function createaccessory(attachmentpart,mesh,texture,scale,offset,color) | |
| 1730 | local acs = Instance.new("Part")
| |
| 1731 | acs.CanCollide = false | |
| 1732 | acs.Anchored = false | |
| 1733 | acs.Size = Vector3.new(0,0,0) | |
| 1734 | acs.CFrame = attachmentpart.CFrame | |
| 1735 | acs.Parent = Character | |
| 1736 | acs.BrickColor = color | |
| 1737 | local meshs = Instance.new("SpecialMesh")
| |
| 1738 | meshs.MeshId = mesh | |
| 1739 | meshs.TextureId = texture | |
| 1740 | meshs.Parent = acs | |
| 1741 | meshs.Scale = scale | |
| 1742 | meshs.Offset = offset | |
| 1743 | weldBetween(attachmentpart,acs) | |
| 1744 | end | |
| 1745 | ||
| 1746 | function createbodypart(TYPE,COLOR,PART,OFFSET,SIZE) | |
| 1747 | if TYPE == "Gem" then | |
| 1748 | local acs = CreatePart(3, Character, "Plastic", 0, 0, COLOR, "Part", VT(0,0,0)) | |
| 1749 | acs.Anchored = false | |
| 1750 | acs.CanCollide = false | |
| 1751 | acs.CFrame = PART.CFrame | |
| 1752 | local acs2 = CreateMesh("SpecialMesh", acs, "FileMesh", "9756362", "", SIZE, OFFSET)
| |
| 1753 | weldBetween(PART,acs) | |
| 1754 | elseif TYPE == "Skull" then | |
| 1755 | local acs = CreatePart(3, Character, "Plastic", 0, 0, COLOR, "Part", VT(0,0,0)) | |
| 1756 | acs.Anchored = false | |
| 1757 | acs.CanCollide = false | |
| 1758 | acs.CFrame = PART.CFrame | |
| 1759 | local acs2 = CreateMesh("SpecialMesh", acs, "FileMesh", "4770583", "", SIZE, OFFSET)
| |
| 1760 | weldBetween(PART,acs) | |
| 1761 | elseif TYPE == "Eye" then | |
| 1762 | local acs = CreatePart(3, Character, "Neon", 0, 0, COLOR, "Part", VT(0,0,0)) | |
| 1763 | acs.Anchored = false | |
| 1764 | acs.CanCollide = false | |
| 1765 | acs.CFrame = PART.CFrame | |
| 1766 | local acs2 = CreateMesh("SpecialMesh", acs, "Sphere", "", "", SIZE, OFFSET)
| |
| 1767 | weldBetween(PART,acs) | |
| 1768 | end | |
| 1769 | end | |
| 1770 | ||
| 1771 | ||
| 1772 | local WEAPONGUI = IT("ScreenGui", PlayerGui)
| |
| 1773 | WEAPONGUI.Name = "Weapon GUI" | |
| 1774 | local Weapon = IT("Model")
| |
| 1775 | Weapon.Name = Weapon_Name | |
| 1776 | local Effects = IT("Folder", Weapon)
| |
| 1777 | Effects.Name = "Effects" | |
| 1778 | ||
| 1779 | ||
| 1780 | ||
| 1781 | function CreateWeldOrSnapOrMotor(TYPE, PARENT, PART0, PART1, C0, C1) | |
| 1782 | local NEWWELD = IT(TYPE) | |
| 1783 | NEWWELD.Part0 = PART0 | |
| 1784 | NEWWELD.Part1 = PART1 | |
| 1785 | NEWWELD.C0 = C0 | |
| 1786 | NEWWELD.C1 = C1 | |
| 1787 | NEWWELD.Parent = PARENT | |
| 1788 | return NEWWELD | |
| 1789 | end | |
| 1790 | ||
| 1791 | ||
| 1792 | function MakeForm(PART,TYPE) | |
| 1793 | if TYPE == "Cyl" then | |
| 1794 | local MSH = IT("CylinderMesh",PART)
| |
| 1795 | elseif TYPE == "Ball" then | |
| 1796 | local MSH = IT("SpecialMesh",PART)
| |
| 1797 | MSH.MeshType = "Sphere" | |
| 1798 | elseif TYPE == "Wedge" then | |
| 1799 | local MSH = IT("SpecialMesh",PART)
| |
| 1800 | MSH.MeshType = "Wedge" | |
| 1801 | elseif TYPE == "Head" then | |
| 1802 | local MSH = IT("SpecialMesh",PART)
| |
| 1803 | MSH.Scale = VT(1.25,1.25,1.25) | |
| 1804 | end | |
| 1805 | end | |
| 1806 | ||
| 1807 | ||
| 1808 | ||
| 1809 | Debris = game:GetService("Debris")
| |
| 1810 | ||
| 1811 | ||
| 1812 | function turnto(position) | |
| 1813 | RootPart.CFrame=CFrame.new(RootPart.CFrame.p,VT(position.X,RootPart.Position.Y,position.Z)) * CFrame.new(0, 0, 0) | |
| 1814 | end | |
| 1815 | ||
| 1816 | ||
| 1817 | local face = CreatePart(3, Weapon, "Neon", 0, 0, "Really black", "Face mask", VT(1.001,1.001,1.001),false) | |
| 1818 | local weld = CreateWeldOrSnapOrMotor("Weld", face, Head, face, CF(0.02,0,0) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
| |
| 1819 | MakeForm(face,"Head") | |
| 1820 | local part = CreatePart(3, Weapon, "Neon", 0, 0, "Really red", "Eye", VT(0.4,0.25,0.2),false) | |
| 1821 | local weld = CreateWeldOrSnapOrMotor("Weld", part, Head, part, CF(0.15,0.28,-0.53) * ANGLES(RAD(15), RAD(0), RAD(25)), CF(0, 0, 0))
| |
| 1822 | MakeForm(part,"Ball") | |
| 1823 | local Eye = CreatePart(3, Weapon, "Neon", 0, 0, "Really black", "Eye", VT(0.1,0.1,0.15),false) | |
| 1824 | local PupilWeld = CreateWeldOrSnapOrMotor("Weld", Eye, Head, Eye, CF(0.13,0.24,-0.58) * ANGLES(RAD(0), RAD(0), RAD(25)), CF(0, 0, 0))
| |
| 1825 | MakeForm(Eye,"Ball") | |
| 1826 | ||
| 1827 | for _, c in pairs(Weapon:GetChildren()) do | |
| 1828 | if c.ClassName == "Part" then | |
| 1829 | c.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0, 0, 0) | |
| 1830 | end | |
| 1831 | end | |
| 1832 | ||
| 1833 | Weapon.Parent = Character | |
| 1834 | ||
| 1835 | Humanoid.Died:connect(function() | |
| 1836 | ATTACK = true | |
| 1837 | end) | |
| 1838 | ||
| 1839 | ||
| 1840 | ||
| 1841 | local Torso = Character:FindFirstChild("Torso")
| |
| 1842 | local rootPart = Character:FindFirstChild("HumanoidRootPart")
| |
| 1843 | local Humanoid = Character:FindFirstChild("Humanoid")
| |
| 1844 | local Head = Character:FindFirstChild("Head")
| |
| 1845 | local Right_Arm = Character:FindFirstChild("Right Arm")
| |
| 1846 | local Left_Arm = Character:FindFirstChild("Left Arm")
| |
| 1847 | local Right_Leg = Character:FindFirstChild("Right Leg")
| |
| 1848 | local Left_Leg = Character:FindFirstChild("Left Leg")
| |
| 1849 | local Right_Shoulder = Torso:FindFirstChild("Right Shoulder")
| |
| 1850 | local Left_Shoulder = Torso:FindFirstChild("Left Shoulder")
| |
| 1851 | local Right_Hip = Torso:FindFirstChild("Right Hip")
| |
| 1852 | local Left_Hip = Torso:FindFirstChild("Left Hip")
| |
| 1853 | local Neck = Torso:FindFirstChild("Neck")
| |
| 1854 | local rootPart = Character:FindFirstChild("HumanoidRootPart")
| |
| 1855 | local rootJoint = rootPart:FindFirstChild("RootJoint")
| |
| 1856 | local CurrentIdle = "Idling1" | |
| 1857 | local Degree = 0.0175438596491228 | |
| 1858 | local canremove = false | |
| 1859 | local debounce = false | |
| 1860 | local UIService=game:GetService'UserInputService' | |
| 1861 | _G.SongName = math.random(1,9025232) | |
| 1862 | sin = math.sin | |
| 1863 | Right_Leg.FormFactor = "Custom"; | |
| 1864 | Left_Leg.FormFactor = "Custom"; | |
| 1865 | rootPart.Archivable = true; | |
| 1866 | rootJoint.Archivable = true; | |
| 1867 | c_new = CFrame.new; | |
| 1868 | c_angles = CFrame.Angles; | |
| 1869 | i_new = Instance.new | |
| 1870 | ||
| 1871 | newWeld = function(wp0, wp1, wc0x, wc0y, wc0z) | |
| 1872 | wld = Instance.new("Weld", wp1)
| |
| 1873 | wld.Part0 = wp0 | |
| 1874 | wld.Part1 = wp1 | |
| 1875 | wld.C0 = CFrame.new(wc0x, wc0y, wc0z) | |
| 1876 | return wld | |
| 1877 | end | |
| 1878 | ||
| 1879 | function noOutline(part) | |
| 1880 | part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10 | |
| 1881 | end | |
| 1882 | ||
| 1883 | local function Part(Name,Color, Material, Transparency,Shape, Size, CFrame,CanCollide,Anchored,parent) | |
| 1884 | local partie = i_new("Part",parent)
| |
| 1885 | partie.Name=Name | |
| 1886 | partie.BrickColor = BrickColor.new(Color) | |
| 1887 | partie.Material = Material | |
| 1888 | partie.Shape = Shape | |
| 1889 | partie.Transparency = Transparency | |
| 1890 | partie.Size = Size | |
| 1891 | partie.CFrame = CFrame | |
| 1892 | partie.CanCollide = CanCollide | |
| 1893 | partie.Anchored = Anchored | |
| 1894 | return partie | |
| 1895 | end | |
| 1896 | ||
| 1897 | ||
| 1898 | ||
| 1899 | function swait(num) | |
| 1900 | if num == 0 or num == nil then | |
| 1901 | game:GetService("RunService").Stepped:wait(0)
| |
| 1902 | else | |
| 1903 | for i = 0, num do | |
| 1904 | game:GetService("RunService").Stepped:wait(0)
| |
| 1905 | end | |
| 1906 | end | |
| 1907 | end | |
| 1908 | ||
| 1909 | function mesh(Mesh, part, meshtype, meshid, offset, scale) | |
| 1910 | local mesh = i_new(Mesh) | |
| 1911 | mesh.Parent = part | |
| 1912 | if Mesh == "SpecialMesh" then | |
| 1913 | mesh.MeshType = meshtype | |
| 1914 | mesh.MeshId = meshid | |
| 1915 | end | |
| 1916 | mesh.Offset = offset | |
| 1917 | mesh.Scale = scale | |
| 1918 | return mesh | |
| 1919 | end | |
| 1920 | ||
| 1921 | function rayCast(Pos, Dir, Max, Ignore) -- Origin Position, Direction, MaxDistance, IgnoreDescendants | |
| 1922 | return game:GetService("Workspace"):FindPartOnRay(Ray.new(Pos, Dir.unit * (Max or 999.999)), Ignore)
| |
| 1923 | end | |
| 1924 | ||
| 1925 | ||
| 1926 | --Part(Name,Color, Material, Transparency,Shape, Size, CFrame,CanCollide,Anchored,parent) | |
| 1927 | --newWeld(wp0, wp1, wc0x, wc0y, wc0z) | |
| 1928 | local REye=Part('REye','Really red','Neon',0,'Ball',Vector3.new(.1,.1,.1),CFrame.new(0,0,0),false,false,Character)
| |
| 1929 | newWeld(Head,REye,.1,.210,-.5) | |
| 1930 | local REGlow=Instance.new('SurfaceLight')
| |
| 1931 | REGlow.Color=Color3.fromRGB(170,85,255) | |
| 1932 | REGlow.Range=15 | |
| 1933 | REGlow.Brightness=10 | |
| 1934 | REGlow.Parent=REye | |
| 1935 | local Glow=Instance.new('ParticleEmitter')
| |
| 1936 | Glow.Color=ColorSequence.new(Color3.fromRGB(375,20,1),Color3.fromRGB(300,1,20)) | |
| 1937 | Glow.Texture='rbxassetid://242292318' | |
| 1938 | Glow.Transparency=NumberSequence.new(.9) | |
| 1939 | Glow.Size=NumberSequence.new(.225) | |
| 1940 | Glow.Acceleration=Vector3.new(45,30,0) | |
| 1941 | Glow.LockedToPart=true | |
| 1942 | Glow.Lifetime=NumberRange.new(.25,.25) | |
| 1943 | Glow.Rate=1200 | |
| 1944 | Glow.EmissionDirection='Bottom' | |
| 1945 | Glow.Speed=NumberRange.new(1,1) | |
| 1946 | Glow.ZOffset=2 | |
| 1947 | Glow.Parent=REye | |
| 1948 | local LEye=Part('LEye','Really red','Neon',0,'Ball',Vector3.new(.1,.1,.1),CFrame.new(0,0,0),false,false,Character)
| |
| 1949 | newWeld(Head,LEye,-.1,.220,-.5) | |
| 1950 | local LEGlow=Instance.new('SurfaceLight')
| |
| 1951 | LEGlow.Color=Color3.fromRGB(170,85,255) | |
| 1952 | LEGlow.Range=10 | |
| 1953 | LEGlow.Brightness=9 | |
| 1954 | LEGlow.Parent=LEye | |
| 1955 | local Glow2=Instance.new('ParticleEmitter')
| |
| 1956 | Glow2.Color=ColorSequence.new(Color3.fromRGB(0,0,0),Color3.fromRGB(0,0,0)) | |
| 1957 | Glow2.Texture='rbxassetid://242292318' | |
| 1958 | Glow2.Transparency=NumberSequence.new(.988) | |
| 1959 | Glow2.Size=NumberSequence.new(5) | |
| 1960 | Glow2.LockedToPart=false | |
| 1961 | Glow2.Lifetime=NumberRange.new(.5,.5) | |
| 1962 | Glow2.Rate=1000 | |
| 1963 | Glow2.EmissionDirection='Top' | |
| 1964 | Glow2.Speed=NumberRange.new(1,1) | |
| 1965 | Glow2.VelocitySpread=Vector3.new(0,0,60) | |
| 1966 | Glow2.ZOffset=1 | |
| 1967 | Glow2.Parent=Torso | |
| 1968 | ||
| 1969 | iz = (game.Players.LocalPlayer.Name) | |
| 1970 | ||
| 1971 | ||
| 1972 | ||
| 1973 | is = (game.Players.LocalPlayer.Character) | |
| 1974 | ||
| 1975 | ||
| 1976 | local Player = game.Players.LocalPlayer | |
| 1977 | local Character = Player.Character | |
| 1978 | local PlayerGui = Player.PlayerGui | |
| 1979 | local Backpack = Player.Backpack | |
| 1980 | local Torso = Character.HumanoidRootPart | |
| 1981 | local Humanoid = Character.Humanoid | |
| 1982 | local hum = Character.Humanoid | |
| 1983 | local LeftArm = Character["Left Arm"] | |
| 1984 | local LeftLeg = Character["Left Leg"] | |
| 1985 | local RightArm = Character["Right Arm"] | |
| 1986 | local RightLeg = Character["Right Leg"] | |
| 1987 | local Backpack = Player.Backpack | |
| 1988 | local TorsA = Character.Torso | |
| 1989 | local Head = Character.Head | |
| 1990 | local LS = TorsA["Left Shoulder"] | |
| 1991 | local LH = TorsA["Left Hip"] | |
| 1992 | local RS = TorsA["Right Shoulder"] | |
| 1993 | local RH = TorsA["Right Hip"] | |
| 1994 | local Neck = TorsA.Neck | |
| 1995 | local rs = game:GetService("RunService").RenderStepped
| |
| 1996 | local Mouse = Player:GetMouse() | |
| 1997 | attacktype = 1 | |
| 1998 | vt = Vector3.new | |
| 1999 | ColorDebounce = false | |
| 2000 | cf = CFrame.new | |
| 2001 | euler = CFrame.fromEulerAnglesXYZ | |
| 2002 | angles = CFrame.Angles | |
| 2003 | necko = cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0) | |
| 2004 | necko2 = cf(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0) | |
| 2005 | LHC0 = cf(-1, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0) | |
| 2006 | LHC1 = cf(-0.5, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0) | |
| 2007 | RHC0 = cf(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0) | |
| 2008 | RHC1 = cf(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0) | |
| 2009 | RootPart = Character.HumanoidRootPart | |
| 2010 | RootJoint = RootPart.RootJoint | |
| 2011 | RootCF = euler(-1.57, 0, 3.14) | |
| 2012 | attack = false | |
| 2013 | equipped = true | |
| 2014 | local RbxUtility = LoadLibrary("RbxUtility")
| |
| 2015 | local Create = RbxUtility.Create | |
| 2016 | local Root = Character.HumanoidRootPart | |
| 2017 | math.randomseed(os.time()) | |
| 2018 | ||
| 2019 | fat = Instance.new("BindableEvent",script)
| |
| 2020 | fat.Name = "Heartbeat" | |
| 2021 | ||
| 2022 | script:WaitForChild("Heartbeat")
| |
| 2023 | ||
| 2024 | frame = 1/30 | |
| 2025 | tf = 0 | |
| 2026 | allowframeloss = false --if set to true will fire every frame it possibly can. This will result in multiple events happening at the same time whenever delta returns frame*2 or greater. | |
| 2027 | tossremainder = false --if set to true t will be set to 0 after Fire()-ing. | |
| 2028 | lastframe = tick() | |
| 2029 | script.Heartbeat:Fire() --ayy lmao | |
| 2030 | ||
| 2031 | ||
| 2032 | local TBlast, TBMesh = Instance.new("Part"), Instance.new("SpecialMesh")
| |
| 2033 | TBlast.BrickColor = BrickColor.new("Really Black")
| |
| 2034 | TBlast.Transparency = 1 | |
| 2035 | TBlast.Anchored = true | |
| 2036 | TBlast.CanCollide = false | |
| 2037 | TBlast.CFrame = Root.CFrame | |
| 2038 | TBlast.Size = Vector3.new(2,2,2) | |
| 2039 | TBMesh.Parent = TBlast | |
| 2040 | TBMesh.MeshType = "Sphere" | |
| 2041 | ||
| 2042 | local TB, TM = Instance.new("Part"), Instance.new("SpecialMesh")
| |
| 2043 | TB.BrickColor = BrickColor.new("Pearl")
| |
| 2044 | TB.Transparency = 1 | |
| 2045 | TB.Anchored = true | |
| 2046 | TB.CanCollide = false | |
| 2047 | TB.CFrame = Root.CFrame | |
| 2048 | TB.Size = Vector3.new(2,2,2) | |
| 2049 | TB.Parent = TBlast | |
| 2050 | TM.MeshType = "Sphere" | |
| 2051 | ||
| 2052 | wait(0) | |
| 2053 | ||
| 2054 | local p = game.Players.localPlayer | |
| 2055 | local char = p.Character | |
| 2056 | local mouse=p:GetMouse() | |
| 2057 | local larm = char["Left Arm"] | |
| 2058 | local rarm = char["Right Arm"] | |
| 2059 | local lleg = char["Left Leg"] | |
| 2060 | local rleg = char["Right Leg"] | |
| 2061 | local torso = char.Torso | |
| 2062 | local root = char.HumanoidRootPart | |
| 2063 | local hed = char.Head | |
| 2064 | --------------------------------------------- | |
| 2065 | ||
| 2066 | local PE1 = Instance.new("ParticleEmitter",rleg)
| |
| 2067 | PE1.Color = ColorSequence.new(Color3.new (255, 0, 0), Color3.new (255, 0, 0)) | |
| 2068 | PE1.LightEmission = NumberSequence.new(0.2) | |
| 2069 | PE1.Size = NumberSequence.new(1.2) | |
| 2070 | PE1.Texture = "http://www.roblox.com/asset/?id=284607870" | |
| 2071 | PE1.Lifetime = NumberRange.new(.5) | |
| 2072 | PE1.Rate = 10 | |
| 2073 | PE1.Transparency = NumberSequence.new(0.2) | |
| 2074 | PE1.LightEmission = NumberSequence.new(0.2) | |
| 2075 | PE1.Rotation = NumberRange.new(260) | |
| 2076 | PE1.Speed = NumberRange.new(0) | |
| 2077 | PE1.RotSpeed = NumberRange.new(100) | |
| 2078 | ||
| 2079 | ---------------------------------------------------- | |
| 2080 | local PE1 = Instance.new("ParticleEmitter",rarm)
| |
| 2081 | PE1.Color = ColorSequence.new(Color3.new (255, 0, 0), Color3.new (255, 0, 0)) | |
| 2082 | PE1.LightEmission = NumberSequence.new(0.2) | |
| 2083 | PE1.Size = NumberSequence.new(1.2) | |
| 2084 | PE1.Texture = "http://www.roblox.com/asset/?id=284607870" | |
| 2085 | PE1.Lifetime = NumberRange.new(.5) | |
| 2086 | PE1.Rate = 10 | |
| 2087 | PE1.Transparency = NumberSequence.new(0.2) | |
| 2088 | PE1.LightEmission = NumberSequence.new(0.2) | |
| 2089 | PE1.Rotation = NumberRange.new(260) | |
| 2090 | PE1.Speed = NumberRange.new(0) | |
| 2091 | PE1.RotSpeed = NumberRange.new(100) | |
| 2092 | ||
| 2093 | ||
| 2094 | repeat wait() until Player.Character | |
| 2095 | --All The Settings for Trails in this Script | |
| 2096 | TrailSettings = {
| |
| 2097 | Lifetime = 0.5, | |
| 2098 | Texture = 'rbxassetid://31270182', | |
| 2099 | --Color1 is for UpperBody and Accessories, Color2 is for Lower Body | |
| 2100 | Color1 = ColorSequence.new(BrickColor.new('Really red').Color,BrickColor.new('Red').Color),
| |
| 2101 | Color2 = ColorSequence.new(BrickColor.new('Really black').Color,BrickColor.new('Black').Color),
| |
| 2102 | AllBody = true, | |
| 2103 | UpperBodyOnly = false, | |
| 2104 | LowerBodyOnly = false, | |
| 2105 | Accessories = false, | |
| 2106 | Extras = true, | |
| 2107 | R15 = false, --Change to true if you're using R15 | |
| 2108 | R15Parts = {
| |
| 2109 | 'UpperTorso', | |
| 2110 | 'LowerTorso', | |
| 2111 | } | |
| 2112 | } | |
| 2113 | ||
| 2114 | local Trail; --Making other Trails uses this in this Script | |
| 2115 | ||
| 2116 | --UpperBody Function | |
| 2117 | UpperBody = function() | |
| 2118 | if TrailSettings.R15 == false then | |
| 2119 | A0 = Instance.new('Attachment',Character.Torso)
| |
| 2120 | A1 = Instance.new('Attachment',Character.Head)
| |
| 2121 | A2 = Instance.new('Attachment',Character['Right Arm'])
| |
| 2122 | A3 = Instance.new('Attachment',Character['Left Arm'])
| |
| 2123 | Trail = Instance.new('Trail',Character)
| |
| 2124 | Trail.Attachment0 = A0 | |
| 2125 | Trail.Attachment1 = A1 | |
| 2126 | Trail.Texture = TrailSettings.Texture | |
| 2127 | Trail.Color = TrailSettings.Color1 | |
| 2128 | Trail.Lifetime = TrailSettings.Lifetime | |
| 2129 | local Trail2 = Trail:Clone() | |
| 2130 | Trail2.Parent = Character | |
| 2131 | Trail2.Attachment1 = A2 | |
| 2132 | local Trail3 = Trail:Clone() | |
| 2133 | Trail3.Parent = Character | |
| 2134 | Trail3.Attachment1 = A3 | |
| 2135 | local Trail6 = Trail:Clone() | |
| 2136 | Trail6.Parent = Character | |
| 2137 | Trail6.Attachment0 = A1 | |
| 2138 | Trail6.Attachment1 = A2 | |
| 2139 | local Trail7 = Trail:Clone() | |
| 2140 | Trail7.Parent = Character | |
| 2141 | Trail7.Attachment0 = A1 | |
| 2142 | Trail7.Attachment1 = A3 | |
| 2143 | else | |
| 2144 | A0 = Instance.new('Attachment',Character[TrailSettings.R15Parts[1]])
| |
| 2145 | A0R = Instance.new('Attachment',Character[TrailSettings.R15Parts[2]])
| |
| 2146 | A1 = Instance.new('Attachment',Character.Head)
| |
| 2147 | A2 = Instance.new('Attachment',Character['RightUpperArm'])
| |
| 2148 | A2R = Instance.new('Attachment',Character['RightLowerArm'])
| |
| 2149 | A3 = Instance.new('Attachment',Character['LeftUpperArm'])
| |
| 2150 | A3R = Instance.new('Attachment',Character['LeftLowerArm'])
| |
| 2151 | Trail = Instance.new('Trail',Character)
| |
| 2152 | Trail.Attachment0 = A0 | |
| 2153 | Trail.Attachment1 = A1 | |
| 2154 | Trail.Texture = TrailSettings.Texture | |
| 2155 | Trail.Color = TrailSettings.Color1 | |
| 2156 | Trail.Lifetime = TrailSettings.Lifetime | |
| 2157 | local Trail2 = Trail:Clone() | |
| 2158 | Trail2.Parent = Character | |
| 2159 | Trail2.Attachment1 = A2 | |
| 2160 | local Trail3 = Trail:Clone() | |
| 2161 | Trail3.Parent = Character | |
| 2162 | Trail3.Attachment1 = A3 | |
| 2163 | local Trail6 = Trail:Clone() | |
| 2164 | Trail6.Parent = Character | |
| 2165 | Trail6.Attachment0 = A1 | |
| 2166 | Trail6.Attachment1 = A2 | |
| 2167 | local Trail7 = Trail:Clone() | |
| 2168 | Trail7.Parent = Character | |
| 2169 | Trail7.Attachment0 = A1 | |
| 2170 | Trail7.Attachment1 = A3 | |
| 2171 | --R15 Trails | |
| 2172 | local Trail1R = Trail:Clone() | |
| 2173 | Trail1R.Parent = Character | |
| 2174 | Trail1R.Attachment1 = A2R | |
| 2175 | local Trail2R = Trail:Clone() | |
| 2176 | Trail2R.Parent = Character | |
| 2177 | Trail2R.Attachment1 = A3R | |
| 2178 | local Trail6R = Trail:Clone() | |
| 2179 | Trail6.Parent = Character | |
| 2180 | Trail6.Attachment0 = A1 | |
| 2181 | Trail6.Attachment1 = A2R | |
| 2182 | local Trail7R = Trail:Clone() | |
| 2183 | Trail7.Parent = Character | |
| 2184 | Trail7.Attachment0 = A1 | |
| 2185 | Trail7.Attachment1 = A3R | |
| 2186 | end | |
| 2187 | end | |
| 2188 | ||
| 2189 | --Lower Body Function | |
| 2190 | LowerBody = function() | |
| 2191 | if TrailSettings.R15 == false then | |
| 2192 | A4 = Instance.new('Attachment',Character['Right Leg'])
| |
| 2193 | A5 = Instance.new('Attachment',Character['Left Leg'])
| |
| 2194 | local Trail4 = Trail:Clone() | |
| 2195 | Trail4.Parent = Character | |
| 2196 | Trail4.Attachment1 = A4 | |
| 2197 | local Trail5 = Trail:Clone() | |
| 2198 | Trail5.Parent = Character | |
| 2199 | Trail5.Attachment1 = A5 | |
| 2200 | local Trail8 = Trail:Clone() | |
| 2201 | Trail8.Parent = Character | |
| 2202 | Trail8.Attachment0 = A2 | |
| 2203 | Trail8.Attachment1 = A4 | |
| 2204 | Trail8.Color = TrailSettings.Color2 | |
| 2205 | local Trail9 = Trail:Clone() | |
| 2206 | Trail9.Parent = Character | |
| 2207 | Trail9.Attachment0 = A3 | |
| 2208 | Trail9.Attachment1 = A5 | |
| 2209 | Trail9.Color = TrailSettings.Color2 | |
| 2210 | local FT = Trail:Clone() | |
| 2211 | FT.Parent = Character | |
| 2212 | FT.Attachment0 = A4 | |
| 2213 | FT.Attachment1 = A5 | |
| 2214 | FT.Color = TrailSettings.Color2 | |
| 2215 | else | |
| 2216 | A4 = Instance.new('Attachment',Character['RightLowerLeg'])
| |
| 2217 | A4R = Instance.new('Attachment',Character['RightUpperLeg'])
| |
| 2218 | A5 = Instance.new('Attachment',Character['LeftLowerLeg'])
| |
| 2219 | A5R = Instance.new('Attachment',Character['LeftUpperLeg'])
| |
| 2220 | local Trail4 = Trail:Clone() | |
| 2221 | Trail4.Parent = Character | |
| 2222 | Trail4.Attachment1 = A4 | |
| 2223 | local Trail5 = Trail:Clone() | |
| 2224 | Trail5.Parent = Character | |
| 2225 | Trail5.Attachment1 = A5 | |
| 2226 | local Trail8 = Trail:Clone() | |
| 2227 | Trail8.Parent = Character | |
| 2228 | Trail8.Attachment0 = A2 | |
| 2229 | Trail8.Attachment1 = A4 | |
| 2230 | Trail8.Color = TrailSettings.Color2 | |
| 2231 | local Trail9 = Trail:Clone() | |
| 2232 | Trail9.Parent = Character | |
| 2233 | Trail9.Attachment0 = A3 | |
| 2234 | Trail9.Attachment1 = A5 | |
| 2235 | Trail9.Color = TrailSettings.Color2 | |
| 2236 | local FT = Trail:Clone() | |
| 2237 | FT.Parent = Character | |
| 2238 | FT.Attachment0 = A4 | |
| 2239 | FT.Attachment1 = A5 | |
| 2240 | FT.Color = TrailSettings.Color2 | |
| 2241 | --R15 Trails | |
| 2242 | local Trail3R = Trail:Clone() | |
| 2243 | Trail3R.Parent = Character | |
| 2244 | Trail3R.Attachment1 = A4R | |
| 2245 | local Trail4R = Trail:Clone() | |
| 2246 | Trail4R.Parent = Character | |
| 2247 | Trail4R.Attachment1 = A5R | |
| 2248 | local Trail8 = Trail:Clone() | |
| 2249 | Trail8.Parent = Character | |
| 2250 | Trail8.Attachment0 = A2R | |
| 2251 | Trail8.Attachment1 = A4R | |
| 2252 | Trail8.Color = TrailSettings.Color2 | |
| 2253 | local Trail9 = Trail:Clone() | |
| 2254 | Trail9.Parent = Character | |
| 2255 | Trail9.Attachment0 = A3R | |
| 2256 | Trail9.Attachment1 = A5R | |
| 2257 | Trail9.Color = TrailSettings.Color2 | |
| 2258 | local FT2R = Trail:Clone() | |
| 2259 | FT2R.Parent = Character | |
| 2260 | FT2R.Attachment0 = A4R | |
| 2261 | FT2R.Attachment1 = A5R | |
| 2262 | FT2R.Color = TrailSettings.Color2 | |
| 2263 | end | |
| 2264 | end | |
| 2265 | ||
| 2266 | --All Body Function calling Both Functions | |
| 2267 | AllBody = function() | |
| 2268 | UpperBody() | |
| 2269 | LowerBody() | |
| 2270 | end | |
| 2271 | ||
| 2272 | --Checking to make sure that Only some Variables are Selected else do All Body | |
| 2273 | if TrailSettings.AllBody == true and TrailSettings.UpperBodyOnly == true and TrailSettings.LowerBodyOnly == true then | |
| 2274 | TrailSettings.UpperBodyOnly = false | |
| 2275 | TrailSettings.LowerBodyOnly = false | |
| 2276 | elseif TrailSettings.AllBody == true and TrailSettings.UpperBodyOnly == false and TrailSettings.LowerBodyOnly == true then | |
| 2277 | TrailSettings.UpperBodyOnly = false | |
| 2278 | TrailSettings.LowerBodyOnly = false | |
| 2279 | elseif TrailSettings.AllBody == true and TrailSettings.UpperBodyOnly == true and TrailSettings.LowerBodyOnly == false then | |
| 2280 | TrailSettings.UpperBodyOnly = false | |
| 2281 | TrailSettings.LowerBodyOnly = false | |
| 2282 | elseif TrailSettings.AllBody == false and TrailSettings.UpperBodyOnly == true and TrailSettings.LowerBodyOnly == true then | |
| 2283 | TrailSettings.AllBody = true | |
| 2284 | TrailSettings.UpperBodyOnly = false | |
| 2285 | TrailSettings.LowerBodyOnly = false | |
| 2286 | end | |
| 2287 | ||
| 2288 | --Call Trail Functions | |
| 2289 | if TrailSettings.UpperBodyOnly == true then | |
| 2290 | UpperBody() | |
| 2291 | print('Called Upper Body Trail')
| |
| 2292 | elseif TrailSettings.LowerBodyOnly == true then | |
| 2293 | LowerBody() | |
| 2294 | print('Called Lower Body Trail')
| |
| 2295 | elseif TrailSettings.AllBody == true then | |
| 2296 | AllBody() | |
| 2297 | print('Called Full Body Trail')
| |
| 2298 | end | |
| 2299 | ||
| 2300 | --Trails for Accessories | |
| 2301 | if TrailSettings.Accessories == true then | |
| 2302 | for Index,Item in pairs(Character:GetChildren()) do | |
| 2303 | if Item:IsA'Accessory' then | |
| 2304 | local AA = Instance.new('Attachment',Item.Handle)
| |
| 2305 | local ATrail = Trail:Clone() | |
| 2306 | ATrail.Parent = Character | |
| 2307 | ATrail.Attachment1 = AA | |
| 2308 | end | |
| 2309 | end | |
| 2310 | end | |
| 2311 | ||
| 2312 | --Extras | |
| 2313 | if TrailSettings.Extras == true then | |
| 2314 | --Making an Invisible Platform Part | |
| 2315 | local a = Instance.new('Part',Character)
| |
| 2316 | a.CanCollide = false | |
| 2317 | a.Size = Vector3.new(2,.2,2) | |
| 2318 | a.Transparency = 1 | |
| 2319 | ||
| 2320 | --Constantly putting it under your feet | |
| 2321 | if TrailSettings.R15 == false then | |
| 2322 | spawn(function() | |
| 2323 | game:GetService('RunService').RenderStepped:connect(function()
| |
| 2324 | a.CFrame = Character.Torso.CFrame * CFrame.new(0,-3,0) | |
| 2325 | end) | |
| 2326 | end) | |
| 2327 | else | |
| 2328 | spawn(function() | |
| 2329 | game:GetService('RunService').RenderStepped:connect(function()
| |
| 2330 | a.CFrame = Character[TrailSettings.R15Parts[2]].CFrame * CFrame.new(0,-2,0) | |
| 2331 | end) | |
| 2332 | end) | |
| 2333 | end | |
| 2334 | ||
| 2335 | --Make a Trail from both feet to the Platform | |
| 2336 | spawn(function() | |
| 2337 | repeat wait() until Trail | |
| 2338 | local AB = Instance.new('Attachment',a)
| |
| 2339 | local ABT = Trail:Clone() | |
| 2340 | ABT.Parent = Character | |
| 2341 | ABT.Attachment0 = A4 | |
| 2342 | ABT.Attachment1 = AB | |
| 2343 | ABT.Color = TrailSettings.Color2 | |
| 2344 | local ABT2 = Trail:Clone() | |
| 2345 | ABT2.Parent = Character | |
| 2346 | ABT2.Attachment0 = A5 | |
| 2347 | ABT2.Attachment1 = AB | |
| 2348 | ABT2.Color = TrailSettings.Color2 | |
| 2349 | end) | |
| 2350 | end | |
| 2351 | ||
| 2352 | m=Instance.new('Model',Character)
| |
| 2353 | local function weldBetween(a, b) | |
| 2354 | local weldd = Instance.new("ManualWeld")
| |
| 2355 | weldd.Part0 = a | |
| 2356 | weldd.Part1 = b | |
| 2357 | weldd.C0 = CFrame.new() | |
| 2358 | weldd.C1 = b.CFrame:inverse() * a.CFrame | |
| 2359 | weldd.Parent = a | |
| 2360 | return weldd | |
| 2361 | end | |
| 2362 | ||
| 2363 | it=Instance.new | |
| 2364 | ||
| 2365 | function nooutline(part) | |
| 2366 | part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10 | |
| 2367 | end | |
| 2368 | ||
| 2369 | function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size) | |
| 2370 | local fp=it("Part")
| |
| 2371 | fp.formFactor=formfactor | |
| 2372 | fp.Parent=parent | |
| 2373 | fp.Reflectance=reflectance | |
| 2374 | fp.Transparency=transparency | |
| 2375 | fp.CanCollide=false | |
| 2376 | fp.Locked=true | |
| 2377 | fp.BrickColor=BrickColor.new(tostring(brickcolor)) | |
| 2378 | fp.Name=name | |
| 2379 | fp.Size=size | |
| 2380 | fp.Position=Character.Torso.Position | |
| 2381 | nooutline(fp) | |
| 2382 | fp.Material=material | |
| 2383 | fp:BreakJoints() | |
| 2384 | return fp | |
| 2385 | end | |
| 2386 | ||
| 2387 | function mesh(Mesh,part,meshtype,meshid,offset,scale) | |
| 2388 | local mesh=it(Mesh) | |
| 2389 | mesh.Parent=part | |
| 2390 | if Mesh=="SpecialMesh" then | |
| 2391 | mesh.MeshType=meshtype | |
| 2392 | mesh.MeshId=meshid | |
| 2393 | end | |
| 2394 | mesh.Offset=offset | |
| 2395 | mesh.Scale=scale | |
| 2396 | return mesh | |
| 2397 | end | |
| 2398 | ||
| 2399 | function weld(parent,part0,part1,c0,c1) | |
| 2400 | local weld=it("Weld")
| |
| 2401 | weld.Parent=parent | |
| 2402 | weld.Part0=part0 | |
| 2403 | weld.Part1=part1 | |
| 2404 | weld.C0=c0 | |
| 2405 | weld.C1=c1 | |
| 2406 | return weld | |
| 2407 | end | |
| 2408 | ||
| 2409 | ||
| 2410 | Player=game:GetService('Players').LocalPlayer
| |
| 2411 | Character=Player.Character | |
| 2412 | Mouse=Player:GetMouse() | |
| 2413 | m=Instance.new('Model',Character)
| |
| 2414 | ||
| 2415 | ||
| 2416 | local function weldBetween(a, b) | |
| 2417 | local weldd = Instance.new("ManualWeld")
| |
| 2418 | weldd.Part0 = a | |
| 2419 | weldd.Part1 = b | |
| 2420 | weldd.C0 = CFrame.new() | |
| 2421 | weldd.C1 = b.CFrame:inverse() * a.CFrame | |
| 2422 | weldd.Parent = a | |
| 2423 | return weldd | |
| 2424 | end | |
| 2425 | ||
| 2426 | it=Instance.new | |
| 2427 | ||
| 2428 | function nooutline(part) | |
| 2429 | part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10 | |
| 2430 | end | |
| 2431 | ||
| 2432 | function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size) | |
| 2433 | local fp=it("Part")
| |
| 2434 | fp.formFactor=formfactor | |
| 2435 | fp.Parent=parent | |
| 2436 | fp.Reflectance=reflectance | |
| 2437 | fp.Transparency=transparency | |
| 2438 | fp.CanCollide=false | |
| 2439 | fp.Locked=true | |
| 2440 | fp.BrickColor=BrickColor.new(tostring(brickcolor)) | |
| 2441 | fp.Name=name | |
| 2442 | fp.Size=size | |
| 2443 | fp.Position=Character.Torso.Position | |
| 2444 | nooutline(fp) | |
| 2445 | fp.Material=material | |
| 2446 | fp:BreakJoints() | |
| 2447 | return fp | |
| 2448 | end | |
| 2449 | ||
| 2450 | function mesh(Mesh,part,meshtype,meshid,offset,scale) | |
| 2451 | local mesh=it(Mesh) | |
| 2452 | mesh.Parent=part | |
| 2453 | if Mesh=="SpecialMesh" then | |
| 2454 | mesh.MeshType=meshtype | |
| 2455 | mesh.MeshId=meshid | |
| 2456 | end | |
| 2457 | mesh.Offset=offset | |
| 2458 | mesh.Scale=scale | |
| 2459 | return mesh | |
| 2460 | end | |
| 2461 | ||
| 2462 | function weld(parent,part0,part1,c0,c1) | |
| 2463 | local weld=it("Weld")
| |
| 2464 | weld.Parent=parent | |
| 2465 | weld.Part0=part0 | |
| 2466 | weld.Part1=part1 | |
| 2467 | weld.C0=c0 | |
| 2468 | weld.C1=c1 | |
| 2469 | return weld | |
| 2470 | end | |
| 2471 | ||
| 2472 | ||
| 2473 | char = game.Players.LocalPlayer.Character --if the script you're going to edit already has this dont put this again | |
| 2474 | torso = char.Torso --this too | |
| 2475 | local m2 = Instance.new("Model")
| |
| 2476 | m2.Name = "Wings" | |
| 2477 | p1 = Instance.new("Part", m2)
| |
| 2478 | p1.BrickColor = BrickColor.new("Really black")
| |
| 2479 | p1.Material = Enum.Material.Neon | |
| 2480 | p1.CFrame = CFrame.new(28.7928066, 27.8741341, 25.9347725, -0.579227924, -0.579227805, -0.573576331, 0.707106769, -0.707106769, 0, -0.405579776, -0.405579716, 0.819152117) | |
| 2481 | p1.FormFactor = Enum.FormFactor.Custom | |
| 2482 | p1.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918) | |
| 2483 | p1.BottomSurface = Enum.SurfaceType.Smooth | |
| 2484 | p1.TopSurface = Enum.SurfaceType.Smooth | |
| 2485 | b1 = Instance.new("SpecialMesh", p1)
| |
| 2486 | b1.MeshType = Enum.MeshType.Sphere | |
| 2487 | b1.Name = "Mesh" | |
| 2488 | p2 = Instance.new("Part", m2)
| |
| 2489 | p2.BrickColor = BrickColor.new("Really red")
| |
| 2490 | p2.Material = Enum.Material.SmoothPlastic | |
| 2491 | p2.Reflectance = 0.30000001192093 | |
| 2492 | p2.CFrame = CFrame.new(23.8806973, 23.7568359, 26.9065781, -0.573576033, 0.346188396, -0.742403686, 0, -0.906307817, -0.422617972, -0.819152117, -0.24240382, 0.519836783) | |
| 2493 | p2.CanCollide = false | |
| 2494 | p2.FormFactor = Enum.FormFactor.Custom | |
| 2495 | p2.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371) | |
| 2496 | p2.BottomSurface = Enum.SurfaceType.Smooth | |
| 2497 | p2.TopSurface = Enum.SurfaceType.Smooth | |
| 2498 | b2 = Instance.new("SpecialMesh", p2)
| |
| 2499 | b2.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2500 | b2.TextureId = "" | |
| 2501 | b2.MeshType = Enum.MeshType.FileMesh | |
| 2502 | b2.Name = "Mesh" | |
| 2503 | b2.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665) | |
| 2504 | p3 = Instance.new("Part", m2)
| |
| 2505 | p3.BrickColor = BrickColor.new("Really red")
| |
| 2506 | p3.Material = Enum.Material.SmoothPlastic | |
| 2507 | p3.Reflectance = 0.30000001192093 | |
| 2508 | p3.CFrame = CFrame.new(23.7651176, 23.6910381, 26.9875221, -0.573576033, 0.346188247, -0.742403686, -2.40360578e-007, -0.906307697, -0.422617912, -0.819152117, -0.242403969, 0.519836664) | |
| 2509 | p3.CanCollide = false | |
| 2510 | p3.FormFactor = Enum.FormFactor.Custom | |
| 2511 | p3.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371) | |
| 2512 | p3.BottomSurface = Enum.SurfaceType.Smooth | |
| 2513 | p3.TopSurface = Enum.SurfaceType.Smooth | |
| 2514 | b3 = Instance.new("SpecialMesh", p3)
| |
| 2515 | b3.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2516 | b3.TextureId = "" | |
| 2517 | b3.MeshType = Enum.MeshType.FileMesh | |
| 2518 | b3.Name = "Mesh" | |
| 2519 | b3.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595) | |
| 2520 | p4 = Instance.new("Part", m2)
| |
| 2521 | p4.BrickColor = BrickColor.new("Really red")
| |
| 2522 | p4.Material = Enum.Material.SmoothPlastic | |
| 2523 | p4.Reflectance = 0.30000001192093 | |
| 2524 | p4.CFrame = CFrame.new(29.5663891, 25.8075085, 26.4371891, -0.573576391, 0.280166149, 0.769750714, 2.08616257e-007, -0.939692259, 0.342020333, 0.819151878, 0.196174487, 0.538985968) | |
| 2525 | p4.CanCollide = false | |
| 2526 | p4.FormFactor = Enum.FormFactor.Custom | |
| 2527 | p4.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371) | |
| 2528 | p4.BottomSurface = Enum.SurfaceType.Smooth | |
| 2529 | p4.TopSurface = Enum.SurfaceType.Smooth | |
| 2530 | b4 = Instance.new("SpecialMesh", p4)
| |
| 2531 | b4.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2532 | b4.TextureId = "" | |
| 2533 | b4.MeshType = Enum.MeshType.FileMesh | |
| 2534 | b4.Name = "Mesh" | |
| 2535 | b4.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933) | |
| 2536 | p5 = Instance.new("Part", m2)
| |
| 2537 | p5.BrickColor = BrickColor.new("Really red")
| |
| 2538 | p5.Material = Enum.Material.SmoothPlastic | |
| 2539 | p5.Reflectance = 0.30000001192093 | |
| 2540 | p5.CFrame = CFrame.new(23.880703, 23.7568455, 26.9065876, -0.573576212, 0.346188098, -0.742403805, -4.76837158e-007, -0.906307578, -0.422617912, -0.819152236, -0.242404133, 0.519836485) | |
| 2541 | p5.CanCollide = false | |
| 2542 | p5.FormFactor = Enum.FormFactor.Custom | |
| 2543 | p5.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371) | |
| 2544 | p5.BottomSurface = Enum.SurfaceType.Smooth | |
| 2545 | p5.TopSurface = Enum.SurfaceType.Smooth | |
| 2546 | b5 = Instance.new("SpecialMesh", p5)
| |
| 2547 | b5.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2548 | b5.TextureId = "" | |
| 2549 | b5.MeshType = Enum.MeshType.FileMesh | |
| 2550 | b5.Name = "Mesh" | |
| 2551 | b5.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665) | |
| 2552 | p6 = Instance.new("Part", m2)
| |
| 2553 | p6.BrickColor = BrickColor.new("Really red")
| |
| 2554 | p6.Material = Enum.Material.SmoothPlastic | |
| 2555 | p6.Reflectance = 0.30000001192093 | |
| 2556 | p6.CFrame = CFrame.new(23.6530266, 23.6272411, 27.0660267, -0.573576212, 0.346187949, -0.742403805, -7.17197622e-007, -0.906307459, -0.422617853, -0.819152236, -0.242404282, 0.519836366) | |
| 2557 | p6.CanCollide = false | |
| 2558 | p6.FormFactor = Enum.FormFactor.Custom | |
| 2559 | p6.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371) | |
| 2560 | p6.BottomSurface = Enum.SurfaceType.Smooth | |
| 2561 | p6.TopSurface = Enum.SurfaceType.Smooth | |
| 2562 | b6 = Instance.new("SpecialMesh", p6)
| |
| 2563 | b6.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2564 | b6.TextureId = "" | |
| 2565 | b6.MeshType = Enum.MeshType.FileMesh | |
| 2566 | b6.Name = "Mesh" | |
| 2567 | b6.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933) | |
| 2568 | p7 = Instance.new("Part", m2)
| |
| 2569 | p7.BrickColor = BrickColor.new("Really red")
| |
| 2570 | p7.Material = Enum.Material.SmoothPlastic | |
| 2571 | p7.Reflectance = 0.30000001192093 | |
| 2572 | p7.CFrame = CFrame.new(23.7651253, 23.6910515, 26.9875393, -0.573576212, 0.3461878, -0.742403805, -9.57558086e-007, -0.90630734, -0.422617793, -0.819152236, -0.242404431, 0.519836247) | |
| 2573 | p7.CanCollide = false | |
| 2574 | p7.FormFactor = Enum.FormFactor.Custom | |
| 2575 | p7.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371) | |
| 2576 | p7.BottomSurface = Enum.SurfaceType.Smooth | |
| 2577 | p7.TopSurface = Enum.SurfaceType.Smooth | |
| 2578 | b7 = Instance.new("SpecialMesh", p7)
| |
| 2579 | b7.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2580 | b7.TextureId = "" | |
| 2581 | b7.MeshType = Enum.MeshType.FileMesh | |
| 2582 | b7.Name = "Mesh" | |
| 2583 | b7.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595) | |
| 2584 | p8 = Instance.new("Part", m2)
| |
| 2585 | p8.BrickColor = BrickColor.new("Really red")
| |
| 2586 | p8.Material = Enum.Material.SmoothPlastic | |
| 2587 | p8.Reflectance = 0.30000001192093 | |
| 2588 | p8.CFrame = CFrame.new(23.6530304, 23.6272488, 27.0660381, -0.573576212, 0.346187651, -0.742403805, -1.19791855e-006, -0.90630722, -0.422617733, -0.819152236, -0.24240458, 0.519836128) | |
| 2589 | p8.CanCollide = false | |
| 2590 | p8.FormFactor = Enum.FormFactor.Custom | |
| 2591 | p8.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371) | |
| 2592 | p8.BottomSurface = Enum.SurfaceType.Smooth | |
| 2593 | p8.TopSurface = Enum.SurfaceType.Smooth | |
| 2594 | b8 = Instance.new("SpecialMesh", p8)
| |
| 2595 | b8.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2596 | b8.TextureId = "" | |
| 2597 | b8.MeshType = Enum.MeshType.FileMesh | |
| 2598 | b8.Name = "Mesh" | |
| 2599 | b8.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933) | |
| 2600 | p9 = Instance.new("Part", m2)
| |
| 2601 | p9.BrickColor = BrickColor.new("Really red")
| |
| 2602 | p9.Material = Enum.Material.SmoothPlastic | |
| 2603 | p9.Reflectance = 0.30000001192093 | |
| 2604 | p9.CFrame = CFrame.new(30.2536392, 23.691061, 26.9184284, -0.573576212, -0.346188962, 0.74240309, 4.47034836e-007, -0.906307578, -0.422616601, 0.81915164, -0.242404819, 0.519836843) | |
| 2605 | p9.CanCollide = false | |
| 2606 | p9.FormFactor = Enum.FormFactor.Custom | |
| 2607 | p9.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371) | |
| 2608 | p9.BottomSurface = Enum.SurfaceType.Smooth | |
| 2609 | p9.TopSurface = Enum.SurfaceType.Smooth | |
| 2610 | b9 = Instance.new("SpecialMesh", p9)
| |
| 2611 | b9.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2612 | b9.TextureId = "" | |
| 2613 | b9.MeshType = Enum.MeshType.FileMesh | |
| 2614 | b9.Name = "Mesh" | |
| 2615 | b9.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595) | |
| 2616 | p10 = Instance.new("Part", m2)
| |
| 2617 | p10.BrickColor = BrickColor.new("Really red")
| |
| 2618 | p10.Material = Enum.Material.SmoothPlastic | |
| 2619 | p10.Reflectance = 0.30000001192093 | |
| 2620 | p10.CFrame = CFrame.new(27.9471893, 26.8180733, 25.3034286, -0.573576212, 0.469845235, 0.671010077, 2.86794574e-007, -0.819150567, 0.573576927, 0.81915164, 0.328989446, 0.469847172) | |
| 2621 | p10.CanCollide = false | |
| 2622 | p10.FormFactor = Enum.FormFactor.Custom | |
| 2623 | p10.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371) | |
| 2624 | p10.BottomSurface = Enum.SurfaceType.Smooth | |
| 2625 | p10.TopSurface = Enum.SurfaceType.Smooth | |
| 2626 | b10 = Instance.new("SpecialMesh", p10)
| |
| 2627 | b10.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2628 | b10.TextureId = "" | |
| 2629 | b10.MeshType = Enum.MeshType.FileMesh | |
| 2630 | b10.Name = "Mesh" | |
| 2631 | b10.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933) | |
| 2632 | p11 = Instance.new("Part", m2)
| |
| 2633 | p11.BrickColor = BrickColor.new("Really red")
| |
| 2634 | p11.Material = Enum.Material.SmoothPlastic | |
| 2635 | p11.Reflectance = 0.30000001192093 | |
| 2636 | p11.CFrame = CFrame.new(27.8153667, 25.7751122, 25.211132, -0.573576212, 0.469845206, 0.671010017, 3.03888498e-007, -0.819150567, 0.573576987, 0.81915164, 0.328989416, 0.469847172) | |
| 2637 | p11.CanCollide = false | |
| 2638 | p11.FormFactor = Enum.FormFactor.Custom | |
| 2639 | p11.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371) | |
| 2640 | p11.BottomSurface = Enum.SurfaceType.Smooth | |
| 2641 | p11.TopSurface = Enum.SurfaceType.Smooth | |
| 2642 | b11 = Instance.new("SpecialMesh", p11)
| |
| 2643 | b11.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2644 | b11.TextureId = "" | |
| 2645 | b11.MeshType = Enum.MeshType.FileMesh | |
| 2646 | b11.Name = "Mesh" | |
| 2647 | b11.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665) | |
| 2648 | p12 = Instance.new("Part", m2)
| |
| 2649 | p12.BrickColor = BrickColor.new("Really red")
| |
| 2650 | p12.Material = Enum.Material.SmoothPlastic | |
| 2651 | p12.Reflectance = 0.30000001192093 | |
| 2652 | p12.CFrame = CFrame.new(29.655653, 24.6090927, 26.4997177, -0.573576212, 0.212011248, 0.791239619, 2.79475898e-007, -0.965924561, 0.258820325, 0.81915164, 0.14845185, 0.554032922) | |
| 2653 | p12.CanCollide = false | |
| 2654 | p12.FormFactor = Enum.FormFactor.Custom | |
| 2655 | p12.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371) | |
| 2656 | p12.BottomSurface = Enum.SurfaceType.Smooth | |
| 2657 | p12.TopSurface = Enum.SurfaceType.Smooth | |
| 2658 | b12 = Instance.new("SpecialMesh", p12)
| |
| 2659 | b12.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2660 | b12.TextureId = "" | |
| 2661 | b12.MeshType = Enum.MeshType.FileMesh | |
| 2662 | b12.Name = "Mesh" | |
| 2663 | b12.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665) | |
| 2664 | p13 = Instance.new("Part", m2)
| |
| 2665 | p13.BrickColor = BrickColor.new("Really red")
| |
| 2666 | p13.Material = Enum.Material.SmoothPlastic | |
| 2667 | p13.Reflectance = 0.30000001192093 | |
| 2668 | p13.CFrame = CFrame.new(27.9198303, 25.8644161, 25.2842865, -0.573576212, 0.469845116, 0.671010017, 2.51205847e-007, -0.819150507, 0.573577106, 0.81915164, 0.328989446, 0.469847202) | |
| 2669 | p13.CanCollide = false | |
| 2670 | p13.FormFactor = Enum.FormFactor.Custom | |
| 2671 | p13.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371) | |
| 2672 | p13.BottomSurface = Enum.SurfaceType.Smooth | |
| 2673 | p13.TopSurface = Enum.SurfaceType.Smooth | |
| 2674 | b13 = Instance.new("SpecialMesh", p13)
| |
| 2675 | b13.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2676 | b13.TextureId = "" | |
| 2677 | b13.MeshType = Enum.MeshType.FileMesh | |
| 2678 | b13.Name = "Mesh" | |
| 2679 | b13.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595) | |
| 2680 | p14 = Instance.new("Part", m2)
| |
| 2681 | p14.BrickColor = BrickColor.new("Really red")
| |
| 2682 | p14.Material = Enum.Material.SmoothPlastic | |
| 2683 | p14.Reflectance = 0.30000001192093 | |
| 2684 | p14.CFrame = CFrame.new(29.778841, 24.6493893, 26.5859776, -0.573576212, 0.212011158, 0.791239619, 2.26793262e-007, -0.965924621, 0.258820474, 0.81915164, 0.148451865, 0.554032922) | |
| 2685 | p14.CanCollide = false | |
| 2686 | p14.FormFactor = Enum.FormFactor.Custom | |
| 2687 | p14.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371) | |
| 2688 | p14.BottomSurface = Enum.SurfaceType.Smooth | |
| 2689 | p14.TopSurface = Enum.SurfaceType.Smooth | |
| 2690 | b14 = Instance.new("SpecialMesh", p14)
| |
| 2691 | b14.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2692 | b14.TextureId = "" | |
| 2693 | b14.MeshType = Enum.MeshType.FileMesh | |
| 2694 | b14.Name = "Mesh" | |
| 2695 | b14.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595) | |
| 2696 | p15 = Instance.new("Part", m2)
| |
| 2697 | p15.BrickColor = BrickColor.new("Really red")
| |
| 2698 | p15.Material = Enum.Material.SmoothPlastic | |
| 2699 | p15.Reflectance = 0.30000001192093 | |
| 2700 | p15.CFrame = CFrame.new(29.3303242, 25.7026424, 26.271925, -0.573576212, 0.280165315, 0.769750893, 1.98523225e-007, -0.939691305, 0.342021316, 0.81915164, 0.196174055, 0.538986266) | |
| 2701 | p15.CanCollide = false | |
| 2702 | p15.FormFactor = Enum.FormFactor.Custom | |
| 2703 | p15.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371) | |
| 2704 | p15.BottomSurface = Enum.SurfaceType.Smooth | |
| 2705 | p15.TopSurface = Enum.SurfaceType.Smooth | |
| 2706 | b15 = Instance.new("SpecialMesh", p15)
| |
| 2707 | b15.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2708 | b15.TextureId = "" | |
| 2709 | b15.MeshType = Enum.MeshType.FileMesh | |
| 2710 | b15.Name = "Mesh" | |
| 2711 | b15.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665) | |
| 2712 | p16 = Instance.new("Part", m2)
| |
| 2713 | p16.BrickColor = BrickColor.new("Really red")
| |
| 2714 | p16.Material = Enum.Material.SmoothPlastic | |
| 2715 | p16.Reflectance = 0.30000001192093 | |
| 2716 | p16.CFrame = CFrame.new(29.8983212, 24.6884689, 26.6696377, -0.573576272, 0.212011099, 0.791239798, 1.39939146e-007, -0.965924501, 0.258820534, 0.81915158, 0.148451924, 0.554033041) | |
| 2717 | p16.CanCollide = false | |
| 2718 | p16.FormFactor = Enum.FormFactor.Custom | |
| 2719 | p16.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371) | |
| 2720 | p16.BottomSurface = Enum.SurfaceType.Smooth | |
| 2721 | p16.TopSurface = Enum.SurfaceType.Smooth | |
| 2722 | b16 = Instance.new("SpecialMesh", p16)
| |
| 2723 | b16.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2724 | b16.TextureId = "" | |
| 2725 | b16.MeshType = Enum.MeshType.FileMesh | |
| 2726 | b16.Name = "Mesh" | |
| 2727 | b16.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933) | |
| 2728 | p17 = Instance.new("Part", m2)
| |
| 2729 | p17.BrickColor = BrickColor.new("Really red")
| |
| 2730 | p17.Material = Enum.Material.SmoothPlastic | |
| 2731 | p17.Reflectance = 0.30000001192093 | |
| 2732 | p17.CFrame = CFrame.new(29.5664043, 25.8075294, 26.4372196, -0.573576272, 0.280165255, 0.769751072, 1.1166911e-007, -0.939691126, 0.342021376, 0.81915158, 0.196174115, 0.538986385) | |
| 2733 | p17.CanCollide = false | |
| 2734 | p17.FormFactor = Enum.FormFactor.Custom | |
| 2735 | p17.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371) | |
| 2736 | p17.BottomSurface = Enum.SurfaceType.Smooth | |
| 2737 | p17.TopSurface = Enum.SurfaceType.Smooth | |
| 2738 | b17 = Instance.new("SpecialMesh", p17)
| |
| 2739 | b17.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2740 | b17.TextureId = "" | |
| 2741 | b17.MeshType = Enum.MeshType.FileMesh | |
| 2742 | b17.Name = "Mesh" | |
| 2743 | b17.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933) | |
| 2744 | p18 = Instance.new("Part", m2)
| |
| 2745 | p18.BrickColor = BrickColor.new("Really red")
| |
| 2746 | p18.Material = Enum.Material.SmoothPlastic | |
| 2747 | p18.Reflectance = 0.30000001192093 | |
| 2748 | p18.CFrame = CFrame.new(28.021162, 25.9510212, 25.3552322, -0.573576331, 0.469845086, 0.671010435, 8.10900147e-008, -0.819150269, 0.573577285, 0.819151521, 0.328989595, 0.469847381) | |
| 2749 | p18.CanCollide = false | |
| 2750 | p18.FormFactor = Enum.FormFactor.Custom | |
| 2751 | p18.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371) | |
| 2752 | p18.BottomSurface = Enum.SurfaceType.Smooth | |
| 2753 | p18.TopSurface = Enum.SurfaceType.Smooth | |
| 2754 | b18 = Instance.new("SpecialMesh", p18)
| |
| 2755 | b18.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2756 | b18.TextureId = "" | |
| 2757 | b18.MeshType = Enum.MeshType.FileMesh | |
| 2758 | b18.Name = "Mesh" | |
| 2759 | b18.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933) | |
| 2760 | p19 = Instance.new("Part", m2)
| |
| 2761 | p19.BrickColor = BrickColor.new("Really red")
| |
| 2762 | p19.Material = Enum.Material.SmoothPlastic | |
| 2763 | p19.Reflectance = 0.30000001192093 | |
| 2764 | p19.CFrame = CFrame.new(30.3657436, 23.6272507, 26.9969234, -0.573576272, -0.346189439, 0.74240303, -9.24166343e-009, -0.906307697, -0.422616035, 0.819151521, -0.242404714, 0.519837141) | |
| 2765 | p19.CanCollide = false | |
| 2766 | p19.FormFactor = Enum.FormFactor.Custom | |
| 2767 | p19.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371) | |
| 2768 | p19.BottomSurface = Enum.SurfaceType.Smooth | |
| 2769 | p19.TopSurface = Enum.SurfaceType.Smooth | |
| 2770 | b19 = Instance.new("SpecialMesh", p19)
| |
| 2771 | b19.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2772 | b19.TextureId = "" | |
| 2773 | b19.MeshType = Enum.MeshType.FileMesh | |
| 2774 | b19.Name = "Mesh" | |
| 2775 | b19.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933) | |
| 2776 | p20 = Instance.new("Part", m2)
| |
| 2777 | p20.BrickColor = BrickColor.new("Really red")
| |
| 2778 | p20.Material = Enum.Material.SmoothPlastic | |
| 2779 | p20.Reflectance = 0.30000001192093 | |
| 2780 | p20.CFrame = CFrame.new(30.2536469, 23.6910553, 26.9184265, -0.573576272, -0.346189529, 0.742402911, -2.63107069e-007, -0.906307518, -0.422615975, 0.819151521, -0.242404476, 0.519837141) | |
| 2781 | p20.CanCollide = false | |
| 2782 | p20.FormFactor = Enum.FormFactor.Custom | |
| 2783 | p20.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371) | |
| 2784 | p20.BottomSurface = Enum.SurfaceType.Smooth | |
| 2785 | p20.TopSurface = Enum.SurfaceType.Smooth | |
| 2786 | b20 = Instance.new("SpecialMesh", p20)
| |
| 2787 | b20.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2788 | b20.TextureId = "" | |
| 2789 | b20.MeshType = Enum.MeshType.FileMesh | |
| 2790 | b20.Name = "Mesh" | |
| 2791 | b20.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595) | |
| 2792 | p21 = Instance.new("Part", m2)
| |
| 2793 | p21.BrickColor = BrickColor.new("Really red")
| |
| 2794 | p21.Material = Enum.Material.SmoothPlastic | |
| 2795 | p21.Reflectance = 0.30000001192093 | |
| 2796 | p21.CFrame = CFrame.new(27.8458843, 26.7314644, 25.2324886, -0.573576272, 0.469844759, 0.671010494, -4.23347274e-007, -0.819149971, 0.573577166, 0.819151521, 0.328989863, 0.469847023) | |
| 2797 | p21.CanCollide = false | |
| 2798 | p21.FormFactor = Enum.FormFactor.Custom | |
| 2799 | p21.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371) | |
| 2800 | p21.BottomSurface = Enum.SurfaceType.Smooth | |
| 2801 | p21.TopSurface = Enum.SurfaceType.Smooth | |
| 2802 | b21 = Instance.new("SpecialMesh", p21)
| |
| 2803 | b21.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2804 | b21.TextureId = "" | |
| 2805 | b21.MeshType = Enum.MeshType.FileMesh | |
| 2806 | b21.Name = "Mesh" | |
| 2807 | b21.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595) | |
| 2808 | p22 = Instance.new("Part", m2)
| |
| 2809 | p22.BrickColor = BrickColor.new("Really red")
| |
| 2810 | p22.Material = Enum.Material.SmoothPlastic | |
| 2811 | p22.Reflectance = 0.30000001192093 | |
| 2812 | p22.CFrame = CFrame.new(30.1380615, 23.756855, 26.8374882, -0.573576212, -0.346189648, 0.742402732, -5.1367897e-007, -0.906307459, -0.422615856, 0.819151521, -0.242404282, 0.519837141) | |
| 2813 | p22.CanCollide = false | |
| 2814 | p22.FormFactor = Enum.FormFactor.Custom | |
| 2815 | p22.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371) | |
| 2816 | p22.BottomSurface = Enum.SurfaceType.Smooth | |
| 2817 | p22.TopSurface = Enum.SurfaceType.Smooth | |
| 2818 | b22 = Instance.new("SpecialMesh", p22)
| |
| 2819 | b22.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2820 | b22.TextureId = "" | |
| 2821 | b22.MeshType = Enum.MeshType.FileMesh | |
| 2822 | b22.Name = "Mesh" | |
| 2823 | b22.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665) | |
| 2824 | p23 = Instance.new("Part", m2)
| |
| 2825 | p23.BrickColor = BrickColor.new("Really red")
| |
| 2826 | p23.Material = Enum.Material.SmoothPlastic | |
| 2827 | p23.Reflectance = 0.30000001192093 | |
| 2828 | p23.CFrame = CFrame.new(29.4501858, 25.7558784, 26.3558216, -0.573576212, 0.280164778, 0.769751191, -6.73919146e-007, -0.939690709, 0.342021406, 0.819151521, 0.196174636, 0.538986027) | |
| 2829 | p23.CanCollide = false | |
| 2830 | p23.FormFactor = Enum.FormFactor.Custom | |
| 2831 | p23.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371) | |
| 2832 | p23.BottomSurface = Enum.SurfaceType.Smooth | |
| 2833 | p23.TopSurface = Enum.SurfaceType.Smooth | |
| 2834 | b23 = Instance.new("SpecialMesh", p23)
| |
| 2835 | b23.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2836 | b23.TextureId = "" | |
| 2837 | b23.MeshType = Enum.MeshType.FileMesh | |
| 2838 | b23.Name = "Mesh" | |
| 2839 | b23.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595) | |
| 2840 | p24 = Instance.new("Part", m2)
| |
| 2841 | p24.BrickColor = BrickColor.new("Really red")
| |
| 2842 | p24.Material = Enum.Material.SmoothPlastic | |
| 2843 | p24.Reflectance = 0.30000001192093 | |
| 2844 | p24.CFrame = CFrame.new(29.3303471, 25.702631, 26.2719078, -0.573576272, 0.280164808, 0.76975143, -7.04498234e-007, -0.939690709, 0.342021465, 0.819151461, 0.196174651, 0.538986087) | |
| 2845 | p24.CanCollide = false | |
| 2846 | p24.FormFactor = Enum.FormFactor.Custom | |
| 2847 | p24.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371) | |
| 2848 | p24.BottomSurface = Enum.SurfaceType.Smooth | |
| 2849 | p24.TopSurface = Enum.SurfaceType.Smooth | |
| 2850 | b24 = Instance.new("SpecialMesh", p24)
| |
| 2851 | b24.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2852 | b24.TextureId = "" | |
| 2853 | b24.MeshType = Enum.MeshType.FileMesh | |
| 2854 | b24.Name = "Mesh" | |
| 2855 | b24.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665) | |
| 2856 | p25 = Instance.new("Part", m2)
| |
| 2857 | p25.BrickColor = BrickColor.new("Really red")
| |
| 2858 | p25.Material = Enum.Material.SmoothPlastic | |
| 2859 | p25.Reflectance = 0.30000001192093 | |
| 2860 | p25.CFrame = CFrame.new(29.7788715, 24.6493816, 26.5859661, -0.573576331, 0.212010548, 0.791240335, -7.63082312e-007, -0.965923905, 0.258820742, 0.819151402, 0.14845252, 0.554032862) | |
| 2861 | p25.CanCollide = false | |
| 2862 | p25.FormFactor = Enum.FormFactor.Custom | |
| 2863 | p25.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371) | |
| 2864 | p25.BottomSurface = Enum.SurfaceType.Smooth | |
| 2865 | p25.TopSurface = Enum.SurfaceType.Smooth | |
| 2866 | b25 = Instance.new("SpecialMesh", p25)
| |
| 2867 | b25.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2868 | b25.TextureId = "" | |
| 2869 | b25.MeshType = Enum.MeshType.FileMesh | |
| 2870 | b25.Name = "Mesh" | |
| 2871 | b25.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595) | |
| 2872 | p26 = Instance.new("Part", m2)
| |
| 2873 | p26.BrickColor = BrickColor.new("Really red")
| |
| 2874 | p26.Material = Enum.Material.SmoothPlastic | |
| 2875 | p26.Reflectance = 0.30000001192093 | |
| 2876 | p26.CFrame = CFrame.new(29.450201, 25.7558823, 26.3558235, -0.573576331, 0.280164748, 0.769751668, -7.91352306e-007, -0.93969059, 0.342021525, 0.819151402, 0.196174681, 0.538986146) | |
| 2877 | p26.CanCollide = false | |
| 2878 | p26.FormFactor = Enum.FormFactor.Custom | |
| 2879 | p26.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371) | |
| 2880 | p26.BottomSurface = Enum.SurfaceType.Smooth | |
| 2881 | p26.TopSurface = Enum.SurfaceType.Smooth | |
| 2882 | b26 = Instance.new("SpecialMesh", p26)
| |
| 2883 | b26.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2884 | b26.TextureId = "" | |
| 2885 | b26.MeshType = Enum.MeshType.FileMesh | |
| 2886 | b26.Name = "Mesh" | |
| 2887 | b26.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595) | |
| 2888 | p27 = Instance.new("Part", m2)
| |
| 2889 | p27.BrickColor = BrickColor.new("Really red")
| |
| 2890 | p27.Material = Enum.Material.SmoothPlastic | |
| 2891 | p27.Reflectance = 0.30000001192093 | |
| 2892 | p27.CFrame = CFrame.new(30.3657703, 23.6272449, 26.9969063, -0.57357645, -0.346190155, 0.74240309, -9.161393e-007, -0.90630734, -0.422615707, 0.819151342, -0.242404088, 0.51983732) | |
| 2893 | p27.CanCollide = false | |
| 2894 | p27.FormFactor = Enum.FormFactor.Custom | |
| 2895 | p27.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371) | |
| 2896 | p27.BottomSurface = Enum.SurfaceType.Smooth | |
| 2897 | p27.TopSurface = Enum.SurfaceType.Smooth | |
| 2898 | b27 = Instance.new("SpecialMesh", p27)
| |
| 2899 | b27.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2900 | b27.TextureId = "" | |
| 2901 | b27.MeshType = Enum.MeshType.FileMesh | |
| 2902 | b27.Name = "Mesh" | |
| 2903 | b27.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933) | |
| 2904 | p28 = Instance.new("Part", m2)
| |
| 2905 | p28.BrickColor = BrickColor.new("Really red")
| |
| 2906 | p28.Material = Enum.Material.SmoothPlastic | |
| 2907 | p28.Reflectance = 0.30000001192093 | |
| 2908 | p28.CFrame = CFrame.new(28.0211868, 25.9510098, 25.3552094, -0.57357645, 0.469844639, 0.67101109, -1.07637948e-006, -0.819149673, 0.573577106, 0.819151342, 0.328990191, 0.469846785) | |
| 2909 | p28.CanCollide = false | |
| 2910 | p28.FormFactor = Enum.FormFactor.Custom | |
| 2911 | p28.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371) | |
| 2912 | p28.BottomSurface = Enum.SurfaceType.Smooth | |
| 2913 | p28.TopSurface = Enum.SurfaceType.Smooth | |
| 2914 | b28 = Instance.new("SpecialMesh", p28)
| |
| 2915 | b28.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2916 | b28.TextureId = "" | |
| 2917 | b28.MeshType = Enum.MeshType.FileMesh | |
| 2918 | b28.Name = "Mesh" | |
| 2919 | b28.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933) | |
| 2920 | p29 = Instance.new("Part", m2)
| |
| 2921 | p29.BrickColor = BrickColor.new("Really black")
| |
| 2922 | p29.Material = Enum.Material.Neon | |
| 2923 | p29.CFrame = CFrame.new(31.2683067, 23.2277946, 27.6474876, 0.280168235, -0.769749522, -0.573576212, 0.939691305, 0.342017233, -1.0690095e-006, 0.19617486, -0.538985491, 0.819151521) | |
| 2924 | p29.FormFactor = Enum.FormFactor.Custom | |
| 2925 | p29.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918) | |
| 2926 | p29.BottomSurface = Enum.SurfaceType.Smooth | |
| 2927 | p29.TopSurface = Enum.SurfaceType.Smooth | |
| 2928 | b29 = Instance.new("SpecialMesh", p29)
| |
| 2929 | b29.MeshType = Enum.MeshType.Sphere | |
| 2930 | b29.Name = "Mesh" | |
| 2931 | p30 = Instance.new("Part", m2)
| |
| 2932 | p30.BrickColor = BrickColor.new("Really red")
| |
| 2933 | p30.Material = Enum.Material.SmoothPlastic | |
| 2934 | p30.Reflectance = 0.30000001192093 | |
| 2935 | p30.CFrame = CFrame.new(29.655632, 24.6090698, 26.4996777, -0.573576212, 0.2120094, 0.791238904, -1.13902195e-006, -0.965922236, 0.258820891, 0.819151521, 0.148452237, 0.554032147) | |
| 2936 | p30.CanCollide = false | |
| 2937 | p30.FormFactor = Enum.FormFactor.Custom | |
| 2938 | p30.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371) | |
| 2939 | p30.BottomSurface = Enum.SurfaceType.Smooth | |
| 2940 | p30.TopSurface = Enum.SurfaceType.Smooth | |
| 2941 | b30 = Instance.new("SpecialMesh", p30)
| |
| 2942 | b30.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2943 | b30.TextureId = "" | |
| 2944 | b30.MeshType = Enum.MeshType.FileMesh | |
| 2945 | b30.Name = "Mesh" | |
| 2946 | b30.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665) | |
| 2947 | p31 = Instance.new("Part", m2)
| |
| 2948 | p31.BrickColor = BrickColor.new("Really red")
| |
| 2949 | p31.Material = Enum.Material.SmoothPlastic | |
| 2950 | p31.Reflectance = 0.30000001192093 | |
| 2951 | p31.CFrame = CFrame.new(30.138031, 23.7568359, 26.8374538, -0.573576212, -0.346189976, 0.742401063, -1.26856219e-006, -0.906306148, -0.422614396, 0.819151521, -0.242403775, 0.519836485) | |
| 2952 | p31.CanCollide = false | |
| 2953 | p31.FormFactor = Enum.FormFactor.Custom | |
| 2954 | p31.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371) | |
| 2955 | p31.BottomSurface = Enum.SurfaceType.Smooth | |
| 2956 | p31.TopSurface = Enum.SurfaceType.Smooth | |
| 2957 | b31 = Instance.new("SpecialMesh", p31)
| |
| 2958 | b31.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2959 | b31.TextureId = "" | |
| 2960 | b31.MeshType = Enum.MeshType.FileMesh | |
| 2961 | b31.Name = "Mesh" | |
| 2962 | b31.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665) | |
| 2963 | p32 = Instance.new("Part", m2)
| |
| 2964 | p32.BrickColor = BrickColor.new("Really red")
| |
| 2965 | p32.Material = Enum.Material.SmoothPlastic | |
| 2966 | p32.Reflectance = 0.30000001192093 | |
| 2967 | p32.CFrame = CFrame.new(27.741394, 26.6421375, 25.1592979, -0.573576212, 0.469842911, 0.671009958, -1.42880219e-006, -0.819147944, 0.573576748, 0.819151521, 0.328989625, 0.4698461) | |
| 2968 | p32.CanCollide = false | |
| 2969 | p32.FormFactor = Enum.FormFactor.Custom | |
| 2970 | p32.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371) | |
| 2971 | p32.BottomSurface = Enum.SurfaceType.Smooth | |
| 2972 | p32.TopSurface = Enum.SurfaceType.Smooth | |
| 2973 | b32 = Instance.new("SpecialMesh", p32)
| |
| 2974 | b32.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 2975 | b32.TextureId = "" | |
| 2976 | b32.MeshType = Enum.MeshType.FileMesh | |
| 2977 | b32.Name = "Mesh" | |
| 2978 | b32.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665) | |
| 2979 | p33 = Instance.new("Part", m2)
| |
| 2980 | p33.BrickColor = BrickColor.new("Really black")
| |
| 2981 | p33.Material = Enum.Material.Neon | |
| 2982 | p33.CFrame = CFrame.new(32.7100258, 25.2490444, 28.6569691, -0.14224124, -0.806705832, -0.573576093, 0.984804153, -0.173650295, -1.38238238e-006, -0.0996002704, -0.564861953, 0.819151759) | |
| 2983 | p33.FormFactor = Enum.FormFactor.Custom | |
| 2984 | p33.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918) | |
| 2985 | p33.BottomSurface = Enum.SurfaceType.Smooth | |
| 2986 | p33.TopSurface = Enum.SurfaceType.Smooth | |
| 2987 | b33 = Instance.new("SpecialMesh", p33)
| |
| 2988 | b33.MeshType = Enum.MeshType.Sphere | |
| 2989 | b33.Name = "Mesh" | |
| 2990 | p34 = Instance.new("Part", m2)
| |
| 2991 | p34.BrickColor = BrickColor.new("Really red")
| |
| 2992 | p34.Material = Enum.Material.SmoothPlastic | |
| 2993 | p34.Reflectance = 0.30000001192093 | |
| 2994 | p34.CFrame = CFrame.new(27.919817, 25.8643856, 25.2842369, -0.573576391, 0.469842792, 0.671009898, -1.37759764e-006, -0.819147885, 0.573576868, 0.8191517, 0.328989476, 0.46984604) | |
| 2995 | p34.CanCollide = false | |
| 2996 | p34.FormFactor = Enum.FormFactor.Custom | |
| 2997 | p34.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371) | |
| 2998 | p34.BottomSurface = Enum.SurfaceType.Smooth | |
| 2999 | p34.TopSurface = Enum.SurfaceType.Smooth | |
| 3000 | b34 = Instance.new("SpecialMesh", p34)
| |
| 3001 | b34.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 3002 | b34.TextureId = "" | |
| 3003 | b34.MeshType = Enum.MeshType.FileMesh | |
| 3004 | b34.Name = "Mesh" | |
| 3005 | b34.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595) | |
| 3006 | p35 = Instance.new("Part", m2)
| |
| 3007 | p35.BrickColor = BrickColor.new("Really red")
| |
| 3008 | p35.Material = Enum.Material.SmoothPlastic | |
| 3009 | p35.Reflectance = 0.30000001192093 | |
| 3010 | p35.CFrame = CFrame.new(29.8982925, 24.6884441, 26.6695824, -0.573576391, 0.212008998, 0.791238666, -1.40201018e-006, -0.965921998, 0.25882113, 0.8191517, 0.148452297, 0.554031909) | |
| 3011 | p35.CanCollide = false | |
| 3012 | p35.FormFactor = Enum.FormFactor.Custom | |
| 3013 | p35.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371) | |
| 3014 | p35.BottomSurface = Enum.SurfaceType.Smooth | |
| 3015 | p35.TopSurface = Enum.SurfaceType.Smooth | |
| 3016 | b35 = Instance.new("SpecialMesh", p35)
| |
| 3017 | b35.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 3018 | b35.TextureId = "" | |
| 3019 | b35.MeshType = Enum.MeshType.FileMesh | |
| 3020 | b35.Name = "Mesh" | |
| 3021 | b35.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933) | |
| 3022 | p36 = Instance.new("Part", m2)
| |
| 3023 | p36.BrickColor = BrickColor.new("Really red")
| |
| 3024 | p36.Material = Enum.Material.SmoothPlastic | |
| 3025 | p36.Reflectance = 0.30000001192093 | |
| 3026 | p36.CFrame = CFrame.new(27.8153496, 25.7750854, 25.2110863, -0.573576391, 0.469842672, 0.671009898, -1.43028012e-006, -0.819147885, 0.573576927, 0.8191517, 0.328989506, 0.4698461) | |
| 3027 | p36.CanCollide = false | |
| 3028 | p36.FormFactor = Enum.FormFactor.Custom | |
| 3029 | p36.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371) | |
| 3030 | p36.BottomSurface = Enum.SurfaceType.Smooth | |
| 3031 | p36.TopSurface = Enum.SurfaceType.Smooth | |
| 3032 | b36 = Instance.new("SpecialMesh", p36)
| |
| 3033 | b36.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 3034 | b36.TextureId = "" | |
| 3035 | b36.MeshType = Enum.MeshType.FileMesh | |
| 3036 | b36.Name = "Mesh" | |
| 3037 | b36.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665) | |
| 3038 | p37 = Instance.new("Part", m2)
| |
| 3039 | p37.BrickColor = BrickColor.new("Really black")
| |
| 3040 | p37.Material = Enum.Material.Neon | |
| 3041 | p37.CFrame = CFrame.new(30.7430439, 27.8460693, 27.2796841, -0.409572512, -0.709406137, -0.573576272, 0.866021335, -0.500000834, -1.38386031e-006, -0.286787719, -0.49673146, 0.819151938) | |
| 3042 | p37.FormFactor = Enum.FormFactor.Custom | |
| 3043 | p37.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918) | |
| 3044 | p37.BottomSurface = Enum.SurfaceType.Smooth | |
| 3045 | p37.TopSurface = Enum.SurfaceType.Smooth | |
| 3046 | b37 = Instance.new("SpecialMesh", p37)
| |
| 3047 | b37.MeshType = Enum.MeshType.Sphere | |
| 3048 | b37.Name = "Mesh" | |
| 3049 | p38 = Instance.new("Part", m2)
| |
| 3050 | p38.BrickColor = BrickColor.new("Really black")
| |
| 3051 | p38.Material = Enum.Material.Neon | |
| 3052 | p38.CFrame = CFrame.new(32.7113533, 27.1965656, 28.6579113, -0.28016308, -0.769750178, -0.573576272, 0.939688683, -0.342021704, -1.3540581e-006, -0.196174175, -0.538985133, 0.819152057) | |
| 3053 | p38.FormFactor = Enum.FormFactor.Custom | |
| 3054 | p38.Size = Vector3.new(0.61060679, 8.03632927, 0.221234918) | |
| 3055 | p38.BottomSurface = Enum.SurfaceType.Smooth | |
| 3056 | p38.TopSurface = Enum.SurfaceType.Smooth | |
| 3057 | b38 = Instance.new("SpecialMesh", p38)
| |
| 3058 | b38.MeshType = Enum.MeshType.Sphere | |
| 3059 | b38.Name = "Mesh" | |
| 3060 | p39 = Instance.new("Part", m2)
| |
| 3061 | p39.BrickColor = BrickColor.new("Really red")
| |
| 3062 | p39.Material = Enum.Material.SmoothPlastic | |
| 3063 | p39.Reflectance = 0.30000001192093 | |
| 3064 | p39.CFrame = CFrame.new(26.2033787, 25.7750854, 25.2801971, -0.573574483, -0.469848186, -0.671007693, -2.18929154e-006, -0.819150686, 0.573572934, -0.819151402, 0.328989863, 0.469846785) | |
| 3065 | p39.CanCollide = false | |
| 3066 | p39.FormFactor = Enum.FormFactor.Custom | |
| 3067 | p39.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371) | |
| 3068 | p39.BottomSurface = Enum.SurfaceType.Smooth | |
| 3069 | p39.TopSurface = Enum.SurfaceType.Smooth | |
| 3070 | b39 = Instance.new("SpecialMesh", p39)
| |
| 3071 | b39.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 3072 | b39.TextureId = "" | |
| 3073 | b39.MeshType = Enum.MeshType.FileMesh | |
| 3074 | b39.Name = "Mesh" | |
| 3075 | b39.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665) | |
| 3076 | p40 = Instance.new("Part", m2)
| |
| 3077 | p40.BrickColor = BrickColor.new("Really red")
| |
| 3078 | p40.Material = Enum.Material.SmoothPlastic | |
| 3079 | p40.Reflectance = 0.30000001192093 | |
| 3080 | p40.CFrame = CFrame.new(25.9975967, 25.9509888, 25.4242878, -0.573574483, -0.469848186, -0.671007693, -2.18929154e-006, -0.819150686, 0.573572934, -0.819151402, 0.328989863, 0.469846785) | |
| 3081 | p40.CanCollide = false | |
| 3082 | p40.FormFactor = Enum.FormFactor.Custom | |
| 3083 | p40.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371) | |
| 3084 | p40.BottomSurface = Enum.SurfaceType.Smooth | |
| 3085 | p40.TopSurface = Enum.SurfaceType.Smooth | |
| 3086 | b40 = Instance.new("SpecialMesh", p40)
| |
| 3087 | b40.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 3088 | b40.TextureId = "" | |
| 3089 | b40.MeshType = Enum.MeshType.FileMesh | |
| 3090 | b40.Name = "Mesh" | |
| 3091 | b40.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933) | |
| 3092 | p41 = Instance.new("Part", m2)
| |
| 3093 | p41.BrickColor = BrickColor.new("Really red")
| |
| 3094 | p41.Material = Enum.Material.SmoothPlastic | |
| 3095 | p41.Reflectance = 0.30000001192093 | |
| 3096 | p41.CFrame = CFrame.new(26.098917, 25.8643856, 25.3533516, -0.573574483, -0.469848186, -0.671007693, -2.18929154e-006, -0.819150686, 0.573572934, -0.819151402, 0.328989863, 0.469846785) | |
| 3097 | p41.CanCollide = false | |
| 3098 | p41.FormFactor = Enum.FormFactor.Custom | |
| 3099 | p41.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371) | |
| 3100 | p41.BottomSurface = Enum.SurfaceType.Smooth | |
| 3101 | p41.TopSurface = Enum.SurfaceType.Smooth | |
| 3102 | b41 = Instance.new("SpecialMesh", p41)
| |
| 3103 | b41.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 3104 | b41.TextureId = "" | |
| 3105 | b41.MeshType = Enum.MeshType.FileMesh | |
| 3106 | b41.Name = "Mesh" | |
| 3107 | b41.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595) | |
| 3108 | p42 = Instance.new("Part", m2)
| |
| 3109 | p42.BrickColor = BrickColor.new("Really red")
| |
| 3110 | p42.Material = Enum.Material.SmoothPlastic | |
| 3111 | p42.Reflectance = 0.30000001192093 | |
| 3112 | p42.CFrame = CFrame.new(24.12043, 24.6884346, 26.7387066, -0.573574483, -0.212014884, -0.791238487, -2.23079792e-006, -0.965923309, 0.258816421, -0.819151402, 0.148452327, 0.554032683) | |
| 3113 | p42.CanCollide = false | |
| 3114 | p42.FormFactor = Enum.FormFactor.Custom | |
| 3115 | p42.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371) | |
| 3116 | p42.BottomSurface = Enum.SurfaceType.Smooth | |
| 3117 | p42.TopSurface = Enum.SurfaceType.Smooth | |
| 3118 | b42 = Instance.new("SpecialMesh", p42)
| |
| 3119 | b42.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 3120 | b42.TextureId = "" | |
| 3121 | b42.MeshType = Enum.MeshType.FileMesh | |
| 3122 | b42.Name = "Mesh" | |
| 3123 | b42.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933) | |
| 3124 | p43 = Instance.new("Part", m2)
| |
| 3125 | p43.BrickColor = BrickColor.new("Really red")
| |
| 3126 | p43.Material = Enum.Material.SmoothPlastic | |
| 3127 | p43.Reflectance = 0.30000001192093 | |
| 3128 | p43.CFrame = CFrame.new(24.12043, 24.6884365, 26.7387066, -0.573574483, -0.212014899, -0.791238487, -2.30996147e-006, -0.96592325, 0.258816421, -0.819151402, 0.148452222, 0.554032683) | |
| 3129 | p43.CanCollide = false | |
| 3130 | p43.FormFactor = Enum.FormFactor.Custom | |
| 3131 | p43.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371) | |
| 3132 | p43.BottomSurface = Enum.SurfaceType.Smooth | |
| 3133 | p43.TopSurface = Enum.SurfaceType.Smooth | |
| 3134 | b43 = Instance.new("SpecialMesh", p43)
| |
| 3135 | b43.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 3136 | b43.TextureId = "" | |
| 3137 | b43.MeshType = Enum.MeshType.FileMesh | |
| 3138 | b43.Name = "Mesh" | |
| 3139 | b43.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933) | |
| 3140 | p44 = Instance.new("Part", m2)
| |
| 3141 | p44.BrickColor = BrickColor.new("Really red")
| |
| 3142 | p44.Material = Enum.Material.SmoothPlastic | |
| 3143 | p44.Reflectance = 0.30000001192093 | |
| 3144 | p44.CFrame = CFrame.new(24.3630924, 24.6090679, 26.5687962, -0.573574483, -0.212014914, -0.791238487, -2.38912503e-006, -0.96592319, 0.258816421, -0.819151402, 0.148452118, 0.554032683) | |
| 3145 | p44.CanCollide = false | |
| 3146 | p44.FormFactor = Enum.FormFactor.Custom | |
| 3147 | p44.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371) | |
| 3148 | p44.BottomSurface = Enum.SurfaceType.Smooth | |
| 3149 | p44.TopSurface = Enum.SurfaceType.Smooth | |
| 3150 | b44 = Instance.new("SpecialMesh", p44)
| |
| 3151 | b44.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 3152 | b44.TextureId = "" | |
| 3153 | b44.MeshType = Enum.MeshType.FileMesh | |
| 3154 | b44.Name = "Mesh" | |
| 3155 | b44.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665) | |
| 3156 | p45 = Instance.new("Part", m2)
| |
| 3157 | p45.BrickColor = BrickColor.new("Really red")
| |
| 3158 | p45.Material = Enum.Material.SmoothPlastic | |
| 3159 | p45.Reflectance = 0.30000001192093 | |
| 3160 | p45.CFrame = CFrame.new(24.2399025, 24.6493645, 26.6550598, -0.573574483, -0.212014928, -0.791238487, -2.46828859e-006, -0.965923131, 0.258816421, -0.819151402, 0.148452014, 0.554032683) | |
| 3161 | p45.CanCollide = false | |
| 3162 | p45.FormFactor = Enum.FormFactor.Custom | |
| 3163 | p45.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371) | |
| 3164 | p45.BottomSurface = Enum.SurfaceType.Smooth | |
| 3165 | p45.TopSurface = Enum.SurfaceType.Smooth | |
| 3166 | b45 = Instance.new("SpecialMesh", p45)
| |
| 3167 | b45.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 3168 | b45.TextureId = "" | |
| 3169 | b45.MeshType = Enum.MeshType.FileMesh | |
| 3170 | b45.Name = "Mesh" | |
| 3171 | b45.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595) | |
| 3172 | p46 = Instance.new("Part", m2)
| |
| 3173 | p46.BrickColor = BrickColor.new("Really red")
| |
| 3174 | p46.Material = Enum.Material.SmoothPlastic | |
| 3175 | p46.Reflectance = 0.30000001192093 | |
| 3176 | p46.CFrame = CFrame.new(24.3630962, 24.6090736, 26.5688019, -0.573574483, -0.212014943, -0.791238487, -2.54745214e-006, -0.965923071, 0.258816421, -0.819151402, 0.148451909, 0.554032683) | |
| 3177 | p46.CanCollide = false | |
| 3178 | p46.FormFactor = Enum.FormFactor.Custom | |
| 3179 | p46.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371) | |
| 3180 | p46.BottomSurface = Enum.SurfaceType.Smooth | |
| 3181 | p46.TopSurface = Enum.SurfaceType.Smooth | |
| 3182 | b46 = Instance.new("SpecialMesh", p46)
| |
| 3183 | b46.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 3184 | b46.TextureId = "" | |
| 3185 | b46.MeshType = Enum.MeshType.FileMesh | |
| 3186 | b46.Name = "Mesh" | |
| 3187 | b46.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665) | |
| 3188 | p47 = Instance.new("Part", m2)
| |
| 3189 | p47.BrickColor = BrickColor.new("Really red")
| |
| 3190 | p47.Material = Enum.Material.SmoothPlastic | |
| 3191 | p47.Reflectance = 0.30000001192093 | |
| 3192 | p47.CFrame = CFrame.new(24.2399063, 24.6493702, 26.6550655, -0.573574483, -0.212014958, -0.791238487, -2.6266157e-006, -0.965923011, 0.258816421, -0.819151402, 0.148451805, 0.554032683) | |
| 3193 | p47.CanCollide = false | |
| 3194 | p47.FormFactor = Enum.FormFactor.Custom | |
| 3195 | p47.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371) | |
| 3196 | p47.BottomSurface = Enum.SurfaceType.Smooth | |
| 3197 | p47.TopSurface = Enum.SurfaceType.Smooth | |
| 3198 | b47 = Instance.new("SpecialMesh", p47)
| |
| 3199 | b47.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 3200 | b47.TextureId = "" | |
| 3201 | b47.MeshType = Enum.MeshType.FileMesh | |
| 3202 | b47.Name = "Mesh" | |
| 3203 | b47.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595) | |
| 3204 | p48 = Instance.new("Part", m2)
| |
| 3205 | p48.BrickColor = BrickColor.new("Really black")
| |
| 3206 | p48.Material = Enum.Material.Neon | |
| 3207 | p48.CFrame = CFrame.new(25.2453995, 27.8142643, 25.9324112, 0.579229355, 0.579225123, -0.573574543, 0.707105756, -0.707103014, -2.67389237e-006, -0.405579329, -0.40558058, -0.819151223) | |
| 3208 | p48.FormFactor = Enum.FormFactor.Custom | |
| 3209 | p48.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918) | |
| 3210 | p48.BottomSurface = Enum.SurfaceType.Smooth | |
| 3211 | p48.TopSurface = Enum.SurfaceType.Smooth | |
| 3212 | b48 = Instance.new("SpecialMesh", p48)
| |
| 3213 | b48.MeshType = Enum.MeshType.Sphere | |
| 3214 | b48.Name = "Mesh" | |
| 3215 | p49 = Instance.new("Part", m2)
| |
| 3216 | p49.BrickColor = BrickColor.new("Really red")
| |
| 3217 | p49.Material = Enum.Material.SmoothPlastic | |
| 3218 | p49.Reflectance = 0.30000001192093 | |
| 3219 | p49.CFrame = CFrame.new(26.2033863, 25.7751026, 25.2802086, -0.573574364, -0.469848186, -0.671007454, -2.67389191e-006, -0.819150448, 0.573572874, -0.819151223, 0.328989238, 0.469846845) | |
| 3220 | p49.CanCollide = false | |
| 3221 | p49.FormFactor = Enum.FormFactor.Custom | |
| 3222 | p49.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371) | |
| 3223 | p49.BottomSurface = Enum.SurfaceType.Smooth | |
| 3224 | p49.TopSurface = Enum.SurfaceType.Smooth | |
| 3225 | b49 = Instance.new("SpecialMesh", p49)
| |
| 3226 | b49.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 3227 | b49.TextureId = "" | |
| 3228 | b49.MeshType = Enum.MeshType.FileMesh | |
| 3229 | b49.Name = "Mesh" | |
| 3230 | b49.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665) | |
| 3231 | p50 = Instance.new("Part", m2)
| |
| 3232 | p50.BrickColor = BrickColor.new("Really red")
| |
| 3233 | p50.Material = Enum.Material.SmoothPlastic | |
| 3234 | p50.Reflectance = 0.30000001192093 | |
| 3235 | p50.CFrame = CFrame.new(25.9976063, 25.9510059, 25.4242992, -0.573574364, -0.469848186, -0.671007454, -2.67389191e-006, -0.819150448, 0.573572874, -0.819151223, 0.328989238, 0.469846845) | |
| 3236 | p50.CanCollide = false | |
| 3237 | p50.FormFactor = Enum.FormFactor.Custom | |
| 3238 | p50.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371) | |
| 3239 | p50.BottomSurface = Enum.SurfaceType.Smooth | |
| 3240 | p50.TopSurface = Enum.SurfaceType.Smooth | |
| 3241 | b50 = Instance.new("SpecialMesh", p50)
| |
| 3242 | b50.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 3243 | b50.TextureId = "" | |
| 3244 | b50.MeshType = Enum.MeshType.FileMesh | |
| 3245 | b50.Name = "Mesh" | |
| 3246 | b50.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933) | |
| 3247 | p51 = Instance.new("Part", m2)
| |
| 3248 | p51.BrickColor = BrickColor.new("Really red")
| |
| 3249 | p51.Material = Enum.Material.SmoothPlastic | |
| 3250 | p51.Reflectance = 0.30000001192093 | |
| 3251 | p51.CFrame = CFrame.new(26.0989265, 25.8644028, 25.353363, -0.573574364, -0.469848186, -0.671007454, -2.67389191e-006, -0.819150448, 0.573572874, -0.819151223, 0.328989238, 0.469846845) | |
| 3252 | p51.CanCollide = false | |
| 3253 | p51.FormFactor = Enum.FormFactor.Custom | |
| 3254 | p51.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371) | |
| 3255 | p51.BottomSurface = Enum.SurfaceType.Smooth | |
| 3256 | p51.TopSurface = Enum.SurfaceType.Smooth | |
| 3257 | b51 = Instance.new("SpecialMesh", p51)
| |
| 3258 | b51.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 3259 | b51.TextureId = "" | |
| 3260 | b51.MeshType = Enum.MeshType.FileMesh | |
| 3261 | b51.Name = "Mesh" | |
| 3262 | b51.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595) | |
| 3263 | p52 = Instance.new("Part", m2)
| |
| 3264 | p52.BrickColor = BrickColor.new("Really black")
| |
| 3265 | p52.Material = Enum.Material.Neon | |
| 3266 | p52.CFrame = CFrame.new(21.2912331, 25.2490387, 28.7011547, 0.142246991, 0.806705594, -0.573574483, 0.984804809, -0.173645705, -2.66166035e-006, -0.0995996594, -0.564862788, -0.819151103) | |
| 3267 | p52.FormFactor = Enum.FormFactor.Custom | |
| 3268 | p52.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918) | |
| 3269 | p52.BottomSurface = Enum.SurfaceType.Smooth | |
| 3270 | p52.TopSurface = Enum.SurfaceType.Smooth | |
| 3271 | b52 = Instance.new("SpecialMesh", p52)
| |
| 3272 | b52.MeshType = Enum.MeshType.Sphere | |
| 3273 | b52.Name = "Mesh" | |
| 3274 | p53 = Instance.new("Part", m2)
| |
| 3275 | p53.BrickColor = BrickColor.new("Really black")
| |
| 3276 | p53.Material = Enum.Material.Neon | |
| 3277 | p53.CFrame = CFrame.new(23.2582321, 27.8460655, 27.3238525, 0.409577936, 0.709403872, -0.573574483, 0.866023481, -0.499996662, -2.64914797e-006, -0.28678745, -0.496732205, -0.819151103) | |
| 3278 | p53.FormFactor = Enum.FormFactor.Custom | |
| 3279 | p53.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918) | |
| 3280 | p53.BottomSurface = Enum.SurfaceType.Smooth | |
| 3281 | p53.TopSurface = Enum.SurfaceType.Smooth | |
| 3282 | b53 = Instance.new("SpecialMesh", p53)
| |
| 3283 | b53.MeshType = Enum.MeshType.Sphere | |
| 3284 | b53.Name = "Mesh" | |
| 3285 | p54 = Instance.new("Part", m2)
| |
| 3286 | p54.BrickColor = BrickColor.new("Really black")
| |
| 3287 | p54.Material = Enum.Material.Neon | |
| 3288 | p54.CFrame = CFrame.new(21.2899132, 27.1965466, 28.7020855, 0.280168742, 0.769748747, -0.573574483, 0.939690113, -0.342017204, -2.64914797e-006, -0.196173787, -0.538985729, -0.819151103) | |
| 3289 | p54.FormFactor = Enum.FormFactor.Custom | |
| 3290 | p54.Size = Vector3.new(0.61060679, 8.03632927, 0.221234918) | |
| 3291 | p54.BottomSurface = Enum.SurfaceType.Smooth | |
| 3292 | p54.TopSurface = Enum.SurfaceType.Smooth | |
| 3293 | b54 = Instance.new("SpecialMesh", p54)
| |
| 3294 | b54.MeshType = Enum.MeshType.Sphere | |
| 3295 | b54.Name = "Mesh" | |
| 3296 | p55 = Instance.new("Part", m2)
| |
| 3297 | p55.BrickColor = BrickColor.new("Really black")
| |
| 3298 | p55.Material = Enum.Material.Neon | |
| 3299 | p55.CFrame = CFrame.new(22.732933, 23.2277641, 27.6916542, -0.280163169, 0.769749939, -0.573574483, 0.939688265, 0.342020243, -2.67457881e-006, 0.196175426, -0.538984358, -0.819150984) | |
| 3300 | p55.FormFactor = Enum.FormFactor.Custom | |
| 3301 | p55.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918) | |
| 3302 | p55.BottomSurface = Enum.SurfaceType.Smooth | |
| 3303 | p55.TopSurface = Enum.SurfaceType.Smooth | |
| 3304 | b55 = Instance.new("SpecialMesh", p55)
| |
| 3305 | b55.MeshType = Enum.MeshType.Sphere | |
| 3306 | b55.Name = "Mesh" | |
| 3307 | p56 = Instance.new("Part", m2)
| |
| 3308 | p56.BrickColor = BrickColor.new("Really red")
| |
| 3309 | p56.Material = Enum.Material.SmoothPlastic | |
| 3310 | p56.Reflectance = 0.30000001192093 | |
| 3311 | p56.CFrame = CFrame.new(26.1728668, 26.7314224, 25.3015804, -0.573574424, -0.469846636, -0.671006322, -2.71658587e-006, -0.819149017, 0.573572636, -0.819150925, 0.328987926, 0.469845742) | |
| 3312 | p56.CanCollide = false | |
| 3313 | p56.FormFactor = Enum.FormFactor.Custom | |
| 3314 | p56.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371) | |
| 3315 | p56.BottomSurface = Enum.SurfaceType.Smooth | |
| 3316 | p56.TopSurface = Enum.SurfaceType.Smooth | |
| 3317 | b56 = Instance.new("SpecialMesh", p56)
| |
| 3318 | b56.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 3319 | b56.TextureId = "" | |
| 3320 | b56.MeshType = Enum.MeshType.FileMesh | |
| 3321 | b56.Name = "Mesh" | |
| 3322 | b56.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595) | |
| 3323 | p57 = Instance.new("Part", m2)
| |
| 3324 | p57.BrickColor = BrickColor.new("Really red")
| |
| 3325 | p57.Material = Enum.Material.SmoothPlastic | |
| 3326 | p57.Reflectance = 0.30000001192093 | |
| 3327 | p57.CFrame = CFrame.new(26.0715504, 26.8180256, 25.3725224, -0.573574424, -0.469846636, -0.671006322, -2.71658587e-006, -0.819149017, 0.573572636, -0.819150925, 0.328987926, 0.469845742) | |
| 3328 | p57.CanCollide = false | |
| 3329 | p57.FormFactor = Enum.FormFactor.Custom | |
| 3330 | p57.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371) | |
| 3331 | p57.BottomSurface = Enum.SurfaceType.Smooth | |
| 3332 | p57.TopSurface = Enum.SurfaceType.Smooth | |
| 3333 | b57 = Instance.new("SpecialMesh", p57)
| |
| 3334 | b57.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 3335 | b57.TextureId = "" | |
| 3336 | b57.MeshType = Enum.MeshType.FileMesh | |
| 3337 | b57.Name = "Mesh" | |
| 3338 | b57.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933) | |
| 3339 | p58 = Instance.new("Part", m2)
| |
| 3340 | p58.BrickColor = BrickColor.new("Really red")
| |
| 3341 | p58.Material = Enum.Material.SmoothPlastic | |
| 3342 | p58.Reflectance = 0.30000001192093 | |
| 3343 | p58.CFrame = CFrame.new(26.2773418, 26.6421242, 25.2284393, -0.573574424, -0.469846636, -0.671006322, -2.71658587e-006, -0.819149017, 0.573572636, -0.819150925, 0.328987926, 0.469845742) | |
| 3344 | p58.CanCollide = false | |
| 3345 | p58.FormFactor = Enum.FormFactor.Custom | |
| 3346 | p58.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371) | |
| 3347 | p58.BottomSurface = Enum.SurfaceType.Smooth | |
| 3348 | p58.TopSurface = Enum.SurfaceType.Smooth | |
| 3349 | b58 = Instance.new("SpecialMesh", p58)
| |
| 3350 | b58.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 3351 | b58.TextureId = "" | |
| 3352 | b58.MeshType = Enum.MeshType.FileMesh | |
| 3353 | b58.Name = "Mesh" | |
| 3354 | b58.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665) | |
| 3355 | p59 = Instance.new("Part", m2)
| |
| 3356 | p59.BrickColor = BrickColor.new("Really red")
| |
| 3357 | p59.Material = Enum.Material.SmoothPlastic | |
| 3358 | p59.Reflectance = 0.30000001192093 | |
| 3359 | p59.CFrame = CFrame.new(24.6884308, 25.7025909, 26.3410091, -0.573574424, -0.280167818, -0.769747615, -2.71658587e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172908, 0.538984478) | |
| 3360 | p59.CanCollide = false | |
| 3361 | p59.FormFactor = Enum.FormFactor.Custom | |
| 3362 | p59.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371) | |
| 3363 | p59.BottomSurface = Enum.SurfaceType.Smooth | |
| 3364 | p59.TopSurface = Enum.SurfaceType.Smooth | |
| 3365 | b59 = Instance.new("SpecialMesh", p59)
| |
| 3366 | b59.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 3367 | b59.TextureId = "" | |
| 3368 | b59.MeshType = Enum.MeshType.FileMesh | |
| 3369 | b59.Name = "Mesh" | |
| 3370 | b59.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665) | |
| 3371 | p60 = Instance.new("Part", m2)
| |
| 3372 | p60.BrickColor = BrickColor.new("Really red")
| |
| 3373 | p60.Material = Enum.Material.SmoothPlastic | |
| 3374 | p60.Reflectance = 0.30000001192093 | |
| 3375 | p60.CFrame = CFrame.new(24.4523582, 25.807478, 26.5063095, -0.573574424, -0.280167848, -0.769747615, -2.7445908e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172863, 0.538984478) | |
| 3376 | p60.CanCollide = false | |
| 3377 | p60.FormFactor = Enum.FormFactor.Custom | |
| 3378 | p60.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371) | |
| 3379 | p60.BottomSurface = Enum.SurfaceType.Smooth | |
| 3380 | p60.TopSurface = Enum.SurfaceType.Smooth | |
| 3381 | b60 = Instance.new("SpecialMesh", p60)
| |
| 3382 | b60.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 3383 | b60.TextureId = "" | |
| 3384 | b60.MeshType = Enum.MeshType.FileMesh | |
| 3385 | b60.Name = "Mesh" | |
| 3386 | b60.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933) | |
| 3387 | p61 = Instance.new("Part", m2)
| |
| 3388 | p61.BrickColor = BrickColor.new("Really red")
| |
| 3389 | p61.Material = Enum.Material.SmoothPlastic | |
| 3390 | p61.Reflectance = 0.30000001192093 | |
| 3391 | p61.CFrame = CFrame.new(24.5685883, 25.7558403, 26.4249287, -0.573574424, -0.280167878, -0.769747615, -2.77259574e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172819, 0.538984478) | |
| 3392 | p61.CanCollide = false | |
| 3393 | p61.FormFactor = Enum.FormFactor.Custom | |
| 3394 | p61.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371) | |
| 3395 | p61.BottomSurface = Enum.SurfaceType.Smooth | |
| 3396 | p61.TopSurface = Enum.SurfaceType.Smooth | |
| 3397 | b61 = Instance.new("SpecialMesh", p61)
| |
| 3398 | b61.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 3399 | b61.TextureId = "" | |
| 3400 | b61.MeshType = Enum.MeshType.FileMesh | |
| 3401 | b61.Name = "Mesh" | |
| 3402 | b61.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595) | |
| 3403 | p62 = Instance.new("Part", m2)
| |
| 3404 | p62.BrickColor = BrickColor.new("Really red")
| |
| 3405 | p62.Material = Enum.Material.SmoothPlastic | |
| 3406 | p62.Reflectance = 0.30000001192093 | |
| 3407 | p62.CFrame = CFrame.new(24.6884365, 25.7025948, 26.3410149, -0.573574424, -0.280167907, -0.769747615, -2.80060067e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172774, 0.538984478) | |
| 3408 | p62.CanCollide = false | |
| 3409 | p62.FormFactor = Enum.FormFactor.Custom | |
| 3410 | p62.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371) | |
| 3411 | p62.BottomSurface = Enum.SurfaceType.Smooth | |
| 3412 | p62.TopSurface = Enum.SurfaceType.Smooth | |
| 3413 | b62 = Instance.new("SpecialMesh", p62)
| |
| 3414 | b62.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 3415 | b62.TextureId = "" | |
| 3416 | b62.MeshType = Enum.MeshType.FileMesh | |
| 3417 | b62.Name = "Mesh" | |
| 3418 | b62.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665) | |
| 3419 | p63 = Instance.new("Part", m2)
| |
| 3420 | p63.BrickColor = BrickColor.new("Really red")
| |
| 3421 | p63.Material = Enum.Material.SmoothPlastic | |
| 3422 | p63.Reflectance = 0.30000001192093 | |
| 3423 | p63.CFrame = CFrame.new(24.452364, 25.8074818, 26.5063152, -0.573574424, -0.280167937, -0.769747615, -2.8286056e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172729, 0.538984478) | |
| 3424 | p63.CanCollide = false | |
| 3425 | p63.FormFactor = Enum.FormFactor.Custom | |
| 3426 | p63.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371) | |
| 3427 | p63.BottomSurface = Enum.SurfaceType.Smooth | |
| 3428 | p63.TopSurface = Enum.SurfaceType.Smooth | |
| 3429 | b63 = Instance.new("SpecialMesh", p63)
| |
| 3430 | b63.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 3431 | b63.TextureId = "" | |
| 3432 | b63.MeshType = Enum.MeshType.FileMesh | |
| 3433 | b63.Name = "Mesh" | |
| 3434 | b63.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933) | |
| 3435 | p64 = Instance.new("Part", m2)
| |
| 3436 | p64.BrickColor = BrickColor.new("Really red")
| |
| 3437 | p64.Material = Enum.Material.SmoothPlastic | |
| 3438 | p64.Reflectance = 0.30000001192093 | |
| 3439 | p64.CFrame = CFrame.new(24.568594, 25.7558441, 26.4249344, -0.573574424, -0.280167967, -0.769747615, -2.85661054e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172684, 0.538984478) | |
| 3440 | p64.CanCollide = false | |
| 3441 | p64.FormFactor = Enum.FormFactor.Custom | |
| 3442 | p64.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371) | |
| 3443 | p64.BottomSurface = Enum.SurfaceType.Smooth | |
| 3444 | p64.TopSurface = Enum.SurfaceType.Smooth | |
| 3445 | b64 = Instance.new("SpecialMesh", p64)
| |
| 3446 | b64.MeshId = "http://www.roblox.com/asset/?id=3270017" | |
| 3447 | b64.TextureId = "" | |
| 3448 | b64.MeshType = Enum.MeshType.FileMesh | |
| 3449 | b64.Name = "Mesh" | |
| 3450 | b64.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595) | |
| 3451 | p65 = Instance.new("Part", m2)
| |
| 3452 | p65.BrickColor = BrickColor.new("Really black")
| |
| 3453 | p65.Transparency = 1 | |
| 3454 | p65.Name = "TorsoPart" | |
| 3455 | p65.CFrame = CFrame.new(27.0399818, 25.1251049, 25.3600311, 0.999996543, 2.59280205e-006, 8.94069672e-008, 2.77161598e-006, 0.999995351, 1.56462193e-006, 6.2584877e-007, 1.51991844e-006, 0.999998093) | |
| 3456 | p65.FormFactor = Enum.FormFactor.Symmetric | |
| 3457 | p65.Size = Vector3.new(4, 4, 2) | |
| 3458 | w1 = Instance.new("Weld", p1)
| |
| 3459 | w1.Name = "Part_Weld" | |
| 3460 | w1.Part0 = p1 | |
| 3461 | w1.C0 = CFrame.new(7.48623466, 46.9062119, -4.72964478, -0.579227924, 0.707106769, -0.405579776, -0.579227805, -0.707106769, -0.405579716, -0.573576331, 0, 0.819152117) | |
| 3462 | w1.Part1 = p2 | |
| 3463 | w1.C1 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664) | |
| 3464 | w2 = Instance.new("Weld", p2)
| |
| 3465 | w2.Name = "Part_Weld" | |
| 3466 | w2.Part0 = p2 | |
| 3467 | w2.C0 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664) | |
| 3468 | w2.Part1 = p3 | |
| 3469 | w2.C1 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664) | |
| 3470 | w3 = Instance.new("Weld", p3)
| |
| 3471 | w3.Name = "Part_Weld" | |
| 3472 | w3.Part0 = p3 | |
| 3473 | w3.C0 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664) | |
| 3474 | w3.Part1 = p4 | |
| 3475 | w3.C1 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789) | |
| 3476 | w4 = Instance.new("Weld", p4)
| |
| 3477 | w4.Name = "Part_Weld" | |
| 3478 | w4.Part0 = p4 | |
| 3479 | w4.C0 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789) | |
| 3480 | w4.Part1 = p5 | |
| 3481 | w4.C1 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664) | |
| 3482 | w5 = Instance.new("Weld", p5)
| |
| 3483 | w5.Name = "Part_Weld" | |
| 3484 | w5.Part0 = p5 | |
| 3485 | w5.C0 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664) | |
| 3486 | w5.Part1 = p6 | |
| 3487 | w5.C1 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664) | |
| 3488 | w6 = Instance.new("Weld", p6)
| |
| 3489 | w6.Name = "Part_Weld" | |
| 3490 | w6.Part0 = p6 | |
| 3491 | w6.C0 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664) | |
| 3492 | w6.Part1 = p7 | |
| 3493 | w6.C1 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664) | |
| 3494 | w7 = Instance.new("Weld", p7)
| |
| 3495 | w7.Name = "Part_Weld" | |
| 3496 | w7.Part0 = p7 | |
| 3497 | w7.C0 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664) | |
| 3498 | w7.Part1 = p8 | |
| 3499 | w7.C1 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664) | |
| 3500 | w8 = Instance.new("Weld", p8)
| |
| 3501 | w8.Name = "Part_Weld" | |
| 3502 | w8.Part0 = p8 | |
| 3503 | w8.C0 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664) | |
| 3504 | w8.Part1 = p9 | |
| 3505 | w8.C1 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141) | |
| 3506 | w9 = Instance.new("Weld", p9)
| |
| 3507 | w9.Name = "Part_Weld" | |
| 3508 | w9.Part0 = p9 | |
| 3509 | w9.C0 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141) | |
| 3510 | w9.Part1 = p10 | |
| 3511 | w9.C1 = CFrame.new(-4.6974659, 0.512617111, -46.0237579, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576) | |
| 3512 | w10 = Instance.new("Weld", p10)
| |
| 3513 | w10.Name = "Part_Weld" | |
| 3514 | w10.Part0 = p10 | |
| 3515 | w10.C0 = CFrame.new(-4.6974659, 0.512617111, -46.0237579, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576) | |
| 3516 | w10.Part1 = p11 | |
| 3517 | w10.C1 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576) | |
| 3518 | w11 = Instance.new("Weld", p11)
| |
| 3519 | w11.Name = "Part_Weld" | |
| 3520 | w11.Part0 = p11 | |
| 3521 | w11.C0 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576) | |
| 3522 | w11.Part1 = p12 | |
| 3523 | w11.C1 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564) | |
| 3524 | w12 = Instance.new("Weld", p12)
| |
| 3525 | w12.Name = "Part_Weld" | |
| 3526 | w12.Part0 = p12 | |
| 3527 | w12.C0 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564) | |
| 3528 | w12.Part1 = p13 | |
| 3529 | w12.C1 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576) | |
| 3530 | w13 = Instance.new("Weld", p13)
| |
| 3531 | w13.Name = "Part_Weld" | |
| 3532 | w13.Part0 = p13 | |
| 3533 | w13.C0 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576) | |
| 3534 | w13.Part1 = p14 | |
| 3535 | w13.C1 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564) | |
| 3536 | w14 = Instance.new("Weld", p14)
| |
| 3537 | w14.Name = "Part_Weld" | |
| 3538 | w14.Part0 = p14 | |
| 3539 | w14.C0 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564) | |
| 3540 | w14.Part1 = p15 | |
| 3541 | w14.C1 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789) | |
| 3542 | w15 = Instance.new("Weld", p15)
| |
| 3543 | w15.Name = "Part_Weld" | |
| 3544 | w15.Part0 = p15 | |
| 3545 | w15.C0 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789) | |
| 3546 | w15.Part1 = p16 | |
| 3547 | w15.C1 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564) | |
| 3548 | w16 = Instance.new("Weld", p16)
| |
| 3549 | w16.Name = "Part_Weld" | |
| 3550 | w16.Part0 = p16 | |
| 3551 | w16.C0 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564) | |
| 3552 | w16.Part1 = p17 | |
| 3553 | w16.C1 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789) | |
| 3554 | w17 = Instance.new("Weld", p17)
| |
| 3555 | w17.Name = "Part_Weld" | |
| 3556 | w17.Part0 = p17 | |
| 3557 | w17.C0 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789) | |
| 3558 | w17.Part1 = p18 | |
| 3559 | w17.C1 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576) | |
| 3560 | w18 = Instance.new("Weld", p18)
| |
| 3561 | w18.Name = "Part_Weld" | |
| 3562 | w18.Part0 = p18 | |
| 3563 | w18.C0 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576) | |
| 3564 | w18.Part1 = p19 | |
| 3565 | w18.C1 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141) | |
| 3566 | w19 = Instance.new("Weld", p19)
| |
| 3567 | w19.Name = "Part_Weld" | |
| 3568 | w19.Part0 = p19 | |
| 3569 | w19.C0 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141) | |
| 3570 | w19.Part1 = p20 | |
| 3571 | w19.C1 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141) | |
| 3572 | w20 = Instance.new("Weld", p20)
| |
| 3573 | w20.Name = "Part_Weld" | |
| 3574 | w20.Part0 = p20 | |
| 3575 | w20.C0 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141) | |
| 3576 | w20.Part1 = p21 | |
| 3577 | w20.C1 = CFrame.new(-4.69746971, 0.512615204, -45.8727722, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576) | |
| 3578 | w21 = Instance.new("Weld", p21)
| |
| 3579 | w21.Name = "Part_Weld" | |
| 3580 | w21.Part0 = p21 | |
| 3581 | w21.C0 = CFrame.new(-4.69746971, 0.512615204, -45.8727722, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576) | |
| 3582 | w21.Part1 = p22 | |
| 3583 | w21.C1 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141) | |
| 3584 | w22 = Instance.new("Weld", p22)
| |
| 3585 | w22.Name = "Part_Weld" | |
| 3586 | w22.Part0 = p22 | |
| 3587 | w22.C0 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141) | |
| 3588 | w22.Part1 = p23 | |
| 3589 | w22.C1 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789) | |
| 3590 | w23 = Instance.new("Weld", p23)
| |
| 3591 | w23.Name = "Part_Weld" | |
| 3592 | w23.Part0 = p23 | |
| 3593 | w23.C0 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789) | |
| 3594 | w23.Part1 = p24 | |
| 3595 | w23.C1 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789) | |
| 3596 | w24 = Instance.new("Weld", p24)
| |
| 3597 | w24.Name = "Part_Weld" | |
| 3598 | w24.Part0 = p24 | |
| 3599 | w24.C0 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789) | |
| 3600 | w24.Part1 = p25 | |
| 3601 | w24.C1 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564) | |
| 3602 | w25 = Instance.new("Weld", p25)
| |
| 3603 | w25.Name = "Part_Weld" | |
| 3604 | w25.Part0 = p25 | |
| 3605 | w25.C0 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564) | |
| 3606 | w25.Part1 = p26 | |
| 3607 | w25.C1 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789) | |
| 3608 | w26 = Instance.new("Weld", p26)
| |
| 3609 | w26.Name = "Part_Weld" | |
| 3610 | w26.Part0 = p26 | |
| 3611 | w26.C0 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789) | |
| 3612 | w26.Part1 = p27 | |
| 3613 | w26.C1 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141) | |
| 3614 | w27 = Instance.new("Weld", p27)
| |
| 3615 | w27.Name = "Part_Weld" | |
| 3616 | w27.Part0 = p27 | |
| 3617 | w27.C0 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141) | |
| 3618 | w27.Part1 = p28 | |
| 3619 | w27.C1 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576) | |
| 3620 | w28 = Instance.new("Weld", p28)
| |
| 3621 | w28.Name = "Part_Weld" | |
| 3622 | w28.Part0 = p28 | |
| 3623 | w28.C0 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576) | |
| 3624 | w28.Part1 = p29 | |
| 3625 | w28.C1 = CFrame.new(-36.0110359, 31.0260429, -4.71271896, 0.280166358, 0.93969208, 0.196174681, -0.769750178, 0.342019618, -0.538985252, -0.57357645, -2.95716429e-008, 0.819151998) | |
| 3626 | w29 = Instance.new("Weld", p29)
| |
| 3627 | w29.Name = "Part_Weld" | |
| 3628 | w29.Part0 = p29 | |
| 3629 | w29.C0 = CFrame.new(-36.0110359, 31.0260429, -4.71271896, 0.280166358, 0.93969208, 0.196174681, -0.769750178, 0.342019618, -0.538985252, -0.57357645, -2.95716429e-008, 0.819151998) | |
| 3630 | w29.Part1 = p30 | |
| 3631 | w29.C1 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564) | |
| 3632 | w30 = Instance.new("Weld", p30)
| |
| 3633 | w30.Name = "Part_Weld" | |
| 3634 | w30.Part0 = p30 | |
| 3635 | w30.C0 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564) | |
| 3636 | w30.Part1 = p31 | |
| 3637 | w30.C1 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141) | |
| 3638 | w31 = Instance.new("Weld", p31)
| |
| 3639 | w31.Name = "Part_Weld" | |
| 3640 | w31.Part0 = p31 | |
| 3641 | w31.C0 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141) | |
| 3642 | w31.Part1 = p32 | |
| 3643 | w31.C1 = CFrame.new(-4.6974678, 0.512617111, -45.717083, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576) | |
| 3644 | w32 = Instance.new("Weld", p32)
| |
| 3645 | w32.Name = "Part_Weld" | |
| 3646 | w32.Part0 = p32 | |
| 3647 | w32.C0 = CFrame.new(-4.6974678, 0.512617111, -45.717083, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576) | |
| 3648 | w32.Part1 = p33 | |
| 3649 | w32.C1 = CFrame.new(-17.3583775, 46.9591446, -4.71270752, -0.142244235, 0.98480773, -0.0996004939, -0.806707144, -0.173648238, -0.564862549, -0.57357657, 0, 0.819151998) | |
| 3650 | w33 = Instance.new("Weld", p33)
| |
| 3651 | w33.Name = "Part_Weld" | |
| 3652 | w33.Part0 = p33 | |
| 3653 | w33.C0 = CFrame.new(-17.3583775, 46.9591446, -4.71270752, -0.142244235, 0.98480773, -0.0996004939, -0.806707144, -0.173648238, -0.564862549, -0.57357657, 0, 0.819151998) | |
| 3654 | w33.Part1 = p34 | |
| 3655 | w33.C1 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576) | |
| 3656 | w34 = Instance.new("Weld", p34)
| |
| 3657 | w34.Name = "Part_Weld" | |
| 3658 | w34.Part0 = p34 | |
| 3659 | w34.C0 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576) | |
| 3660 | w34.Part1 = p35 | |
| 3661 | w34.C1 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564) | |
| 3662 | w35 = Instance.new("Weld", p35)
| |
| 3663 | w35.Name = "Part_Weld" | |
| 3664 | w35.Part0 = p35 | |
| 3665 | w35.C0 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564) | |
| 3666 | w35.Part1 = p36 | |
| 3667 | w35.C1 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576) | |
| 3668 | w36 = Instance.new("Weld", p36)
| |
| 3669 | w36.Name = "Part_Weld" | |
| 3670 | w36.Part0 = p36 | |
| 3671 | w36.C0 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576) | |
| 3672 | w36.Part1 = p37 | |
| 3673 | w36.C1 = CFrame.new(-3.70028734, 49.2830544, -4.71271324, -0.409575999, 0.866025388, -0.286788285, -0.709406435, -0.5, -0.496731967, -0.57357657, 0, 0.819151998) | |
| 3674 | w37 = Instance.new("Weld", p37)
| |
| 3675 | w37.Name = "Part_Weld" | |
| 3676 | w37.Part0 = p37 | |
| 3677 | w37.C0 = CFrame.new(-3.70028734, 49.2830544, -4.71271324, -0.409575999, 0.866025388, -0.286788285, -0.709406435, -0.5, -0.496731967, -0.57357657, 0, 0.819151998) | |
| 3678 | w37.Part1 = p38 | |
| 3679 | w37.C1 = CFrame.new(-10.7698097, 49.927597, -4.71271324, -0.280166447, 0.939692616, -0.196174681, -0.769750953, -0.342020154, -0.53898561, -0.57357657, 0, 0.819151998) | |
| 3680 | w38 = Instance.new("Weld", p38)
| |
| 3681 | w38.Name = "Part_Weld" | |
| 3682 | w38.Part0 = p38 | |
| 3683 | w38.C0 = CFrame.new(-10.7698097, 49.927597, -4.71271324, -0.280166447, 0.939692616, -0.196174681, -0.769750953, -0.342020154, -0.53898561, -0.57357657, 0, 0.819151998) | |
| 3684 | w38.Part1 = p39 | |
| 3685 | w38.C1 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219) | |
| 3686 | w39 = Instance.new("Weld", p39)
| |
| 3687 | w39.Name = "Part_Weld" | |
| 3688 | w39.Part0 = p39 | |
| 3689 | w39.C0 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219) | |
| 3690 | w39.Part1 = p40 | |
| 3691 | w39.C1 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219) | |
| 3692 | w40 = Instance.new("Weld", p40)
| |
| 3693 | w40.Name = "Part_Weld" | |
| 3694 | w40.Part0 = p40 | |
| 3695 | w40.C0 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219) | |
| 3696 | w40.Part1 = p41 | |
| 3697 | w40.C1 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219) | |
| 3698 | w41 = Instance.new("Weld", p41)
| |
| 3699 | w41.Name = "Part_Weld" | |
| 3700 | w41.Part0 = p41 | |
| 3701 | w41.C0 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219) | |
| 3702 | w41.Part1 = p42 | |
| 3703 | w41.C1 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147) | |
| 3704 | w42 = Instance.new("Weld", p42)
| |
| 3705 | w42.Name = "Part_Weld" | |
| 3706 | w42.Part0 = p42 | |
| 3707 | w42.C0 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147) | |
| 3708 | w42.Part1 = p43 | |
| 3709 | w42.C1 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147) | |
| 3710 | w43 = Instance.new("Weld", p43)
| |
| 3711 | w43.Name = "Part_Weld" | |
| 3712 | w43.Part0 = p43 | |
| 3713 | w43.C0 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147) | |
| 3714 | w43.Part1 = p44 | |
| 3715 | w43.C1 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147) | |
| 3716 | w44 = Instance.new("Weld", p44)
| |
| 3717 | w44.Name = "Part_Weld" | |
| 3718 | w44.Part0 = p44 | |
| 3719 | w44.C0 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147) | |
| 3720 | w44.Part1 = p45 | |
| 3721 | w44.C1 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147) | |
| 3722 | w45 = Instance.new("Weld", p45)
| |
| 3723 | w45.Name = "Part_Weld" | |
| 3724 | w45.Part0 = p45 | |
| 3725 | w45.C0 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147) | |
| 3726 | w45.Part1 = p46 | |
| 3727 | w45.C1 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147) | |
| 3728 | w46 = Instance.new("Weld", p46)
| |
| 3729 | w46.Name = "Part_Weld" | |
| 3730 | w46.Part0 = p46 | |
| 3731 | w46.C0 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147) | |
| 3732 | w46.Part1 = p47 | |
| 3733 | w46.C1 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147) | |
| 3734 | w47 = Instance.new("Weld", p47)
| |
| 3735 | w47.Name = "Part_Weld" | |
| 3736 | w47.Part0 = p47 | |
| 3737 | w47.C0 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147) | |
| 3738 | w47.Part1 = p48 | |
| 3739 | w47.C1 = CFrame.new(-23.7728367, 15.5624714, 35.7227516, 0.579227924, 0.707106769, -0.405579776, 0.579227865, -0.707106769, -0.405579716, -0.57357645, 0, -0.819151998) | |
| 3740 | w48 = Instance.new("Weld", p48)
| |
| 3741 | w48.Name = "Part_Weld" | |
| 3742 | w48.Part0 = p48 | |
| 3743 | w48.C0 = CFrame.new(-23.7728367, 15.5624714, 35.7227516, 0.579227924, 0.707106769, -0.405579776, 0.579227865, -0.707106769, -0.405579716, -0.57357645, 0, -0.819151998) | |
| 3744 | w48.Part1 = p49 | |
| 3745 | w48.C1 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219) | |
| 3746 | w49 = Instance.new("Weld", p49)
| |
| 3747 | w49.Name = "Part_Weld" | |
| 3748 | w49.Part0 = p49 | |
| 3749 | w49.C0 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219) | |
| 3750 | w49.Part1 = p50 | |
| 3751 | w49.C1 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219) | |
| 3752 | w50 = Instance.new("Weld", p50)
| |
| 3753 | w50.Name = "Part_Weld" | |
| 3754 | w50.Part0 = p50 | |
| 3755 | w50.C0 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219) | |
| 3756 | w50.Part1 = p51 | |
| 3757 | w50.C1 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219) | |
| 3758 | w51 = Instance.new("Weld", p51)
| |
| 3759 | w51.Name = "Part_Weld" | |
| 3760 | w51.Part0 = p51 | |
| 3761 | w51.C0 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219) | |
| 3762 | w51.Part1 = p52 | |
| 3763 | w51.C1 = CFrame.new(-25.0353527, 3.42085648, 35.7227554, 0.142244235, 0.98480773, -0.0996005014, 0.806707203, -0.173648238, -0.56486249, -0.57357645, 0, -0.819151998) | |
| 3764 | w52 = Instance.new("Weld", p52)
| |
| 3765 | w52.Name = "Part_Weld" | |
| 3766 | w52.Part0 = p52 | |
| 3767 | w52.C0 = CFrame.new(-25.0353527, 3.42085648, 35.7227554, 0.142244235, 0.98480773, -0.0996005014, 0.806707203, -0.173648238, -0.56486249, -0.57357645, 0, -0.819151998) | |
| 3768 | w52.Part1 = p53 | |
| 3769 | w52.C1 = CFrame.new(-25.8052597, 10.9961138, 35.7227554, 0.409575999, 0.866025388, -0.286788225, 0.709406435, -0.5, -0.496731758, -0.57357645, 0, -0.819151998) | |
| 3770 | w53 = Instance.new("Weld", p53)
| |
| 3771 | w53.Name = "Part_Weld" | |
| 3772 | w53.Part0 = p53 | |
| 3773 | w53.C0 = CFrame.new(-25.8052597, 10.9961138, 35.7227554, 0.409575999, 0.866025388, -0.286788225, 0.709406435, -0.5, -0.496731758, -0.57357645, 0, -0.819151998) | |
| 3774 | w53.Part1 = p54 | |
| 3775 | w53.C1 = CFrame.new(-25.8904991, 8.38383961, 35.7227592, 0.280166447, 0.939692616, -0.196174681, 0.769751012, -0.342020154, -0.538985491, -0.57357645, 0, -0.819151998) | |
| 3776 | w54 = Instance.new("Weld", p54)
| |
| 3777 | w54.Name = "Part_Weld" | |
| 3778 | w54.Part0 = p54 | |
| 3779 | w54.C0 = CFrame.new(-25.8904991, 8.38383961, 35.7227592, 0.280166447, 0.939692616, -0.196174681, 0.769751012, -0.342020154, -0.538985491, -0.57357645, 0, -0.819151998) | |
| 3780 | w54.Part1 = p55 | |
| 3781 | w54.C1 = CFrame.new(-20.8903503, -10.5176811, 35.7227554, -0.280166388, 0.93969208, 0.196174622, 0.769750416, 0.342019618, -0.538984895, -0.57357651, -2.95716429e-008, -0.819151938) | |
| 3782 | w55 = Instance.new("Weld", p55)
| |
| 3783 | w55.Name = "Part_Weld" | |
| 3784 | w55.Part0 = p55 | |
| 3785 | w55.C0 = CFrame.new(-20.8903503, -10.5176811, 35.7227554, -0.280166388, 0.93969208, 0.196174622, 0.769750416, 0.342019618, -0.538984895, -0.57357651, -2.95716429e-008, -0.819151938) | |
| 3786 | w55.Part1 = p56 | |
| 3787 | w55.C1 = CFrame.new(35.7379799, 25.8704014, -9.65809727, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219) | |
| 3788 | w56 = Instance.new("Weld", p56)
| |
| 3789 | w56.Name = "Part_Weld" | |
| 3790 | w56.Part0 = p56 | |
| 3791 | w56.C0 = CFrame.new(35.7379799, 25.8704014, -9.65809727, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219) | |
| 3792 | w56.Part1 = p57 | |
| 3793 | w56.C1 = CFrame.new(35.7379799, 25.8703995, -9.8090868, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219) | |
| 3794 | w57 = Instance.new("Weld", p57)
| |
| 3795 | w57.Name = "Part_Weld" | |
| 3796 | w57.Part0 = p57 | |
| 3797 | w57.C0 = CFrame.new(35.7379799, 25.8703995, -9.8090868, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219) | |
| 3798 | w57.Part1 = p58 | |
| 3799 | w57.C1 = CFrame.new(35.7379875, 25.8704014, -9.50240993, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219) | |
| 3800 | w58 = Instance.new("Weld", p58)
| |
| 3801 | w58.Name = "Part_Weld" | |
| 3802 | w58.Part0 = p58 | |
| 3803 | w58.C0 = CFrame.new(35.7379875, 25.8704014, -9.50240993, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219) | |
| 3804 | w58.Part1 = p59 | |
| 3805 | w58.C1 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431) | |
| 3806 | w59 = Instance.new("Weld", p59)
| |
| 3807 | w59.Name = "Part_Weld" | |
| 3808 | w59.Part0 = p59 | |
| 3809 | w59.C0 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431) | |
| 3810 | w59.Part1 = p60 | |
| 3811 | w59.C1 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431) | |
| 3812 | w60 = Instance.new("Weld", p60)
| |
| 3813 | w60.Name = "Part_Weld" | |
| 3814 | w60.Part0 = p60 | |
| 3815 | w60.C0 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431) | |
| 3816 | w60.Part1 = p61 | |
| 3817 | w60.C1 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431) | |
| 3818 | w61 = Instance.new("Weld", p61)
| |
| 3819 | w61.Name = "Part_Weld" | |
| 3820 | w61.Part0 = p61 | |
| 3821 | w61.C0 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431) | |
| 3822 | w61.Part1 = p62 | |
| 3823 | w61.C1 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431) | |
| 3824 | w62 = Instance.new("Weld", p62)
| |
| 3825 | w62.Name = "Part_Weld" | |
| 3826 | w62.Part0 = p62 | |
| 3827 | w62.C0 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431) | |
| 3828 | w62.Part1 = p63 | |
| 3829 | w62.C1 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431) | |
| 3830 | w63 = Instance.new("Weld", p63)
| |
| 3831 | w63.Name = "Part_Weld" | |
| 3832 | w63.Part0 = p63 | |
| 3833 | w63.C0 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431) | |
| 3834 | w63.Part1 = p64 | |
| 3835 | w63.C1 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431) | |
| 3836 | w64 = Instance.new("Weld", p64)
| |
| 3837 | w64.Name = "TorsoPart_Weld" | |
| 3838 | w64.Part0 = p64 | |
| 3839 | w64.C0 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431) | |
| 3840 | w64.Part1 = p65 | |
| 3841 | w64.C1 = CFrame.new(-27.0399971, -25.1251144, -25.3600025, 1, 0, 0, 0, 1, 0, 0, 0, 1) | |
| 3842 | m2.Parent = char | |
| 3843 | m2:MakeJoints() | |
| 3844 | -------------------------------------------------------------------------------- | |
| 3845 | local cor2 = Instance.new("Part", char.Wings)
| |
| 3846 | cor2.Name = "Thingy" | |
| 3847 | cor2.Locked = true | |
| 3848 | cor2.BottomSurface = 0 | |
| 3849 | cor2.CanCollide = false | |
| 3850 | cor2.Size = Vector3.new(0.2, 0.2, 0.2) | |
| 3851 | cor2.Transparency = 1 | |
| 3852 | cor2.TopSurface = 0 | |
| 3853 | corw2 = Instance.new("Weld", cor2)
| |
| 3854 | corw2.Part0 = torso | |
| 3855 | corw2.Part1 = cor2 | |
| 3856 | corw2.C0 = CFrame.new(0, 0.7, 0.8) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)) | |
| 3857 | corw2.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)) | |
| 3858 | weld2 = Instance.new("Weld", char.Wings)
| |
| 3859 | weld2.Part0 = cor2 | |
| 3860 | weld2.Part1 = char.Wings.TorsoPart | |
| 3861 | weld2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)) | |
| 3862 | local p = game.Players.LocalPlayer | |
| 3863 | local char = p.Character | |
| 3864 | ||
| 3865 | m=Instance.new('Model',char)
| |
| 3866 | ||
| 3867 | ||
| 3868 | local function weldBetween(a, b) | |
| 3869 | local weldd = Instance.new("ManualWeld")
| |
| 3870 | weldd.Part0 = a | |
| 3871 | weldd.Part1 = b | |
| 3872 | weldd.C0 = CFrame.new() | |
| 3873 | weldd.C1 = b.CFrame:inverse() * a.CFrame | |
| 3874 | weldd.Parent = a | |
| 3875 | return weldd | |
| 3876 | end | |
| 3877 | ||
| 3878 | it=Instance.new | |
| 3879 | ||
| 3880 | function nooutline(part) | |
| 3881 | part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10 | |
| 3882 | end | |
| 3883 | ||
| 3884 | function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size) | |
| 3885 | local fp=it("Part")
| |
| 3886 | fp.formFactor=formfactor | |
| 3887 | fp.Parent=parent | |
| 3888 | fp.Reflectance=reflectance | |
| 3889 | fp.Transparency=transparency | |
| 3890 | fp.CanCollide=false | |
| 3891 | fp.Locked=true | |
| 3892 | fp.BrickColor=BrickColor.new(tostring(brickcolor)) | |
| 3893 | fp.Name=name | |
| 3894 | fp.Size=size | |
| 3895 | fp.Position=char.Torso.Position | |
| 3896 | nooutline(fp) | |
| 3897 | fp.Material=material | |
| 3898 | fp:BreakJoints() | |
| 3899 | return fp | |
| 3900 | end | |
| 3901 | ||
| 3902 | function mesh(Mesh,part,meshtype,meshid,offset,scale) | |
| 3903 | local mesh=it(Mesh) | |
| 3904 | mesh.Parent=part | |
| 3905 | if Mesh=="SpecialMesh" then | |
| 3906 | mesh.MeshType=meshtype | |
| 3907 | mesh.MeshId=meshid | |
| 3908 | end | |
| 3909 | mesh.Offset=offset | |
| 3910 | mesh.Scale=scale | |
| 3911 | return mesh | |
| 3912 | end | |
| 3913 | ||
| 3914 | function weld(parent,part0,part1,c0,c1) | |
| 3915 | local weld=it("Weld")
| |
| 3916 | weld.Parent=parent | |
| 3917 | weld.Part0=part0 | |
| 3918 | weld.Part1=part1 | |
| 3919 | weld.C0=c0 | |
| 3920 | weld.C1=c1 | |
| 3921 | return weld | |
| 3922 | end | |
| 3923 | ||
| 3924 | Mesh2 = function(par,num,x,y,z) | |
| 3925 | local msh = _ | |
| 3926 | if num == 1 then | |
| 3927 | msh = Instance.new("CylinderMesh",par)
| |
| 3928 | elseif num == 2 then | |
| 3929 | msh = Instance.new("SpecialMesh",par)
| |
| 3930 | msh.MeshType = 3 | |
| 3931 | elseif num == 3 then | |
| 3932 | msh = Instance.new("BlockMesh",par)
| |
| 3933 | elseif num == 4 then | |
| 3934 | msh = Instance.new("SpecialMesh",par)
| |
| 3935 | msh.MeshType = "Torso" | |
| 3936 | elseif type(num) == 'string' then | |
| 3937 | msh = Instance.new("SpecialMesh",par)
| |
| 3938 | msh.MeshId = num | |
| 3939 | end | |
| 3940 | msh.Scale = Vector3.new(x,y,z) | |
| 3941 | return msh | |
| 3942 | end | |
| 3943 | ||
| 3944 | function nooutline(part) | |
| 3945 | part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10 | |
| 3946 | end | |
| 3947 | ||
| 3948 | function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size) | |
| 3949 | local fp=Instance.new("Part")
| |
| 3950 | fp.formFactor=formfactor | |
| 3951 | fp.Parent=parent | |
| 3952 | fp.Reflectance=reflectance | |
| 3953 | fp.Transparency=transparency | |
| 3954 | fp.CanCollide=false | |
| 3955 | fp.Locked=true | |
| 3956 | fp.BrickColor=BrickColor.new(tostring(brickcolor)) | |
| 3957 | fp.Name=name | |
| 3958 | fp.Size=size | |
| 3959 | fp.Position=char.Torso.Position | |
| 3960 | nooutline(fp) | |
| 3961 | fp.Material= material | |
| 3962 | fp:BreakJoints() | |
| 3963 | return fp | |
| 3964 | end | |
| 3965 | ||
| 3966 | ||
| 3967 | it = Instance.new | |
| 3968 | ||
| 3969 | Player=game:GetService('Players').LocalPlayer
| |
| 3970 | Character=Player.Character | |
| 3971 | Mouse=Player:GetMouse() | |
| 3972 | m=Instance.new('Model',Character)
| |
| 3973 | function part2(formfactor,parent,material,reflectance,transparency,brickcolor,name,size) | |
| 3974 | local fp=Instance.new("Part")
| |
| 3975 | fp.formFactor=formfactor | |
| 3976 | fp.Parent=parent | |
| 3977 | fp.Reflectance=reflectance | |
| 3978 | fp.Transparency=transparency | |
| 3979 | fp.CanCollide=false | |
| 3980 | fp.Locked=true | |
| 3981 | fp.BrickColor=BrickColor.new(tostring(brickcolor)) | |
| 3982 | fp.Name=name | |
| 3983 | fp.Size=size | |
| 3984 | fp.Position=Character.Torso.Position | |
| 3985 | nooutline(fp) | |
| 3986 | fp.Material= "Neon" | |
| 3987 | fp:BreakJoints() | |
| 3988 | return fp | |
| 3989 | end | |
| 3990 | function weld(parent,part0,part1,c0,c1) | |
| 3991 | local weld=it("Weld")
| |
| 3992 | weld.Parent=parent | |
| 3993 | weld.Part0=part0 | |
| 3994 | weld.Part1=part1 | |
| 3995 | weld.C0=c0 | |
| 3996 | weld.C1=c1 | |
| 3997 | return weld | |
| 3998 | end | |
| 3999 | function mesh(Mesh,part,meshtype,meshid,offset,scale) | |
| 4000 | local mesh=it(Mesh) | |
| 4001 | mesh.Parent=part | |
| 4002 | if Mesh=="SpecialMesh" then | |
| 4003 | mesh.MeshType=meshtype | |
| 4004 | mesh.MeshId=meshid | |
| 4005 | end | |
| 4006 | mesh.Offset=offset | |
| 4007 | mesh.Scale=scale | |
| 4008 | return mesh | |
| 4009 | end | |
| 4010 | ||
| 4011 | ||
| 4012 | mesh("SpecialMesh",TR1,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.700000048, 0.700000048))
| |
| 4013 | TR2=part2(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Really red","TR2",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
| 4014 | TR2weld=weld(m,MN,TR2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, 0.741921067, 0.198978901, 1.00000405, -2.92747281e-05, -1.7457176e-05, 2.37242784e-05, 0.965939343, -0.258769363, 2.44602561e-05, 0.25876832, 0.965943277)) | |
| 4015 | mesh("SpecialMesh",TR2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997))
| |
| 4016 | TR3=part2(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Really red","TR3",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
| 4017 | TR3weld=weld(m,MN,TR3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.81469727e-05, 0.603546381, 0.000186920166, 1.00000787, -8.63452442e-05, -2.6775524e-07, 8.62879679e-05, 1, -2.05411197e-07, 2.68686563e-07, 2.3024586e-07, 1.00000775)) | |
| 4018 | mesh("SpecialMesh",TR3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994))
| |
| 4019 | TR4=part2(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Really red","TR4",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
| 4020 | TR4weld=weld(m,MN,TR4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000106811523, 0.93274045, 0.000304222107, 1.00000787, -8.63452442e-05, -2.6775524e-07, 8.62879679e-05, 1, -2.05411197e-07, 2.68686563e-07, 2.3024586e-07, 1.00000775)) | |
| 4021 | mesh("SpecialMesh",TR4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994))
| |
| 4022 | TR5=part2(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Really red","TR5",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
| 4023 | TR5weld=weld(m,MN,TR5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, -0.960148811, -0.000584125519, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
| 4024 | mesh("SpecialMesh",TR5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997))
| |
| 4025 | TR6=part2(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Really red","TR6",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
| 4026 | TR6weld=weld(m,MN,TR6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.52587891e-05, -0.246893644, -0.00013256073, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
| 4027 | mesh("SpecialMesh",TR6,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997))
| |
| 4028 | MD21=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD21",Vector3.new(0.266768694, 0.54866457, 0.548664272)) | |
| 4029 | MD21weld=weld(m,MN,MD21,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.548921585, 0.301375628, 0.000118255615, -0.000262488145, -9.39509191e-05, -1.00000393, -0.000154611655, 1, -9.38984886e-05, 1.00000393, 0.000154557638, -0.000262471847)) | |
| 4030 | mesh("SpecialMesh",MD21,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.900000036, 0.900000036))
| |
| 4031 | MN=part2(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Really red","Handle",Vector3.new(1.03740847, 2.07481742, 1.03740823)) | |
| 4032 | MNweld=weld(m,Character["Right Leg"],MN,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00872802734, 0.00284510851, -0.0114479065, 0.000559218752, 0.00461495388, -0.999989212, 0.0116515048, 0.999921441, 0.00462115649, 0.999931991, -0.0116539635, 0.000505403674)) | |
| 4033 | FB1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB1",Vector3.new(0.252201617, 1.03740871, 0.622444928)) | |
| 4034 | FB1weld=weld(m,MN,FB1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.466812134, -0.259373605, 4.19616699e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
| 4035 | mesh("SpecialMesh",FB1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
| |
| 4036 | FB10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB10",Vector3.new(1.03740847, 0.259352177, 1.03740823)) | |
| 4037 | FB10weld=weld(m,MN,FB10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.14440918e-05, -0.907726586, -0.0001745224, -1.00000012, -4.3686945e-05, -0.000145533413, -4.37181443e-05, 1, 0.00021532696, 0.000145524042, 0.000215333974, -1)) | |
| 4038 | mesh("SpecialMesh",FB10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
| |
| 4039 | FB11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB11",Vector3.new(0.518704236, 0.778056443, 0.252201557)) | |
| 4040 | FB11weld=weld(m,MN,FB11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.81469727e-05, 0.49278298, -0.518682957, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
| 4041 | mesh("SpecialMesh",FB11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 0.415454417))
| |
| 4042 | FB12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB12",Vector3.new(1.03740847, 0.778056443, 1.03740823)) | |
| 4043 | FB12weld=weld(m,MN,FB12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.14440918e-05, 0.648371816, 1.38282776e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
| 4044 | mesh("SpecialMesh",FB12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
| |
| 4045 | FB2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB2",Vector3.new(1.03740847, 0.252201647, 1.03740823)) | |
| 4046 | FB2weld=weld(m,MN,FB2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.28881836e-05, 0.726178706, 4.57763672e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
| 4047 | mesh("SpecialMesh",FB2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.415454417, 1.04999995))
| |
| 4048 | FB3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB3",Vector3.new(1.03740847, 0.259352177, 0.518704116)) | |
| 4049 | FB3weld=weld(m,MN,FB3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000141143799, -0.907841623, 0.725996017, -1.00000012, -4.3686945e-05, -0.000145533413, -4.37181443e-05, 1, 0.00021532696, 0.000145524042, 0.000215333974, -1)) | |
| 4050 | mesh("SpecialMesh",FB3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
| |
| 4051 | FB4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB4",Vector3.new(1.03740847, 0.259352177, 0.518704116)) | |
| 4052 | FB4weld=weld(m,MN,FB4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000263214111, -0.495628834, 1.08177543, -1, -0.000208274461, -0.000166981248, -2.93208286e-05, 0.707433105, -0.706780434, 0.000265331706, -0.706780314, -0.707433105)) | |
| 4053 | mesh("SpecialMesh",FB4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
| |
| 4054 | FB5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB5",Vector3.new(1.03740847, 0.252201647, 1.03740823)) | |
| 4055 | FB5weld=weld(m,MN,FB5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.67028809e-05, 0.933657289, 6.19888306e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
| 4056 | mesh("SpecialMesh",FB5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.415454417, 1.04999995))
| |
| 4057 | FB6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB6",Vector3.new(1.03740847, 0.259352177, 1.03740823)) | |
| 4058 | FB6weld=weld(m,MN,FB6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.81469727e-06, 0.129679263, 3.29017639e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
| 4059 | mesh("SpecialMesh",FB6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
| |
| 4060 | FB7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB7",Vector3.new(0.252201617, 1.03740871, 0.622444928)) | |
| 4061 | FB7weld=weld(m,MN,FB7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.466838837, -0.259338915, -8.58306885e-06, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
| 4062 | mesh("SpecialMesh",FB7,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
| |
| 4063 | FB8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB8",Vector3.new(1.03740847, 0.259352177, 0.518704116)) | |
| 4064 | FB8weld=weld(m,MN,FB8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000205993652, -0.764207125, 0.546924591, -0.999995053, -0.000121198129, -0.00017335522, -0.000163274352, 0.965882957, 0.258978456, 0.000135882699, 0.258978575, -0.96587801)) | |
| 4065 | mesh("SpecialMesh",FB8,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
| |
| 4066 | FB9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB9",Vector3.new(1.03740847, 0.259352177, 1.03740823)) | |
| 4067 | FB9weld=weld(m,MN,FB9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00023651123, 0.648379326, -0.000217437744, -0.99999994, 0.00030120369, -0.00014261005, -0.000301247928, -0.999999821, 0.000302845408, -0.000142518838, 0.000302889268, 1)) | |
| 4068 | mesh("SpecialMesh",FB9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
| |
| 4069 | TN1=part2(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Really red","TN1",Vector3.new(1.03740847, 0.252201647, 1.03740823)) | |
| 4070 | TN1weld=weld(m,MN,TN1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.67028809e-05, 0.933657289, 6.19888306e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
| 4071 | mesh("SpecialMesh",TN1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.205670506, 1.05999994))
| |
| 4072 | TN2=part2(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Really red","TN2",Vector3.new(0.518704236, 0.778056443, 0.252201557)) | |
| 4073 | TN2weld=weld(m,MN,TN2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.81469727e-05, 0.49278298, -0.518682957, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
| 4074 | mesh("SpecialMesh",TN2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.899999917, 0.899999917, 0.419567823))
| |
| 4075 | TN3=part2(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Really red","TN3",Vector3.new(1.03740847, 0.252201647, 1.03740823)) | |
| 4076 | TN3weld=weld(m,MN,TN3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.28881836e-05, 0.726178706, 4.57763672e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012)) | |
| 4077 | mesh("SpecialMesh",TN3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.205670506, 1.05999994))
| |
| 4078 | ||
| 4079 | ||
| 4080 | ||
| 4081 | MN=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Really red","Handle",Vector3.new(1.09732866, 2.19465828, 1.09732854)) | |
| 4082 | MNweld=weld(m,char["Right Arm"],MN,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0323486328, -0.0509860516, -0.00120401382, -0.00500982394, 0.00520668458, 0.999973893, -0.00739898486, 0.999958873, -0.00524367485, -0.999960065, -0.00742506143, -0.0049710935)) | |
| 4083 | TR7=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Really red","TR7",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
| 4084 | TR7weld=weld(m,MN,TR7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000442504883, 0.68581605, 0.000279426575, 1.00000381, 0.000690042973, -0.000169841573, 0.000690029934, -0.999999702, -0.000261242967, -0.000170052983, 0.000261111214, -1.00000393)) | |
| 4085 | mesh("SpecialMesh",TR7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997))
| |
| 4086 | MD9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD9",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
| 4087 | MD9weld=weld(m,MN,MD9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0.741846681, 0.199262142, 1.00000405, -6.92205504e-06, 0.000154254027, 4.65649646e-05, 0.965939224, -0.25876984, -0.000147186685, 0.258768767, 0.965943158)) | |
| 4088 | mesh("SpecialMesh",MD9,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998))
| |
| 4089 | MD1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD1",Vector3.new(0.237408489, 0.259352177, 0.518704116)) | |
| 4090 | MD1weld=weld(m,MN,MD1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.402763367, -0.974855185, 0.682875633, 0.99988991, -0.0150081124, -0.00168980728, 0.0149988253, 0.999872923, -0.00539785437, 0.00177063467, 0.00537188631, 0.999988079)) | |
| 4091 | mesh("SpecialMesh",MD1,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
| |
| 4092 | MD10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD10",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
| 4093 | MD10weld=weld(m,MN,MD10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, -0.960148811, -0.000584125519, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
| 4094 | mesh("SpecialMesh",MD10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
| |
| 4095 | MD11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD11",Vector3.new(0.266768694, 1.09732914, 0.658397138)) | |
| 4096 | MD11weld=weld(m,MN,MD11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.493839264, -0.274354219, 4.24385071e-05, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
| 4097 | mesh("SpecialMesh",MD11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
| |
| 4098 | MD12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD12",Vector3.new(0.266768694, 1.09732914, 0.658397138)) | |
| 4099 | MD12weld=weld(m,MN,MD12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.493812561, -0.274300575, -0.000376224518, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
| 4100 | mesh("SpecialMesh",MD12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
| |
| 4101 | MD13=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD13",Vector3.new(1.09732866, 0.822996795, 1.09732854)) | |
| 4102 | MD13weld=weld(m,MN,MD13,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-05, 0.68582201, 0.000464439392, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
| 4103 | mesh("SpecialMesh",MD13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
| |
| 4104 | MD14=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD14",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
| 4105 | MD14weld=weld(m,MN,MD14,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-05, 0.603547096, 0.000416755676, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
| 4106 | mesh("SpecialMesh",MD14,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995))
| |
| 4107 | MD15=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD15",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
| 4108 | MD15weld=weld(m,MN,MD15,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.62939453e-05, 0.137180567, -4.529953e-05, -1.0000037, -0.000862163957, 0.000179466791, -0.000862103421, 0.999999523, 0.000520790287, -0.000179945491, 0.000520619913, -1.00000381)) | |
| 4109 | mesh("SpecialMesh",MD15,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
| |
| 4110 | MD16=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD16",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
| 4111 | MD16weld=weld(m,MN,MD16,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.86645508e-05, 0.932742357, 0.000658988953, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
| 4112 | mesh("SpecialMesh",MD16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995))
| |
| 4113 | MD19=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD19",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
| 4114 | MD19weld=weld(m,MN,MD19,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000442504883, 0.68581605, 0.000279426575, 1.00000381, 0.000690042973, -0.000169841573, 0.000690029934, -0.999999702, -0.000261242967, -0.000170052983, 0.000261111214, -1.00000393)) | |
| 4115 | mesh("SpecialMesh",MD19,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998))
| |
| 4116 | MD18=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD18",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
| 4117 | MD18weld=weld(m,MN,MD18,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.52587891e-05, -0.246893644, -0.00013256073, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
| 4118 | mesh("SpecialMesh",MD18,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998))
| |
| 4119 | MD2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD2",Vector3.new(0.2574085, 0.259352177, 0.518704116)) | |
| 4120 | MD2weld=weld(m,MN,MD2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.392555237, -0.573539257, 1.09872949, 0.999886394, -0.0152528733, -0.00162532134, 0.0119883548, 0.710953057, 0.70314008, -0.00956933573, -0.703074038, 0.71105516)) | |
| 4121 | mesh("SpecialMesh",MD2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
| |
| 4122 | MD3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD3",Vector3.new(0.247408509, 0.259352177, 0.518704116)) | |
| 4123 | MD3weld=weld(m,MN,MD3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.397964478, -0.817667723, 0.487944126, 0.999890864, -0.0149886403, -0.00193861127, 0.0139457425, 0.964460015, -0.263861924, 0.00582473399, 0.26380372, 0.964563668)) | |
| 4124 | mesh("SpecialMesh",MD3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
| |
| 4125 | MD4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD4",Vector3.new(0.247408509, 0.259352177, 0.518704116)) | |
| 4126 | MD4weld=weld(m,MN,MD4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.422103882, -0.82026124, 0.507567406, 0.999890864, -0.0149886403, -0.00193861127, 0.0139457425, 0.964460015, -0.263861924, 0.00582473399, 0.26380372, 0.964563668)) | |
| 4127 | mesh("SpecialMesh",MD4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
| |
| 4128 | MD5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD5",Vector3.new(0.2574085, 0.259352177, 0.518704116)) | |
| 4129 | MD5weld=weld(m,MN,MD5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.427509308, -0.557831764, 1.11046171, 0.999886394, -0.0152528733, -0.00162532134, 0.0119883548, 0.710953057, 0.70314008, -0.00956933573, -0.703074038, 0.71105516)) | |
| 4130 | mesh("SpecialMesh",MD5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
| |
| 4131 | MD6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD6",Vector3.new(0.237408489, 0.259352177, 0.518704116)) | |
| 4132 | MD6weld=weld(m,MN,MD6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417263031, -0.972257376, 0.702233315, 0.99988991, -0.0150081124, -0.00168980728, 0.0149988253, 0.999872923, -0.00539785437, 0.00177063467, 0.00537188631, 0.999988079)) | |
| 4133 | mesh("SpecialMesh",MD6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
| |
| 4134 | MD7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD7",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
| 4135 | MD7weld=weld(m,MN,MD7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000442504883, 0.68581605, 0.000279426575, 1.00000381, 0.000690042973, -0.000169841573, 0.000690029934, -0.999999702, -0.000261242967, -0.000170052983, 0.000261111214, -1.00000393)) | |
| 4136 | mesh("SpecialMesh",MD7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
| |
| 4137 | MD8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD8",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
| 4138 | MD8weld=weld(m,MN,MD8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, -0.960148811, -0.000584125519, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
| 4139 | mesh("SpecialMesh",MD8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998))
| |
| 4140 | TR1=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Really red","TR1",Vector3.new(0.266768694, 0.54866457, 0.548664272)) | |
| 4141 | TR1weld=weld(m,MN,TR1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.548826218, 0.30154109, 4.57763672e-05, -0.000205519143, -0.0001726388, -1, -4.31765802e-05, 1, -0.00017263052, 1, 4.314119e-05, -0.000205526594)) | |
| 4142 | mesh("SpecialMesh",TR1,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.700000048, 0.700000048))
| |
| 4143 | TR2=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Really red","TR2",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
| 4144 | TR2weld=weld(m,MN,TR2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, 0.741921067, 0.198978901, 1.00000405, -2.92747281e-05, -1.7457176e-05, 2.37242784e-05, 0.965939343, -0.258769363, 2.44602561e-05, 0.25876832, 0.965943277)) | |
| 4145 | mesh("SpecialMesh",TR2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997))
| |
| 4146 | TR3=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Really red","TR3",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
| 4147 | TR3weld=weld(m,MN,TR3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.81469727e-05, 0.603546381, 0.000186920166, 1.00000787, -8.63452442e-05, -2.6775524e-07, 8.62879679e-05, 1, -2.05411197e-07, 2.68686563e-07, 2.3024586e-07, 1.00000775)) | |
| 4148 | mesh("SpecialMesh",TR3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994))
| |
| 4149 | TR4=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Red","TR4",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
| 4150 | TR4weld=weld(m,MN,TR4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000106811523, 0.93274045, 0.000304222107, 1.00000787, -8.63452442e-05, -2.6775524e-07, 8.62879679e-05, 1, -2.05411197e-07, 2.68686563e-07, 2.3024586e-07, 1.00000775)) | |
| 4151 | mesh("SpecialMesh",TR4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994))
| |
| 4152 | TR5=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Really red","TR5",Vector3.new(1.09732866, 0.274332285, 1.09732854)) | |
| 4153 | TR5weld=weld(m,MN,TR5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, -0.960148811, -0.000584125519, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
| 4154 | mesh("SpecialMesh",TR5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997))
| |
| 4155 | TR6=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Really red","TR6",Vector3.new(1.09732866, 0.266768783, 1.09732854)) | |
| 4156 | TR6weld=weld(m,MN,TR6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.52587891e-05, -0.246893644, -0.00013256073, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799)) | |
| 4157 | mesh("SpecialMesh",TR6,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997))
| |
| 4158 | MD21=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Dark stone grey","MD21",Vector3.new(0.266768694, 0.54866457, 0.548664272)) | |
| 4159 | MD21weld=weld(m,MN,MD21,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.548921585, 0.301375628, 0.000118255615, -0.000262488145, -9.39509191e-05, -1.00000393, -0.000154611655, 1, -9.38984886e-05, 1.00000393, 0.000154557638, -0.000262471847)) | |
| 4160 | mesh("SpecialMesh",MD21,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.900000036, 0.900000036))
| |
| 4161 | ||
| 4162 | --[[TG1=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Really red","Handle",Vector3.new(0.231713057, 0.953130603, 0.953130603)) | |
| 4163 | TG1weld=weld(m,char["HumanoidRootPart"],TG1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.042350769, 2.25753069, -2.74072218, -0.0144443018, -0.00148237997, 0.999894559, 0.138804898, -0.99031961, 0.000536966661, 0.990214407, 0.138798028, 0.0145102367)) | |
| 4164 | mesh("SpecialMesh",TG1,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))]]
| |
| 4165 | do | |
| 4166 | ||
| 4167 | local filteredMessages = { [''] = '' };
| |
| 4168 | local onPropertyChanged = function (obj) | |
| 4169 | if (obj:isDescendantOf (workspace)) then | |
| 4170 | local objText = obj.Text; | |
| 4171 | ||
| 4172 | if (objText ~= '' and objText:find '(%S)') then | |
| 4173 | if (filteredMessages [objText] and filteredMessages [objText] ~= objText) then | |
| 4174 | obj.Text = filteredMessages [objText]; | |
| 4175 | elseif (not filteredMessages [objText]) then | |
| 4176 | obj.Text = ''; | |
| 4177 | ||
| 4178 | local filtered = game:service 'Chat':FilterStringForBroadcast (objText, game:service 'Players'.localPlayer); | |
| 4179 | ||
| 4180 | filteredMessages [objText] = filtered; | |
| 4181 | filteredMessages [filtered] = filtered; | |
| 4182 | ||
| 4183 | obj.Text = filtered; | |
| 4184 | end; | |
| 4185 | end; | |
| 4186 | end; | |
| 4187 | end; | |
| 4188 | ||
| 4189 | local newInstance = Instance.new; | |
| 4190 | Instance = {
| |
| 4191 | new = function (class, parent) | |
| 4192 | local obj = newInstance (class, parent); | |
| 4193 | ||
| 4194 | if (pcall (function()return obj.Text;end)) then | |
| 4195 | obj:getPropertyChangedSignal ('Parent'):connect (function () onPropertyChanged (obj) end);
| |
| 4196 | obj:getPropertyChangedSignal ('Text'):connect (function() onPropertyChanged (obj) end);
| |
| 4197 | end; | |
| 4198 | ||
| 4199 | return obj; | |
| 4200 | end; | |
| 4201 | }; | |
| 4202 | end; | |
| 4203 | function CreateMesh(MESH, PARENT, MESHTYPE, MESHID, TEXTUREID, SCALE, OFFSET) | |
| 4204 | local NEWMESH = IT(MESH) | |
| 4205 | if MESH == "SpecialMesh" then | |
| 4206 | NEWMESH.MeshType = MESHTYPE | |
| 4207 | if MESHID ~= "nil" and MESHID ~= "" then | |
| 4208 | NEWMESH.MeshId = "http://www.roblox.com/asset/?id="..MESHID | |
| 4209 | end | |
| 4210 | if TEXTUREID ~= "nil" and TEXTUREID ~= "" then | |
| 4211 | NEWMESH.TextureId = "http://www.roblox.com/asset/?id="..TEXTUREID | |
| 4212 | end | |
| 4213 | end | |
| 4214 | NEWMESH.Offset = OFFSET or VT(0, 0, 0) | |
| 4215 | NEWMESH.Scale = SCALE | |
| 4216 | NEWMESH.Parent = PARENT | |
| 4217 | return NEWMESH | |
| 4218 | end | |
| 4219 | ||
| 4220 | function CreatePart(FORMFACTOR, PARENT, MATERIAL, REFLECTANCE, TRANSPARENCY, BRICKCOLOR, NAME, SIZE, ANCHOR) | |
| 4221 | local NEWPART = IT("Part")
| |
| 4222 | NEWPART.formFactor = FORMFACTOR | |
| 4223 | NEWPART.Reflectance = REFLECTANCE | |
| 4224 | NEWPART.Transparency = TRANSPARENCY | |
| 4225 | NEWPART.CanCollide = false | |
| 4226 | NEWPART.Locked = true | |
| 4227 | NEWPART.Anchored = true | |
| 4228 | if ANCHOR == false then | |
| 4229 | NEWPART.Anchored = false | |
| 4230 | end | |
| 4231 | NEWPART.BrickColor = BRICKC(tostring(BRICKCOLOR)) | |
| 4232 | NEWPART.Name = NAME | |
| 4233 | NEWPART.Size = SIZE | |
| 4234 | NEWPART.Position = Torso.Position | |
| 4235 | NEWPART.Material = MATERIAL | |
| 4236 | NEWPART:BreakJoints() | |
| 4237 | NEWPART.Parent = PARENT | |
| 4238 | return NEWPART | |
| 4239 | end | |
| 4240 | ||
| 4241 | --//=================================\\ | |
| 4242 | --|| CUSTOMIZATION | |
| 4243 | --\\=================================// | |
| 4244 | ||
| 4245 | Player_Size = 1 --Size of the player. | |
| 4246 | - | Animation_Speed = 1 |
| 4246 | + | Animation_Speed = 3 |
| 4247 | Frame_Speed = 1 / 60 -- (1 / 30) OR (1 / 60) | |
| 4248 | ||
| 4249 | - | local Speed = 60 |
| 4249 | + | local Speed = 100 |
| 4250 | local Effects2 = {}
| |
| 4251 | ||
| 4252 | --//=================================\\ | |
| 4253 | --|| END OF CUSTOMIZATION | |
| 4254 | --\\=================================// | |
| 4255 | ||
| 4256 | local function weldBetween(a, b) | |
| 4257 | local weldd = Instance.new("ManualWeld")
| |
| 4258 | weldd.Part0 = a | |
| 4259 | weldd.Part1 = b | |
| 4260 | weldd.C0 = CFrame.new() | |
| 4261 | weldd.C1 = b.CFrame:inverse() * a.CFrame | |
| 4262 | weldd.Parent = a | |
| 4263 | return weldd | |
| 4264 | end | |
| 4265 | ||
| 4266 | --//=================================\\ | |
| 4267 | --|| USEFUL VALUES | |
| 4268 | --\\=================================// | |
| 4269 | ||
| 4270 | local ROOTC0 = CF(0, 0, 0) * ANGLES(RAD(-90), RAD(0), RAD(180)) | |
| 4271 | local NECKC0 = CF(0, 1, 0) * ANGLES(RAD(-90), RAD(0), RAD(180)) | |
| 4272 | local RIGHTSHOULDERC0 = CF(-0.5, 0, 0) * ANGLES(RAD(0), RAD(90), RAD(0)) | |
| 4273 | local LEFTSHOULDERC0 = CF(0.5, 0, 0) * ANGLES(RAD(0), RAD(-90), RAD(0)) | |
| 4274 | local CHANGEDEFENSE = 0 | |
| 4275 | local CHANGEDAMAGE = 0 | |
| 4276 | local CHANGEMOVEMENT = 0 | |
| 4277 | local ANIM = "Idle" | |
| 4278 | local ATTACK = false | |
| 4279 | local EQUIPPED = false | |
| 4280 | local HOLD = false | |
| 4281 | local COMBO = 1 | |
| 4282 | local Rooted = false | |
| 4283 | local SINE = 0 | |
| 4284 | local KEYHOLD = false | |
| 4285 | local CHANGE = 2 / Animation_Speed | |
| 4286 | local WALKINGANIM = false | |
| 4287 | local WALK = 0 | |
| 4288 | local VALUE1 = false | |
| 4289 | local VALUE2 = false | |
| 4290 | local ROBLOXIDLEANIMATION = IT("Animation")
| |
| 4291 | ROBLOXIDLEANIMATION.Name = "Roblox Idle Animation" | |
| 4292 | ROBLOXIDLEANIMATION.AnimationId = "http://www.roblox.com/asset/?id=180435571" | |
| 4293 | --ROBLOXIDLEANIMATION.Parent = Humanoid | |
| 4294 | local WEAPONGUI = IT("ScreenGui", PlayerGui)
| |
| 4295 | WEAPONGUI.Name = "Weapon GUI" | |
| 4296 | local Weapon = IT("Model")
| |
| 4297 | Weapon.Name = "Adds" | |
| 4298 | local HITFLOOR = nil | |
| 4299 | local Effects = IT("Folder", Weapon)
| |
| 4300 | Effects.Name = "Effects" | |
| 4301 | local ANIMATOR = Humanoid.Animator | |
| 4302 | local ANIMATE = Character.Animate | |
| 4303 | local HITPLAYERSOUNDS = {--[["199149137", "199149186", "199149221", "199149235", "199149269", "199149297"--]]"263032172", "263032182", "263032200", "263032221", "263032252", "263033191"}
| |
| 4304 | local HITARMORSOUNDS = {"199149321", "199149338", "199149367", "199149409", "199149452"}
| |
| 4305 | local HITWEAPONSOUNDS = {"199148971", "199149025", "199149072", "199149109", "199149119"}
| |
| 4306 | local HITBLOCKSOUNDS = {"199148933", "199148947"}
| |
| 4307 | local UNANCHOR = true | |
| 4308 | ||
| 4309 | local SKILLTEXTCOLOR = C3(239/255, 184/255, 56/255) | |
| 4310 | ||
| 4311 | --//=================================\\ | |
| 4312 | --\\=================================// | |
| 4313 | ||
| 4314 | ||
| 4315 | --//=================================\\ | |
| 4316 | --|| SAZERENOS' ARTIFICIAL HEARTBEAT | |
| 4317 | --\\=================================// | |
| 4318 | ||
| 4319 | ArtificialHB = Instance.new("BindableEvent", script)
| |
| 4320 | ArtificialHB.Name = "ArtificialHB" | |
| 4321 | ||
| 4322 | script:WaitForChild("ArtificialHB")
| |
| 4323 | ||
| 4324 | frame = Frame_Speed | |
| 4325 | tf = 0 | |
| 4326 | allowframeloss = false | |
| 4327 | tossremainder = false | |
| 4328 | lastframe = tick() | |
| 4329 | script.ArtificialHB:Fire() | |
| 4330 | ||
| 4331 | game:GetService("RunService").Heartbeat:connect(function(s, p)
| |
| 4332 | tf = tf + s | |
| 4333 | if tf >= frame then | |
| 4334 | if allowframeloss then | |
| 4335 | script.ArtificialHB:Fire() | |
| 4336 | lastframe = tick() | |
| 4337 | else | |
| 4338 | for i = 1, math.floor(tf / frame) do | |
| 4339 | script.ArtificialHB:Fire() | |
| 4340 | end | |
| 4341 | lastframe = tick() | |
| 4342 | end | |
| 4343 | if tossremainder then | |
| 4344 | tf = 0 | |
| 4345 | else | |
| 4346 | tf = tf - frame * math.floor(tf / frame) | |
| 4347 | end | |
| 4348 | end | |
| 4349 | end) | |
| 4350 | ||
| 4351 | --//=================================\\ | |
| 4352 | --\\=================================// | |
| 4353 | ||
| 4354 | ||
| 4355 | ||
| 4356 | ||
| 4357 | ||
| 4358 | --//=================================\\ | |
| 4359 | --|| SOME FUNCTIONS | |
| 4360 | --\\=================================// | |
| 4361 | ||
| 4362 | function Raycast(POSITION, DIRECTION, RANGE, IGNOREDECENDANTS) | |
| 4363 | return workspace:FindPartOnRay(Ray.new(POSITION, DIRECTION.unit * RANGE), IGNOREDECENDANTS) | |
| 4364 | end | |
| 4365 | ||
| 4366 | function PositiveAngle(NUMBER) | |
| 4367 | if NUMBER >= 0 then | |
| 4368 | NUMBER = 0 | |
| 4369 | end | |
| 4370 | return NUMBER | |
| 4371 | end | |
| 4372 | ||
| 4373 | function NegativeAngle(NUMBER) | |
| 4374 | if NUMBER <= 0 then | |
| 4375 | NUMBER = 0 | |
| 4376 | end | |
| 4377 | return NUMBER | |
| 4378 | end | |
| 4379 | ||
| 4380 | function Swait(NUMBER) | |
| 4381 | if NUMBER == 0 or NUMBER == nil then | |
| 4382 | ArtificialHB.Event:wait() | |
| 4383 | else | |
| 4384 | for i = 1, NUMBER do | |
| 4385 | ArtificialHB.Event:wait() | |
| 4386 | end | |
| 4387 | end | |
| 4388 | end | |
| 4389 | ||
| 4390 | function QuaternionFromCFrame(cf) | |
| 4391 | local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components() | |
| 4392 | local trace = m00 + m11 + m22 | |
| 4393 | if trace > 0 then | |
| 4394 | local s = math.sqrt(1 + trace) | |
| 4395 | local recip = 0.5 / s | |
| 4396 | return (m21 - m12) * recip, (m02 - m20) * recip, (m10 - m01) * recip, s * 0.5 | |
| 4397 | else | |
| 4398 | local i = 0 | |
| 4399 | if m11 > m00 then | |
| 4400 | i = 1 | |
| 4401 | end | |
| 4402 | if m22 > (i == 0 and m00 or m11) then | |
| 4403 | i = 2 | |
| 4404 | end | |
| 4405 | if i == 0 then | |
| 4406 | local s = math.sqrt(m00 - m11 - m22 + 1) | |
| 4407 | local recip = 0.5 / s | |
| 4408 | return 0.5 * s, (m10 + m01) * recip, (m20 + m02) * recip, (m21 - m12) * recip | |
| 4409 | elseif i == 1 then | |
| 4410 | local s = math.sqrt(m11 - m22 - m00 + 1) | |
| 4411 | local recip = 0.5 / s | |
| 4412 | return (m01 + m10) * recip, 0.5 * s, (m21 + m12) * recip, (m02 - m20) * recip | |
| 4413 | elseif i == 2 then | |
| 4414 | local s = math.sqrt(m22 - m00 - m11 + 1) | |
| 4415 | local recip = 0.5 / s return (m02 + m20) * recip, (m12 + m21) * recip, 0.5 * s, (m10 - m01) * recip | |
| 4416 | end | |
| 4417 | end | |
| 4418 | end | |
| 4419 | ||
| 4420 | function QuaternionToCFrame(px, py, pz, x, y, z, w) | |
| 4421 | local xs, ys, zs = x + x, y + y, z + z | |
| 4422 | local wx, wy, wz = w * xs, w * ys, w * zs | |
| 4423 | local xx = x * xs | |
| 4424 | local xy = x * ys | |
| 4425 | local xz = x * zs | |
| 4426 | local yy = y * ys | |
| 4427 | local yz = y * zs | |
| 4428 | local zz = z * zs | |
| 4429 | return CFrame.new(px, py, pz, 1 - (yy + zz), xy - wz, xz + wy, xy + wz, 1 - (xx + zz), yz - wx, xz - wy, yz + wx, 1 - (xx + yy)) | |
| 4430 | end | |
| 4431 | ||
| 4432 | function QuaternionSlerp(a, b, t) | |
| 4433 | local cosTheta = a[1] * b[1] + a[2] * b[2] + a[3] * b[3] + a[4] * b[4] | |
| 4434 | local startInterp, finishInterp; | |
| 4435 | if cosTheta >= 0.0001 then | |
| 4436 | if (1 - cosTheta) > 0.0001 then | |
| 4437 | local theta = ACOS(cosTheta) | |
| 4438 | local invSinTheta = 1 / SIN(theta) | |
| 4439 | startInterp = SIN((1 - t) * theta) * invSinTheta | |
| 4440 | finishInterp = SIN(t * theta) * invSinTheta | |
| 4441 | else | |
| 4442 | startInterp = 1 - t | |
| 4443 | finishInterp = t | |
| 4444 | end | |
| 4445 | else | |
| 4446 | if (1 + cosTheta) > 0.0001 then | |
| 4447 | local theta = ACOS(-cosTheta) | |
| 4448 | local invSinTheta = 1 / SIN(theta) | |
| 4449 | startInterp = SIN((t - 1) * theta) * invSinTheta | |
| 4450 | finishInterp = SIN(t * theta) * invSinTheta | |
| 4451 | else | |
| 4452 | startInterp = t - 1 | |
| 4453 | finishInterp = t | |
| 4454 | end | |
| 4455 | end | |
| 4456 | return a[1] * startInterp + b[1] * finishInterp, a[2] * startInterp + b[2] * finishInterp, a[3] * startInterp + b[3] * finishInterp, a[4] * startInterp + b[4] * finishInterp | |
| 4457 | end | |
| 4458 | ||
| 4459 | function Clerp(a, b, t) | |
| 4460 | local qa = {QuaternionFromCFrame(a)}
| |
| 4461 | local qb = {QuaternionFromCFrame(b)}
| |
| 4462 | local ax, ay, az = a.x, a.y, a.z | |
| 4463 | local bx, by, bz = b.x, b.y, b.z | |
| 4464 | local _t = 1 - t | |
| 4465 | return QuaternionToCFrame(_t * ax + t * bx, _t * ay + t * by, _t * az + t * bz, QuaternionSlerp(qa, qb, t)) | |
| 4466 | end | |
| 4467 | ||
| 4468 | function CreateFrame(PARENT, TRANSPARENCY, BORDERSIZEPIXEL, POSITION, SIZE, COLOR, BORDERCOLOR, NAME) | |
| 4469 | local frame = IT("Frame")
| |
| 4470 | frame.BackgroundTransparency = TRANSPARENCY | |
| 4471 | frame.BorderSizePixel = BORDERSIZEPIXEL | |
| 4472 | frame.Position = POSITION | |
| 4473 | frame.Size = SIZE | |
| 4474 | frame.BackgroundColor3 = COLOR | |
| 4475 | frame.BorderColor3 = BORDERCOLOR | |
| 4476 | frame.Name = NAME | |
| 4477 | frame.Parent = PARENT | |
| 4478 | return frame | |
| 4479 | end | |
| 4480 | ||
| 4481 | function CreateLabel(PARENT, TEXT, TEXTCOLOR, TEXTFONTSIZE, TEXTFONT, TRANSPARENCY, BORDERSIZEPIXEL, STROKETRANSPARENCY, NAME) | |
| 4482 | local label = IT("TextLabel")
| |
| 4483 | label.BackgroundTransparency = 1 | |
| 4484 | label.Size = UD2(1, 0, 1, 0) | |
| 4485 | label.Position = UD2(0, 0, 0, 0) | |
| 4486 | label.TextColor3 = TEXTCOLOR | |
| 4487 | label.TextStrokeTransparency = STROKETRANSPARENCY | |
| 4488 | label.TextTransparency = TRANSPARENCY | |
| 4489 | label.FontSize = TEXTFONTSIZE | |
| 4490 | label.Font = TEXTFONT | |
| 4491 | label.BorderSizePixel = BORDERSIZEPIXEL | |
| 4492 | label.TextScaled = false | |
| 4493 | label.Text = TEXT | |
| 4494 | label.Name = NAME | |
| 4495 | label.Parent = PARENT | |
| 4496 | return label | |
| 4497 | end | |
| 4498 | ||
| 4499 | function NoOutlines(PART) | |
| 4500 | PART.TopSurface, PART.BottomSurface, PART.LeftSurface, PART.RightSurface, PART.FrontSurface, PART.BackSurface = 10, 10, 10, 10, 10, 10 | |
| 4501 | end | |
| 4502 | ||
| 4503 | ||
| 4504 | function CreateWeldOrSnapOrMotor(TYPE, PARENT, PART0, PART1, C0, C1) | |
| 4505 | local NEWWELD = IT(TYPE) | |
| 4506 | NEWWELD.Part0 = PART0 | |
| 4507 | NEWWELD.Part1 = PART1 | |
| 4508 | NEWWELD.C0 = C0 | |
| 4509 | NEWWELD.C1 = C1 | |
| 4510 | NEWWELD.Parent = PARENT | |
| 4511 | return NEWWELD | |
| 4512 | end | |
| 4513 | ||
| 4514 | function CreateSound(ID, PARENT, VOLUME, PITCH) | |
| 4515 | local NEWSOUND = nil | |
| 4516 | coroutine.resume(coroutine.create(function() | |
| 4517 | NEWSOUND = IT("Sound", PARENT)
| |
| 4518 | NEWSOUND.Volume = VOLUME | |
| 4519 | NEWSOUND.Pitch = PITCH | |
| 4520 | NEWSOUND.SoundId = "http://www.roblox.com/asset/?id="..ID | |
| 4521 | Swait() | |
| 4522 | NEWSOUND:play() | |
| 4523 | game:GetService("Debris"):AddItem(NEWSOUND, 10)
| |
| 4524 | end)) | |
| 4525 | return NEWSOUND | |
| 4526 | end | |
| 4527 | ||
| 4528 | function CFrameFromTopBack(at, top, back) | |
| 4529 | local right = top:Cross(back) | |
| 4530 | return CF(at.x, at.y, at.z, right.x, top.x, back.x, right.y, top.y, back.y, right.z, top.z, back.z) | |
| 4531 | end | |
| 4532 | ||
| 4533 | function CreateWave(SIZE,WAIT,CFRAME,DOESROT,ROT,COLOR,GROW) | |
| 4534 | local wave = CreatePart(3, Effects, "Neon", 0, 0.5, BRICKC(COLOR), "Effect", VT(0,0,0)) | |
| 4535 | local mesh = IT("SpecialMesh",wave)
| |
| 4536 | mesh.MeshType = "FileMesh" | |
| 4537 | mesh.MeshId = "http://www.roblox.com/asset/?id=20329976" | |
| 4538 | mesh.Scale = SIZE | |
| 4539 | mesh.Offset = VT(0,0,-SIZE.X/8) | |
| 4540 | wave.CFrame = CFRAME | |
| 4541 | coroutine.resume(coroutine.create(function(PART) | |
| 4542 | for i = 1, WAIT do | |
| 4543 | Swait() | |
| 4544 | mesh.Scale = mesh.Scale + GROW | |
| 4545 | mesh.Offset = VT(0,0,-(mesh.Scale.X/8)) | |
| 4546 | if DOESROT == true then | |
| 4547 | wave.CFrame = wave.CFrame * CFrame.fromEulerAnglesXYZ(0,ROT,0) | |
| 4548 | end | |
| 4549 | wave.Transparency = wave.Transparency + (0.5/WAIT) | |
| 4550 | if wave.Transparency > 0.99 then | |
| 4551 | wave:remove() | |
| 4552 | end | |
| 4553 | end | |
| 4554 | end)) | |
| 4555 | end | |
| 4556 | ||
| 4557 | function CreateWave2(SIZE,WAIT,CFRAME,DOESROT,ROT,COLOR,GROW) | |
| 4558 | local wave = CreatePart(3, Effects, "Neon", 0, 0.5, BRICKC(COLOR), "Effect", VT(0,0,0)) | |
| 4559 | local mesh = IT("SpecialMesh",wave)
| |
| 4560 | mesh.MeshType = "FileMesh" | |
| 4561 | mesh.MeshId = "http://www.roblox.com/asset/?id=20329976" | |
| 4562 | mesh.Scale = SIZE | |
| 4563 | --mesh.Offset = VT(0,0,-SIZE.X/8) | |
| 4564 | wave.CFrame = CFRAME | |
| 4565 | coroutine.resume(coroutine.create(function(PART) | |
| 4566 | for i = 1, WAIT do | |
| 4567 | Swait() | |
| 4568 | mesh.Scale = mesh.Scale + GROW | |
| 4569 | --mesh.Offset = VT(0,0,-(mesh.Scale.X/8)) | |
| 4570 | if DOESROT == true then | |
| 4571 | wave.CFrame = wave.CFrame * CFrame.fromEulerAnglesXYZ(0,ROT,0) | |
| 4572 | end | |
| 4573 | wave.Transparency = wave.Transparency + (0.5/WAIT) | |
| 4574 | if wave.Transparency > 0.99 then | |
| 4575 | wave:remove() | |
| 4576 | end | |
| 4577 | end | |
| 4578 | end)) | |
| 4579 | end | |
| 4580 | ||
| 4581 | function CreateSwirl(SIZE,WAIT,CFRAME,DOESROT,ROT,COLOR,GROW) | |
| 4582 | local wave = CreatePart(3, Effects, "Neon", 0, 0.5, BRICKC(COLOR), "Effect", VT(0,0,0)) | |
| 4583 | local mesh = IT("SpecialMesh",wave)
| |
| 4584 | mesh.MeshType = "FileMesh" | |
| 4585 | mesh.MeshId = "http://www.roblox.com/asset/?id=1051557" | |
| 4586 | mesh.Scale = SIZE | |
| 4587 | wave.CFrame = CFRAME | |
| 4588 | coroutine.resume(coroutine.create(function(PART) | |
| 4589 | for i = 1, WAIT do | |
| 4590 | Swait() | |
| 4591 | mesh.Scale = mesh.Scale + GROW | |
| 4592 | mesh.Offset = VT(0,0,-(mesh.Scale.X/8)) | |
| 4593 | if DOESROT == true then | |
| 4594 | wave.CFrame = wave.CFrame * CFrame.fromEulerAnglesXYZ(0,ROT,0) | |
| 4595 | end | |
| 4596 | wave.Transparency = wave.Transparency + (0.5/WAIT) | |
| 4597 | if wave.Transparency > 0.99 then | |
| 4598 | wave:remove() | |
| 4599 | end | |
| 4600 | end | |
| 4601 | end)) | |
| 4602 | end | |
| 4603 | ||
| 4604 | ||
| 4605 | function Slice(SIZE,WAIT,CFRAME,COLOR,GROW) | |
| 4606 | local wave = CreatePart(3, Effects, "Neon", 0, 0.5, BRICKC(COLOR), "Effect", VT(1,1,1), true) | |
| 4607 | local mesh = CreateMesh("SpecialMesh", wave, "FileMesh", "448386996", "", VT(0,SIZE/10,SIZE/10), VT(0,0,0))
| |
| 4608 | wave.CFrame = CFRAME | |
| 4609 | coroutine.resume(coroutine.create(function(PART) | |
| 4610 | for i = 1, WAIT do | |
| 4611 | Swait() | |
| 4612 | mesh.Scale = mesh.Scale * GROW | |
| 4613 | wave.Transparency = wave.Transparency + (0.5/WAIT) | |
| 4614 | if wave.Transparency > 0.99 then | |
| 4615 | wave:remove() | |
| 4616 | end | |
| 4617 | end | |
| 4618 | end)) | |
| 4619 | end | |
| 4620 | ||
| 4621 | function MagicSphere(SIZE,WAIT,CFRAME,COLOR,GROW) | |
| 4622 | local wave = CreatePart(3, Effects, "Neon", 0, 0, BRICKC(COLOR), "Effect", VT(1,1,1), true) | |
| 4623 | local mesh = IT("SpecialMesh",wave)
| |
| 4624 | mesh.MeshType = "Sphere" | |
| 4625 | mesh.Scale = SIZE | |
| 4626 | mesh.Offset = VT(0,0,0) | |
| 4627 | wave.CFrame = CFRAME | |
| 4628 | coroutine.resume(coroutine.create(function(PART) | |
| 4629 | for i = 1, WAIT do | |
| 4630 | Swait() | |
| 4631 | mesh.Scale = mesh.Scale + GROW | |
| 4632 | wave.Transparency = wave.Transparency + (1/WAIT) | |
| 4633 | if wave.Transparency > 0.99 then | |
| 4634 | wave:remove() | |
| 4635 | end | |
| 4636 | end | |
| 4637 | end)) | |
| 4638 | end | |
| 4639 | ||
| 4640 | function MakeForm(PART,TYPE) | |
| 4641 | if TYPE == "Cyl" then | |
| 4642 | local MSH = IT("CylinderMesh",PART)
| |
| 4643 | elseif TYPE == "Ball" then | |
| 4644 | local MSH = IT("SpecialMesh",PART)
| |
| 4645 | MSH.MeshType = "Sphere" | |
| 4646 | elseif TYPE == "Wedge" then | |
| 4647 | local MSH = IT("SpecialMesh",PART)
| |
| 4648 | MSH.MeshType = "Wedge" | |
| 4649 | end | |
| 4650 | end | |
| 4651 | ||
| 4652 | function CreateDebreeRing(FLOOR,POSITION,SIZE,BLOCKSIZE,SWAIT) | |
| 4653 | if FLOOR ~= nil then | |
| 4654 | coroutine.resume(coroutine.create(function() | |
| 4655 | local PART = CreatePart(3, Effects, "Plastic", 0, 1, "Pearl", "DebreeCenter", VT(0,0,0)) | |
| 4656 | PART.CFrame = CF(POSITION) | |
| 4657 | for i = 1, 45 do | |
| 4658 | local RingPiece = CreatePart(3, Effects, "Plastic", 0, 0, "Pearl", "DebreePart", BLOCKSIZE) | |
| 4659 | RingPiece.Material = FLOOR.Material | |
| 4660 | RingPiece.Color = FLOOR.Color | |
| 4661 | RingPiece.CFrame = PART.CFrame * ANGLES(RAD(0), RAD(i*8), RAD(0)) * CF(SIZE*4, 0, 0) * ANGLES(RAD(MRANDOM(-360,360)),RAD(MRANDOM(-360,360)),RAD(MRANDOM(-360,360))) | |
| 4662 | Debris:AddItem(RingPiece,SWAIT/100) | |
| 4663 | end | |
| 4664 | PART:remove() | |
| 4665 | end)) | |
| 4666 | end | |
| 4667 | end | |
| 4668 | ||
| 4669 | function CheckTableForString(Table, String) | |
| 4670 | for i, v in pairs(Table) do | |
| 4671 | if string.find(string.lower(String), string.lower(v)) then | |
| 4672 | return true | |
| 4673 | end | |
| 4674 | end | |
| 4675 | return false | |
| 4676 | end | |
| 4677 | ||
| 4678 | function CheckIntangible(Hit) | |
| 4679 | local ProjectileNames = {"Water", "Arrow", "Projectile", "Effect", "Rail", "Lightning", "Bullet"}
| |
| 4680 | if Hit and Hit.Parent then | |
| 4681 | if ((not Hit.CanCollide or CheckTableForString(ProjectileNames, Hit.Name)) and not Hit.Parent:FindFirstChild("Humanoid")) then
| |
| 4682 | return true | |
| 4683 | end | |
| 4684 | end | |
| 4685 | return false | |
| 4686 | end | |
| 4687 | ||
| 4688 | Debris = game:GetService("Debris")
| |
| 4689 | ||
| 4690 | function CastZapRay(StartPos, Vec, Length, Ignore, DelayIfHit) | |
| 4691 | local Direction = CFrame.new(StartPos, Vec).lookVector | |
| 4692 | local Ignore = ((type(Ignore) == "table" and Ignore) or {Ignore})
| |
| 4693 | local RayHit, RayPos, RayNormal = game:GetService("Workspace"):FindPartOnRayWithIgnoreList(Ray.new(StartPos, Direction * Length), Ignore)
| |
| 4694 | if RayHit and CheckIntangible(RayHit) then | |
| 4695 | if DelayIfHit then | |
| 4696 | wait() | |
| 4697 | end | |
| 4698 | RayHit, RayPos, RayNormal = CastZapRay((RayPos + (Vec * 0.01)), Vec, (Length - ((StartPos - RayPos).magnitude)), Ignore, DelayIfHit) | |
| 4699 | end | |
| 4700 | return RayHit, RayPos, RayNormal | |
| 4701 | end | |
| 4702 | ||
| 4703 | function turnto(position) | |
| 4704 | RootPart.CFrame=CFrame.new(RootPart.CFrame.p,VT(position.X,RootPart.Position.Y,position.Z)) * CFrame.new(0, 0, 0) | |
| 4705 | end | |
| 4706 | ||
| 4707 | --//=================================\\ | |
| 4708 | --|| WEAPON CREATION | |
| 4709 | --\\=================================// | |
| 4710 | ||
| 4711 | - | local FIST = CreatePart(3, Weapon, "Neon", 0, 0, "Really black", "Neon Gauntlet Part", VT(1.01*Player_Size,1.4*Player_Size,1.01*Player_Size),false) |
| 4711 | + | local Handle = CreatePart(3, Character, "Metal", 0, 0, "Really red", "Part", VT(0.2,1.2,0.2),false) |
| 4712 | local RightArmGrasp = CreateWeldOrSnapOrMotor("Weld", Handle, RightArm, Handle, CF(0,-0.8, 0) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0.3, 0))
| |
| 4713 | - | local part = CreatePart(3, Weapon, "Granite", 0, 0, "Really black", "Gauntlet Part", VT(1.2*Player_Size,0.3*Player_Size,1.2*Player_Size),false) |
| 4713 | + | local Part = CreatePart(3, Character, "Metal", 0, 0, "Really red", "Part", VT(0.2,0.8,0.2),false) |
| 4714 | MakeForm(Part,"Wedge") | |
| 4715 | CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, 0.2, 0.2) * ANGLES(RAD(0), RAD(180), RAD(0)), CF(0, 0, 0))
| |
| 4716 | - | local part = CreatePart(3, Weapon, "Granite", 0, 0, "Black", "Gauntlet Part", VT(1.05*Player_Size,0.05*Player_Size,1.05*Player_Size),false) |
| 4716 | + | local Part = CreatePart(3, Character, "Metal", 0, 0, "Mid gray", "Part", VT(0.3,0.5,0.6),false) |
| 4717 | CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.5, 0.4) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
| |
| 4718 | - | local part = CreatePart(3, Weapon, "Granite", 0, 0, "Black", "Gauntlet Part", VT(1.05*Player_Size,0.05*Player_Size,1.05*Player_Size),false) |
| 4718 | + | local Part = CreatePart(3, Character, "Metal", 0, 0, "Really red", "Part", VT(0.4,0.4,0.4),false) |
| 4719 | MakeForm(Part,"Cyl") | |
| 4720 | - | local part = CreatePart(3, Weapon, "Granite", 0, 0, "Black", "Gauntlet Part", VT(1.05*Player_Size,0.05*Player_Size,1.05*Player_Size),false) |
| 4720 | + | CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.45, 0.4) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
|
| 4721 | for i = 1, 8 do | |
| 4722 | - | local part = CreatePart(3, Weapon, "Granite", 0, 0, "Black", "Gauntlet Part", VT(1.05*Player_Size,0.05*Player_Size,1.05*Player_Size),false) |
| 4722 | + | local Piece = CreatePart(3, Character, "Metal", 0, 0, "Really red", "Eye", VT(0,0.35,0.41),false) |
| 4723 | CreateWeldOrSnapOrMotor("Weld", Handle, Part, Piece, CF(0, 0, 0) * ANGLES(RAD(0), RAD((360/8)*i), RAD(0)), CF(0, 0, 0))
| |
| 4724 | end | |
| 4725 | local Part = CreatePart(3, Character, "Metal", 0, 0, "Really red", "Part", VT(0.2,0.5,0.2),false) | |
| 4726 | MakeForm(Part,"Wedge") | |
| 4727 | CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.55, 0.2) * ANGLES(RAD(-135), RAD(0), RAD(0)), CF(0, -0.3, 0))
| |
| 4728 | local Part = CreatePart(3, Character, "Metal", 0, 0, "Really red", "Eye", VT(0.39,0.41,0.39),false) | |
| 4729 | MakeForm(Part,"Cyl") | |
| 4730 | CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.45, 0.4) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
| |
| 4731 | - | local part = CreatePart(3, Weapon, "Granite", 0, 0, "Black", "Gauntlet Part", VT(1.1*Player_Size,0.8*Player_Size,0.3*Player_Size),false) |
| 4731 | + | local Part = CreatePart(3, Character, "Metal", 0, 0, "Really red", "Part", VT(0.3,0.5,0.5),false) |
| 4732 | CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.5, 0.2) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
| |
| 4733 | - | local part = CreatePart(3, Weapon, "Granite", 0, 0, "Black", "Gauntlet Part", VT(1.1*Player_Size,0.8*Player_Size,0.3*Player_Size),false) |
| 4733 | + | local Part = CreatePart(3, Character, "Metal", 0, 0, "Really red", "Part", VT(0.3,0.4,0.5),false) |
| 4734 | CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.55, 0.65) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
| |
| 4735 | local Part = CreatePart(3, Character, "Metal", 0, 0, "Really red", "Part", VT(0.2,0,0.6),false) | |
| 4736 | CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, 0, 0) * ANGLES(RAD(45), RAD(0), RAD(0)), CF(0, -0.2, -0.3))
| |
| 4737 | local RightBarrel = CreatePart(3, Character, "Metal", 0, 0, "Mid gray", "Part", VT(0.28,5,0.28),false) | |
| 4738 | MakeForm(RightBarrel,"Cyl") | |
| 4739 | CreateWeldOrSnapOrMotor("Weld", Handle, Handle, RightBarrel, CF(0, -0.6, 0.5) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, -2.5, 0))
| |
| 4740 | local Part = CreatePart(3, Character, "Metal", 0, 0, "Really red", "Part", VT(0,0.2,0.2),false) | |
| 4741 | MakeForm(Part,"Wedge") | |
| 4742 | CreateWeldOrSnapOrMotor("Weld", Handle, RightBarrel, Part, CF(0, 2.415, 0.15) * ANGLES(RAD(180), RAD(0), RAD(0)), CF(0, 0, 0))
| |
| 4743 | local RightHole = CreatePart(3, Character, "Metal", 0, 0, "Really red", "Eye", VT(0.2,0,0.2),false) | |
| 4744 | MakeForm(RightHole,"Cyl") | |
| 4745 | CreateWeldOrSnapOrMotor("Weld", Handle, RightBarrel, RightHole, CF(0, 2.5, 0), CF(0, 0, 0))
| |
| 4746 | local Handle = CreatePart(3, Character, "Metal", 0, 0, "Really red", "Part", VT(0.2,1.2,0.2),false) | |
| 4747 | local LeftArmGraps = CreateWeldOrSnapOrMotor("Weld", Handle, LeftArm, Handle, CF(0,-0.8, 0) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0.3, 0))
| |
| 4748 | local Part = CreatePart(3, Character, "Metal", 0, 0, "Really red", "Part", VT(0.2,0.8,0.2),false) | |
| 4749 | MakeForm(Part,"Wedge") | |
| 4750 | CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, 0.2, 0.2) * ANGLES(RAD(0), RAD(180), RAD(0)), CF(0, 0, 0))
| |
| 4751 | local Part = CreatePart(3, Character, "Metal", 0, 0, "Really red", "Part", VT(0.3,0.5,0.6),false) | |
| 4752 | CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.5, 0.4) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
| |
| 4753 | local Part = CreatePart(3, Character, "Metal", 0, 0, "Really red", "Part", VT(0.4,0.4,0.4),false) | |
| 4754 | MakeForm(Part,"Cyl") | |
| 4755 | CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.45, 0.4) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
| |
| 4756 | for i = 1, 8 do | |
| 4757 | local Piece = CreatePart(3, Character, "Metal", 0, 0, "Really red", "Eye", VT(0,0.35,0.41),false) | |
| 4758 | CreateWeldOrSnapOrMotor("Weld", Handle, Part, Piece, CF(0, 0, 0) * ANGLES(RAD(0), RAD((360/8)*i), RAD(0)), CF(0, 0, 0))
| |
| 4759 | end | |
| 4760 | local Part = CreatePart(3, Character, "Metal", 0, 0, "Really red", "Part", VT(0.2,0.5,0.2),false) | |
| 4761 | MakeForm(Part,"Wedge") | |
| 4762 | CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.55, 0.2) * ANGLES(RAD(-135), RAD(0), RAD(0)), CF(0, -0.3, 0))
| |
| 4763 | local Part = CreatePart(3, Character, "Metal", 0, 0, "Really red", "Eye", VT(0.39,0.41,0.39),false) | |
| 4764 | MakeForm(Part,"Cyl") | |
| 4765 | CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.45, 0.4) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
| |
| 4766 | local Part = CreatePart(3, Character, "Metal", 0, 0, "Really red", "Part", VT(0.3,0.5,0.5),false) | |
| 4767 | CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.5, 0.2) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
| |
| 4768 | local Part = CreatePart(3, Character, "Metal", 0, 0, "Really red", "Part", VT(0.3,0.4,0.5),false) | |
| 4769 | CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, -0.55, 0.65) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, 0, 0))
| |
| 4770 | local Part = CreatePart(3, Character, "Metal", 0, 0, "Really red", "Part", VT(0.2,0,0.6),false) | |
| 4771 | CreateWeldOrSnapOrMotor("Weld", Handle, Handle, Part, CF(0, 0, 0) * ANGLES(RAD(45), RAD(0), RAD(0)), CF(0, -0.2, -0.3))
| |
| 4772 | local LeftBarrel = CreatePart(3, Character, "Metal", 0, 0, "Really red", "Part", VT(0.28,5,0.28),false) | |
| 4773 | MakeForm(LeftBarrel,"Cyl") | |
| 4774 | CreateWeldOrSnapOrMotor("Weld", Handle, Handle, LeftBarrel, CF(0, -0.6, 0.5) * ANGLES(RAD(90), RAD(0), RAD(0)), CF(0, -2.5, 0))
| |
| 4775 | local Part = CreatePart(3, Character, "Metal", 0, 0, "Really red", "Part", VT(0,0.2,0.2),false) | |
| 4776 | MakeForm(Part,"Wedge") | |
| 4777 | CreateWeldOrSnapOrMotor("Weld", Handle, LeftBarrel, Part, CF(0, 2.415, 0.15) * ANGLES(RAD(180), RAD(0), RAD(0)), CF(0, 0, 0))
| |
| 4778 | local LeftHole = CreatePart(3, Character, "Metal", 0, 0, "Really red", "Eye", VT(0.2,0,0.2),false) | |
| 4779 | MakeForm(LeftHole,"Cyl") | |
| 4780 | CreateWeldOrSnapOrMotor("Weld", Handle, LeftBarrel, LeftHole, CF(0, 2.5, 0), CF(0, 0, 0))
| |
| 4781 | local Eye = CreatePart(3, Character, "Neon", 0, 0, "Really red", "Eye", VT(0.6,0.1,1)/2,false) | |
| 4782 | MakeForm(Eye,"Ball") | |
| 4783 | CreateWeldOrSnapOrMotor("Weld", Eye, Head, Eye, CF(0,0.2,0) * ANGLES(RAD(0), RAD(-18), RAD(15)), CF(0, 0, 0.4))
| |
| 4784 | local Eye = CreatePart(3, Character, "Neon", 0, 0, "Really red", "Eye", VT(0.6,0.1,1)/2,false) | |
| 4785 | MakeForm(Eye,"Ball") | |
| 4786 | CreateWeldOrSnapOrMotor("Weld", Eye, Head, Eye, CF(0,0.2,0) * ANGLES(RAD(0), RAD(18), RAD(-15)), CF(0, 0, 0.4))
| |
| 4787 | local Eye = CreatePart(3, Character, "Neon", 0, 0, "Really red", "Eye", VT(0.1,1,1)/2,false) | |
| 4788 | MakeForm(Eye,"Ball") | |
| 4789 | CreateWeldOrSnapOrMotor("Weld", Eye, Head, Eye, CF(0,0.15,0) * ANGLES(RAD(0), RAD(-18), RAD(0)), CF(0, 0, 0.4))
| |
| 4790 | local Eye = CreatePart(3, Character, "Neon", 0, 0, "Really red", "Eye", VT(0.1,1,1)/2,false) | |
| 4791 | MakeForm(Eye,"Ball") | |
| 4792 | CreateWeldOrSnapOrMotor("Weld", Eye, Head, Eye, CF(0,0.15,0) * ANGLES(RAD(0), RAD(18), RAD(0)), CF(0, 0, 0.4))
| |
| 4793 | ||
| 4794 | local FIST = CreatePart(3, Weapon, "Neon", 0, 0, "Really red", "Neon Gauntlet Part", VT(1.01*Player_Size,1.4*Player_Size,1.01*Player_Size),false) | |
| 4795 | local weld = CreateWeldOrSnapOrMotor("Weld", FIST, RightArm, FIST, CF(0 * Player_Size, -0.25 * Player_Size, 0 * Player_Size) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
| |
| 4796 | local part = CreatePart(3, Weapon, "Granite", 0, 0, "Really red", "Gauntlet Part", VT(1.2*Player_Size,0.3*Player_Size,1.2*Player_Size),false) | |
| 4797 | local weld = CreateWeldOrSnapOrMotor("Weld", part, FIST, part, CF(0 * Player_Size, 0.6 * Player_Size, 0 * Player_Size) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
| |
| 4798 | ||
| 4799 | local part = CreatePart(3, Weapon, "Granite", 0, 0, "Really red", "Gauntlet Part", VT(1.05*Player_Size,0.05*Player_Size,1.05*Player_Size),false) | |
| 4800 | local weld = CreateWeldOrSnapOrMotor("Weld", part, FIST, part, CF(0 * Player_Size, 0.1 * Player_Size, 0 * Player_Size) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
| |
| 4801 | local part = CreatePart(3, Weapon, "Granite", 0, 0, "Really red", "Gauntlet Part", VT(1.05*Player_Size,0.05*Player_Size,1.05*Player_Size),false) | |
| 4802 | local weld = CreateWeldOrSnapOrMotor("Weld", part, FIST, part, CF(0 * Player_Size, 0.2 * Player_Size, 0 * Player_Size) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
| |
| 4803 | local part = CreatePart(3, Weapon, "Granite", 0, 0, "Really red", "Gauntlet Part", VT(1.05*Player_Size,0.05*Player_Size,1.05*Player_Size),false) | |
| 4804 | local weld = CreateWeldOrSnapOrMotor("Weld", part, FIST, part, CF(0 * Player_Size, 0.3 * Player_Size, 0 * Player_Size) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
| |
| 4805 | local part = CreatePart(3, Weapon, "Granite", 0, 0, "Really red", "Gauntlet Part", VT(1.05*Player_Size,0.05*Player_Size,1.05*Player_Size),false) | |
| 4806 | local weld = CreateWeldOrSnapOrMotor("Weld", part, FIST, part, CF(0 * Player_Size, 0.4 * Player_Size, 0 * Player_Size) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
| |
| 4807 | ||
| 4808 | local part = CreatePart(3, Weapon, "Granite", 0, 0, "Really black", "Gauntlet Part", VT(1.1*Player_Size,0.8*Player_Size,1.1*Player_Size),false) | |
| 4809 | local weld = CreateWeldOrSnapOrMotor("Weld", part, FIST, part, CF(0 * Player_Size, -0.35 * Player_Size, 0 * Player_Size) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
| |
| 4810 | local part = CreatePart(3, Weapon, "Neon", 0, 0, "Really black", "Neon Gauntlet Part", VT(1.1*Player_Size,0.8*Player_Size,1*Player_Size),false) | |
| 4811 | local weld = CreateWeldOrSnapOrMotor("Weld", part, FIST, part, CF(0.05 * Player_Size, -0.375 * Player_Size, 0 * Player_Size) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
| |
| 4812 | local part = CreatePart(3, Weapon, "Granite", 0, 0, "Really black", "Gauntlet Part", VT(1.1*Player_Size,0.8*Player_Size,0.3*Player_Size),false) | |
| 4813 | local weld = CreateWeldOrSnapOrMotor("Weld", part, FIST, part, CF(0.1 * Player_Size, -0.4 * Player_Size, 0 * Player_Size) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
| |
| 4814 | local part = CreatePart(3, Weapon, "Granite", 0, 0, "Really red", "Gauntlet Part", VT(1.1*Player_Size,0.8*Player_Size,0.3*Player_Size),false) | |
| 4815 | local weld = CreateWeldOrSnapOrMotor("Weld", part, FIST, part, CF(0.1 * Player_Size, -0.4 * Player_Size, 0.33 * Player_Size) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
| |
| 4816 | local part = CreatePart(3, Weapon, "Granite", 0, 0, "Really red", "Gauntlet Part", VT(1.1*Player_Size,0.8*Player_Size,0.3*Player_Size),false) | |
| 4817 | local weld = CreateWeldOrSnapOrMotor("Weld", part, FIST, part, CF(0.1 * Player_Size, -0.4 * Player_Size, -0.33 * Player_Size) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
| |
| 4818 | ||
| 4819 | for _, c in pairs(Weapon:GetChildren()) do | |
| 4820 | if c.ClassName == "Part" then | |
| 4821 | c.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0, 0, 0) | |
| 4822 | end | |
| 4823 | end | |
| 4824 | ||
| 4825 | Weapon.Parent = Character | |
| 4826 | ||
| 4827 | Humanoid.Died:connect(function() | |
| 4828 | ATTACK = true | |
| 4829 | end) | |
| 4830 | ||
| 4831 | local A = IT("Attachment",Torso)
| |
| 4832 | A.Position = VT(1,1.3,0) | |
| 4833 | A.Orientation = VT(-0.098, -89.999, 0.227) | |
| 4834 | local B = IT("Attachment",Torso)
| |
| 4835 | B.Position = VT(-1.3,-0.6,0) | |
| 4836 | B.Orientation = VT(-88.911, -68.808, 158.782) | |
| 4837 | local ChainLink = IT("Beam",Torso)
| |
| 4838 | ChainLink.Texture = "rbxassetid://73042633" | |
| 4839 | ChainLink.Color = ColorSequence.new(C3(1,0,0)) | |
| 4840 | ChainLink.TextureSpeed = 1 | |
| 4841 | ChainLink.FaceCamera = true | |
| 4842 | ChainLink.Width0 = 1 | |
| 4843 | ChainLink.Width1 = 1 | |
| 4844 | ChainLink.TextureLength = 3 | |
| 4845 | ChainLink.Attachment0 = A | |
| 4846 | ChainLink.Attachment1 = B | |
| 4847 | ChainLink.CurveSize0 = 1.6 | |
| 4848 | ChainLink.CurveSize1 = 1.6 | |
| 4849 | ChainLink.FaceCamera = true | |
| 4850 | ChainLink.Transparency = NumberSequence.new(0) | |
| 4851 | local ChainLink = IT("Beam",Torso)
| |
| 4852 | ChainLink.Texture = "rbxassetid://73042633" | |
| 4853 | ChainLink.Color = ColorSequence.new(C3(1,0,0)) | |
| 4854 | ChainLink.TextureSpeed = 1 | |
| 4855 | ChainLink.FaceCamera = true | |
| 4856 | ChainLink.Width0 = 1 | |
| 4857 | ChainLink.Width1 = 1 | |
| 4858 | ChainLink.TextureLength = 3 | |
| 4859 | ChainLink.Attachment0 = B | |
| 4860 | ChainLink.Attachment1 = A | |
| 4861 | ChainLink.CurveSize0 = 1.6 | |
| 4862 | ChainLink.CurveSize1 = 1.6 | |
| 4863 | ChainLink.FaceCamera = true | |
| 4864 | ChainLink.Transparency = NumberSequence.new(0) | |
| 4865 | local A = IT("Attachment",Torso)
| |
| 4866 | A.Position = VT(1.3,-0.85,0) | |
| 4867 | A.Orientation = VT(-0.098, -89.999, 0.227) | |
| 4868 | local B = IT("Attachment",Torso)
| |
| 4869 | B.Position = VT(-1,2,0) | |
| 4870 | B.Orientation = VT(-88.911, -68.808, 158.782) | |
| 4871 | local ChainLink = IT("Beam",Torso)
| |
| 4872 | ChainLink.Texture = "rbxassetid://73042633" | |
| 4873 | ChainLink.Color = ColorSequence.new(C3(1,0,0)) | |
| 4874 | ChainLink.TextureSpeed = 1 | |
| 4875 | ChainLink.FaceCamera = true | |
| 4876 | ChainLink.Width0 = 1 | |
| 4877 | ChainLink.Width1 = 1 | |
| 4878 | ChainLink.TextureLength = 3 | |
| 4879 | ChainLink.Attachment0 = A | |
| 4880 | ChainLink.Attachment1 = B | |
| 4881 | ChainLink.CurveSize0 = 1.3 | |
| 4882 | ChainLink.CurveSize1 = 1.3 | |
| 4883 | ChainLink.FaceCamera = true | |
| 4884 | ChainLink.Transparency = NumberSequence.new(0) | |
| 4885 | local ChainLink = IT("Beam",Torso)
| |
| 4886 | ChainLink.Texture = "rbxassetid://73042633" | |
| 4887 | ChainLink.Color = ColorSequence.new(C3(1,0,0)) | |
| 4888 | ChainLink.TextureSpeed = 1 | |
| 4889 | ChainLink.FaceCamera = true | |
| 4890 | ChainLink.Width0 = 1 | |
| 4891 | ChainLink.Width1 = 1 | |
| 4892 | ChainLink.TextureLength = 3 | |
| 4893 | ChainLink.Attachment0 = B | |
| 4894 | ChainLink.Attachment1 = A | |
| 4895 | ChainLink.CurveSize0 = 1.3 | |
| 4896 | ChainLink.CurveSize1 = 1.3 | |
| 4897 | ChainLink.FaceCamera = true | |
| 4898 | ChainLink.Transparency = NumberSequence.new(0) | |
| 4899 | ||
| 4900 | local A = IT("Attachment",RightBarrel)
| |
| 4901 | A.Position = VT(0,-2.5,0) | |
| 4902 | local B = IT("Attachment",RightBarrel)
| |
| 4903 | B.Position = VT(0,2.5,0) | |
| 4904 | local Trail = IT("Trail",RightBarrel)
| |
| 4905 | Trail.Attachment0 = A | |
| 4906 | Trail.Attachment1 = B | |
| 4907 | Trail.Lifetime = 0.2 | |
| 4908 | Trail.Color = ColorSequence.new(BRICKC"Really red".Color) | |
| 4909 | Trail.Transparency = NumberSequence.new(0, 1) | |
| 4910 | Trail.Enabled = false | |
| 4911 | ||
| 4912 | local SKILL1FRAME = CreateFrame(WEAPONGUI, 0.5, 2, UD2(0.13, 0, 0.80, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,0), C3(0, 0, 0), "Skill 1 Frame") | |
| 4913 | local SKILL2FRAME = CreateFrame(WEAPONGUI, 0.5, 2, UD2(0.60, 0, 0.80, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,0), C3(0, 0, 0), "Skill 2 Frame") | |
| 4914 | local SKILL3FRAME = CreateFrame(WEAPONGUI, 0.5, 2, UD2(0.365, 0, 0.9, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,0), C3(0, 0, 0), "Skill 3 Frame") | |
| 4915 | local SKILL4FRAME = CreateFrame(WEAPONGUI, 0.5, 2, UD2(0.365, 0, 0.7, 0), UD2(0.26, 0, 0.07, 0), C3(0,0,0), C3(0, 0, 0), "Skill 4 Frame") | |
| 4916 | ||
| 4917 | local SKILL1TEXT = CreateLabel(SKILL1FRAME, "[Z] why i do this", SKILLTEXTCOLOR, 7, "SciFi", 0, 2, 1, "Text 1") | |
| 4918 | local SKILL2TEXT = CreateLabel(SKILL2FRAME, "[B] why i do this", SKILLTEXTCOLOR, 7, "SciFi", 0, 2, 1, "Text 2") | |
| 4919 | local SKILL3TEXT = CreateLabel(SKILL3FRAME, "[C] why i do this", SKILLTEXTCOLOR, 7, "SciFi", 0, 2, 1, "Text 3") | |
| 4920 | local SKILL4TEXT = CreateLabel(SKILL4FRAME, "[X] why i do this", SKILLTEXTCOLOR, 6, "SciFi", 0, 2, 1, "Text4") | |
| 4921 | ||
| 4922 | --//=================================\\ | |
| 4923 | --|| DAMAGE FUNCTIONS | |
| 4924 | --\\=================================// | |
| 4925 | ||
| 4926 | function StatLabel(LABELTYPE, CFRAME, TEXT, COLOR) | |
| 4927 | local STATPART = CreatePart(3, Effects, "SmoothPlastic", 0, 1, "Really black", "Effect", VT()) | |
| 4928 | STATPART.CFrame = CF(CFRAME.p + VT(0, 1.5, 0)) | |
| 4929 | local BODYGYRO = IT("BodyGyro", STATPART)
| |
| 4930 | local BODYPOSITION = IT("BodyPosition", STATPART)
| |
| 4931 | BODYPOSITION.P = 2000 | |
| 4932 | BODYPOSITION.D = 100 | |
| 4933 | BODYPOSITION.maxForce = VT(math.huge, math.huge, math.huge) | |
| 4934 | BODYPOSITION.position = STATPART.Position + VT(MRANDOM(-2, 2), 6, MRANDOM(-2, 2)) | |
| 4935 | game:GetService("Debris"):AddItem(STATPART ,5)
| |
| 4936 | local BILLBOARDGUI = Instance.new("BillboardGui", STATPART)
| |
| 4937 | BILLBOARDGUI.Adornee = STATPART | |
| 4938 | BILLBOARDGUI.Size = UD2(2.5, 0, 2.5 ,0) | |
| 4939 | BILLBOARDGUI.StudsOffset = VT(-2, 2, 0) | |
| 4940 | BILLBOARDGUI.AlwaysOnTop = false | |
| 4941 | local TEXTLABEL = Instance.new("TextLabel", BILLBOARDGUI)
| |
| 4942 | TEXTLABEL.BackgroundTransparency = 1 | |
| 4943 | TEXTLABEL.Size = UD2(2.5, 0, 2.5, 0) | |
| 4944 | TEXTLABEL.Text = TEXT | |
| 4945 | TEXTLABEL.Font = "SciFi" | |
| 4946 | TEXTLABEL.FontSize="Size42" | |
| 4947 | TEXTLABEL.TextColor3 = COLOR | |
| 4948 | TEXTLABEL.TextStrokeTransparency = 1 | |
| 4949 | TEXTLABEL.TextScaled = true | |
| 4950 | TEXTLABEL.TextWrapped = true | |
| 4951 | coroutine.resume(coroutine.create(function(THEPART, THEBODYPOSITION, THETEXTLABEL) | |
| 4952 | if LABELTYPE == "Normal" then | |
| 4953 | for i = 1, 30 do | |
| 4954 | Swait() | |
| 4955 | STATPART.Position = STATPART.Position + VT(0, (15-i)/10 ,0) | |
| 4956 | TEXTLABEL.TextTransparency = TEXTLABEL.TextTransparency + (1/30) | |
| 4957 | end | |
| 4958 | elseif LABELTYPE == "Debuff" then | |
| 4959 | for i = 1, 30 do | |
| 4960 | Swait() | |
| 4961 | STATPART.Position = STATPART.Position - VT(0, i/10 ,0) | |
| 4962 | TEXTLABEL.TextTransparency = TEXTLABEL.TextTransparency + (1/30) | |
| 4963 | end | |
| 4964 | elseif LABELTYPE == "Shock" then | |
| 4965 | local ORIGIN = STATPART.Position | |
| 4966 | for i = 1, 30 do | |
| 4967 | Swait() | |
| 4968 | - | for i=0, 0, 0.0001 / Animation_Speed do |
| 4968 | + | |
| 4969 | TEXTLABEL.TextTransparency = TEXTLABEL.TextTransparency + (1/30) | |
| 4970 | end | |
| 4971 | end | |
| 4972 | THEPART.Parent = nil | |
| 4973 | end),STATPART, BODYPOSITION, TEXTLABEL) | |
| 4974 | end | |
| 4975 | ||
| 4976 | --//=================================\\ | |
| 4977 | --|| DAMAGING | |
| 4978 | --\\=================================// | |
| 4979 | ||
| 4980 | function killnearest(position,range,maxstrength,direction) | |
| 4981 | for i,v in ipairs(workspace:GetChildren()) do | |
| 4982 | local body = v:GetChildren() | |
| 4983 | for part = 1, #body do | |
| 4984 | if((body[part].ClassName == "Part" or body[part].ClassName == "MeshPart") and v ~= Character) then | |
| 4985 | if(body[part].Position - position).Magnitude < range then | |
| 4986 | if v.ClassName == "Model" then | |
| 4987 | - | for i=0, 0, 0.0001 / Animation_Speed do |
| 4987 | + | |
| 4988 | end | |
| 4989 | local POS = position | |
| 4990 | coroutine.resume(coroutine.create(function() | |
| 4991 | body[part].Anchored = true | |
| 4992 | body[part].Parent = Effects | |
| 4993 | body[part].CanCollide = true | |
| 4994 | local SIZE = body[part].Size | |
| 4995 | body[part].Material = "Neon" | |
| 4996 | CreateSound("952306739", body[part], 2, MRANDOM(7, 12) / 10)
| |
| 4997 | for i = 1, 75 do | |
| 4998 | Swait() | |
| 4999 | - | for i=0, 0, 0.0001 / Animation_Speed do |
| 4999 | + | |
| 5000 | body[part].Size = VT(SIZE.X+MRANDOM(-2,2),SIZE.Y+MRANDOM(-2,2),SIZE.Z+MRANDOM(-2,2)) | |
| 5001 | end | |
| 5002 | coroutine.resume(coroutine.create(function() | |
| 5003 | while true do | |
| 5004 | Swait() | |
| 5005 | body[part].Color = C3(MRANDOM(0,100)/100,MRANDOM(0,100)/100,MRANDOM(0,100)/100) | |
| 5006 | body[part].Size = VT(SIZE.X+MRANDOM(-2,2),SIZE.Y+MRANDOM(-2,2),SIZE.Z+MRANDOM(-2,2)) | |
| 5007 | end | |
| 5008 | end)) | |
| 5009 | body[part].Anchored = false | |
| 5010 | body[part].Velocity = direction.lookVector*maxstrength | |
| 5011 | end)) | |
| 5012 | end | |
| 5013 | end | |
| 5014 | end | |
| 5015 | if v.ClassName == "Part" then | |
| 5016 | if v.Anchored == false and (v.Position - position).Magnitude < range then | |
| 5017 | local POS = position | |
| 5018 | coroutine.resume(coroutine.create(function() | |
| 5019 | v.Anchored = true | |
| 5020 | v.Parent = Effects | |
| 5021 | local SIZE = v.Size | |
| 5022 | v.Material = "Neon" | |
| 5023 | CreateSound("952306739", v, 2, MRANDOM(7, 12) / 10)
| |
| 5024 | for i = 1, 75 do | |
| 5025 | Swait() | |
| 5026 | v.Color = C3(MRANDOM(0,100)/100,MRANDOM(0,100)/100,MRANDOM(0,100)/100) | |
| 5027 | v.Size = VT(SIZE.X+MRANDOM(-2,2),SIZE.Y+MRANDOM(-2,2),SIZE.Z+MRANDOM(-2,2)) | |
| 5028 | end | |
| 5029 | coroutine.resume(coroutine.create(function() | |
| 5030 | while true do | |
| 5031 | Swait() | |
| 5032 | v.Color = C3(MRANDOM(0,100)/100,MRANDOM(0,100)/100,MRANDOM(0,100)/100) | |
| 5033 | v.Size = VT(SIZE.X+MRANDOM(-2,2),SIZE.Y+MRANDOM(-2,2),SIZE.Z+MRANDOM(-2,2)) | |
| 5034 | end | |
| 5035 | end)) | |
| 5036 | v.Anchored = false | |
| 5037 | v.Velocity = direction.lookVector*maxstrength | |
| 5038 | end)) | |
| 5039 | end | |
| 5040 | end | |
| 5041 | end | |
| 5042 | end | |
| 5043 | ||
| 5044 | --//=================================\\ | |
| 5045 | --|| ATTACK FUNCTIONS AND STUFF | |
| 5046 | --\\=================================// | |
| 5047 | ||
| 5048 | function AttackTemplate() | |
| 5049 | ATTACK = true | |
| 5050 | Rooted = false | |
| 5051 | for i=0, 0, 0.1 / Animation_Speed do | |
| 5052 | Swait() | |
| 5053 | RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed) | |
| 5054 | Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 0.15 / Animation_Speed) | |
| 5055 | RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(0), RAD(0), RAD(12)) * RIGHTSHOULDERC0, 0.15 / Animation_Speed) | |
| 5056 | LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(0), RAD(0), RAD(-12)) * LEFTSHOULDERC0, 0.15 / Animation_Speed) | |
| 5057 | RightHip.C0 = Clerp(RightHip.C0, CF(1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed) | |
| 5058 | LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed) | |
| 5059 | end | |
| 5060 | ATTACK = false | |
| 5061 | Rooted = false | |
| 5062 | end | |
| 5063 | ||
| 5064 | - | for i=0, 1, 0.0001 / Animation_Speed do |
| 5064 | + | |
| 5065 | ATTACK = true | |
| 5066 | Rooted = false | |
| 5067 | local SPEED = Speed | |
| 5068 | Speed = 8 | |
| 5069 | CreateSound("169445572", RightArm, 10, 1.1)
| |
| 5070 | for i=0, 0, 0.1 / Animation_Speed do | |
| 5071 | Swait() | |
| 5072 | turnto(Mouse.Hit.p) | |
| 5073 | MagicSphere(VT(1,1,1),15,RightArm.CFrame * CF(MRANDOM(-3,3),MRANDOM(-3,3),MRANDOM(-3,3)),"Black",VT(-1/15,-1/15,-1/15)) | |
| 5074 | MagicSphere(VT(2,2,2),15,RightArm.CFrame * CF(MRANDOM(-3,3),MRANDOM(-3,3),MRANDOM(-3,3)),"Really black",VT(-2/15,-2/15,-2/15)) | |
| 5075 | RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0 * Player_Size, 0 * Player_Size, -0.2 * Player_Size + 0.05 * COS(SINE / 12) * Player_Size) * ANGLES(RAD(0), RAD(0), RAD(-85)), 0.15 / Animation_Speed) | |
| 5076 | Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0 * Player_Size, 0 * Player_Size, 0 + ((1 * Player_Size) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(85)), 0.2 / Animation_Speed) | |
| 5077 | RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5 * Player_Size, 0.5 * Player_Size, 0 * Player_Size) * ANGLES(RAD(90+(MRANDOM(-45,45)/10)), RAD(0), RAD(12)) * RIGHTSHOULDERC0, 3 / Animation_Speed) | |
| 5078 | LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5 * Player_Size, 0.5 * Player_Size, 0 * Player_Size) * ANGLES(RAD(90), RAD(0), RAD(-85)) * LEFTSHOULDERC0, 0.15 / Animation_Speed) | |
| 5079 | RightHip.C0 = Clerp(RightHip.C0, CF(1 * Player_Size, -1 * Player_Size, -0 * Player_Size) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed) | |
| 5080 | - | for i=0, 1, 0.0001 / Animation_Speed do |
| 5080 | + | |
| 5081 | end | |
| 5082 | for i=0, 0, 0.1 / Animation_Speed do | |
| 5083 | Swait() | |
| 5084 | turnto(Mouse.Hit.p) | |
| 5085 | RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0 * Player_Size, 0 * Player_Size, -0.2 * Player_Size + 0.05 * COS(SINE / 12) * Player_Size) * ANGLES(RAD(0), RAD(0), RAD(65)), 1 / Animation_Speed) | |
| 5086 | Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0 * Player_Size, 0 * Player_Size, 0 + ((1 * Player_Size) - 1)) * ANGLES(RAD(25), RAD(0), RAD(35)), 1 / Animation_Speed) | |
| 5087 | RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5 * Player_Size, 0.5 * Player_Size, 0 * Player_Size) * ANGLES(RAD(90), RAD(0), RAD(65)) * RIGHTSHOULDERC0, 1 / Animation_Speed) | |
| 5088 | LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5 * Player_Size, 0.5 * Player_Size, 0 * Player_Size) * ANGLES(RAD(-20), RAD(0), RAD(-25)) * LEFTSHOULDERC0, 1 / Animation_Speed) | |
| 5089 | RightHip.C0 = Clerp(RightHip.C0, CF(1 * Player_Size, -1 * Player_Size, -0 * Player_Size) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed) | |
| 5090 | LeftHip.C0 = Clerp(LeftHip.C0, CF(-1 * Player_Size, -1 * Player_Size, -0 * Player_Size) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed) | |
| 5091 | end | |
| 5092 | local PART = CreatePart(3, Effects, "Neon", 0, 0.8, "Black", "Punch", VT(50,50,50),false) | |
| 5093 | PART.CFrame = RootPart.CFrame * CF(0,0,-25) | |
| 5094 | PART.Shape = "Ball" | |
| 5095 | local bv = Instance.new("BodyVelocity")
| |
| 5096 | bv.maxForce = Vector3.new(1e9, 1e9, 1e9) | |
| 5097 | bv.velocity = RootPart.CFrame.lookVector*600 | |
| 5098 | bv.Parent = PART | |
| 5099 | bv.Name = "PROJECTILEVELOCITY" | |
| 5100 | CreateWave(VT(1,5,1),55,RootPart.CFrame * CF(0,0,-6)*ANGLES(RAD(-90),RAD(0),RAD(0)),true,-1,"Really red",VT(2.5,0.2,2.5)) | |
| 5101 | CreateWave(VT(1,5,1),55,RootPart.CFrame * CF(0,0,-6)*ANGLES(RAD(-90),RAD(0),RAD(0)),true,1,"Really red",VT(3,0.2,3)) | |
| 5102 | CreateSwirl(VT(3,5,3),75,RootPart.CFrame * CF(0,0,-15)*ANGLES(RAD(-90),RAD(0),RAD(0)),true,-1,"Really red",VT(2,0.6,2)) | |
| 5103 | CreateSwirl(VT(3,5,3),75,RootPart.CFrame * CF(0,0,-15)*ANGLES(RAD(-90),RAD(0),RAD(0)),true,1,"Black",VT(2.2,0.6,2.2)) | |
| 5104 | CreateSound("414517163", Effects, 10, MRANDOM(7, 12) / 10)
| |
| 5105 | coroutine.resume(coroutine.create(function() | |
| 5106 | for i = 1, 10 do | |
| 5107 | - | for i=0, 1, 0.0 / Animation_Speed do |
| 5107 | + | |
| 5108 | PART.Transparency = PART.Transparency + 0.2/10 | |
| 5109 | PART.Size = PART.Size + VT(5,5,5) | |
| 5110 | killnearest(PART.Position,PART.Size.Y/2+15,100,RootPart.CFrame) | |
| 5111 | end | |
| 5112 | PART:Destroy() | |
| 5113 | end)) | |
| 5114 | for i=0, 0, 0.1 / Animation_Speed do | |
| 5115 | Swait() | |
| 5116 | RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0 * Player_Size, 0 * Player_Size, -0.2 * Player_Size + 0.05 * COS(SINE / 12) * Player_Size) * ANGLES(RAD(15), RAD(0), RAD(95)), 2 / Animation_Speed) | |
| 5117 | Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0 * Player_Size, 0 * Player_Size, 0 + ((1 * Player_Size) - 1)) * ANGLES(RAD(25), RAD(0), RAD(35)), 3 / Animation_Speed) | |
| 5118 | RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5 * Player_Size, 0.5 * Player_Size, 0 * Player_Size) * ANGLES(RAD(90), RAD(0), RAD(0)) * RIGHTSHOULDERC0, 3 / Animation_Speed) | |
| 5119 | LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5 * Player_Size, 0.5 * Player_Size, 0 * Player_Size) * ANGLES(RAD(-70), RAD(0), RAD(-25)) * LEFTSHOULDERC0, 3 / Animation_Speed) | |
| 5120 | RightHip.C0 = Clerp(RightHip.C0, CF(1 * Player_Size, -0.8 * Player_Size, -0 * Player_Size) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(-15), RAD(0), RAD(0)), 3 / Animation_Speed) | |
| 5121 | LeftHip.C0 = Clerp(LeftHip.C0, CF(-1 * Player_Size, -1 * Player_Size, -0 * Player_Size) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-5), RAD(0), RAD(0)), 3 / Animation_Speed) | |
| 5122 | end | |
| 5123 | Speed = SPEED | |
| 5124 | ATTACK = false | |
| 5125 | Rooted = false | |
| 5126 | end | |
| 5127 | ||
| 5128 | function GoldenGrasp() | |
| 5129 | ATTACK = true | |
| 5130 | Rooted = false | |
| 5131 | local HASGRABBED = false | |
| 5132 | local WELD = nil | |
| 5133 | local TORS = nil | |
| 5134 | local hitting = FIST.Touched:connect(function(hit) | |
| 5135 | if hit.Parent:FindFirstChild("Humanoid") then
| |
| 5136 | if hit.Parent.Humanoid.Health ~= 0 then | |
| 5137 | UNANCHOR = false | |
| 5138 | TORS = hit.Parent:FindFirstChild("Torso") or hit.Parent:FindFirstChild("UpperTorso")
| |
| 5139 | TORS.Anchored = true | |
| 5140 | TORS.CFrame = RightArm.CFrame * CF(0,-1.15,0) * ANGLES(RAD(90), RAD(0), RAD(0)) | |
| 5141 | WELD = weldBetween(RightArm,TORS) | |
| 5142 | HASGRABBED = true | |
| 5143 | Rooted = true | |
| 5144 | end | |
| 5145 | end | |
| 5146 | end) | |
| 5147 | for i=0, 1, 0.1 / Animation_Speed do | |
| 5148 | Swait() | |
| 5149 | if HASGRABBED == true then | |
| 5150 | break | |
| 5151 | end | |
| 5152 | RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(25)), 2 / Animation_Speed) | |
| 5153 | Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(-25)), 2 / Animation_Speed) | |
| 5154 | RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1, 0.5, -1) * ANGLES(RAD(90), RAD(0), RAD(-25)) * RIGHTSHOULDERC0, 2 / Animation_Speed) | |
| 5155 | LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(0), RAD(0), RAD(-12)) * LEFTSHOULDERC0, 2 / Animation_Speed) | |
| 5156 | RightHip.C0 = Clerp(RightHip.C0, CF(1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 2 / Animation_Speed) | |
| 5157 | LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 2 / Animation_Speed) | |
| 5158 | end | |
| 5159 | hitting:disconnect() | |
| 5160 | if HASGRABBED == true then | |
| 5161 | TORS.Anchored = false | |
| 5162 | RootPart.Anchored = true | |
| 5163 | for i=0, 1, 0.5 / Animation_Speed do | |
| 5164 | Swait() | |
| 5165 | RootJoint.C0 = Clerp(RootJoint.C0, ROOTC0 * CF(0, 0, -1.2) * ANGLES(RAD(65), RAD(0), RAD(0)), 0.2 / Animation_Speed) | |
| 5166 | Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.2 / Animation_Speed) | |
| 5167 | RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(-40), RAD(0), RAD(20)) * RIGHTSHOULDERC0, 0.2 / Animation_Speed) | |
| 5168 | LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(-40), RAD(0), RAD(-20)) * LEFTSHOULDERC0, 0.2 / Animation_Speed) | |
| 5169 | RightHip.C0 = Clerp(RightHip.C0, CF(1, -0.3, -1) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(-20)), 0.2 / Animation_Speed) | |
| 5170 | LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.3, -1) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.2 / Animation_Speed) | |
| 5171 | end | |
| 5172 | CreateWave(VT(3,1,3),65,CF(RootPart.Position)*CF(0,-3,0),false,2,"Really red",VT(0.5,0.3,0.5)) | |
| 5173 | CreateWave(VT(3,1,3),65,CF(RootPart.Position)*CF(0,-3,0),true,2,"Really red",VT(0.6,0.3,0.6)) | |
| 5174 | local SOUNDPART = CreatePart(3, Effects, "Neon", 0, 1, "Black", "Sound", VT(0,0,0)) | |
| 5175 | SOUNDPART.CFrame = RootPart.CFrame | |
| 5176 | Debris:AddItem(SOUNDPART,5) | |
| 5177 | CreateSound("1295446488", SOUNDPART, 2, 1)
| |
| 5178 | for i = 1, 7 do | |
| 5179 | Slice(0.1,65,CF(RootPart.Position) * ANGLES(RAD(0), RAD(MRANDOM(-180,180)), RAD(90)),"Really red", 1 + MRANDOM(1,30)/15) | |
| 5180 | end | |
| 5181 | for i=0, 1, 0 / Animation_Speed do | |
| 5182 | Swait() | |
| 5183 | RootJoint.C0 = Clerp(RootJoint.C0, ROOTC0 * CF(0, 0, 50000000) * ANGLES(RAD(0), RAD(0), RAD(0)), 2 / Animation_Speed) | |
| 5184 | Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(-20), RAD(0), RAD(0)), 0.2 / Animation_Speed) | |
| 5185 | RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(-40), RAD(0), RAD(20)) * RIGHTSHOULDERC0, 0.2 / Animation_Speed) | |
| 5186 | LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(-40), RAD(0), RAD(-20)) * LEFTSHOULDERC0, 0.2 / Animation_Speed) | |
| 5187 | RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.3) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(-5), RAD(0), RAD(-20)), 0.2 / Animation_Speed) | |
| 5188 | LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, -0.3) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-5), RAD(0), RAD(20)), 0.2 / Animation_Speed) | |
| 5189 | end | |
| 5190 | for i=0, 1, 0 / Animation_Speed do | |
| 5191 | Swait() | |
| 5192 | RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0) * ANGLES(RAD(90), RAD(0), RAD(0)), 3 / Animation_Speed) | |
| 5193 | Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 3 / Animation_Speed) | |
| 5194 | RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(90), RAD(0), RAD(0)) * RIGHTSHOULDERC0, 3 / Animation_Speed) | |
| 5195 | LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(0), RAD(0), RAD(-12)) * LEFTSHOULDERC0, 3 / Animation_Speed) | |
| 5196 | RightHip.C0 = Clerp(RightHip.C0, CF(1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed) | |
| 5197 | LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed) | |
| 5198 | end | |
| 5199 | if HITFLOOR ~= nil then | |
| 5200 | CreateDebreeRing(HITFLOOR,CF(RootPart.Position)*CF(0,-3,0).p,15,VT(7,7,7),85) | |
| 5201 | end | |
| 5202 | CreateSound("414517163", Effects, 10, MRANDOM(7, 12) / 10)
| |
| 5203 | WELD:remove() | |
| 5204 | for i = 1, 12 do | |
| 5205 | Swait() | |
| 5206 | killnearest(RootPart.Position,45,100,Torso.CFrame) | |
| 5207 | CreateWave(VT(3,1,3),65,CF(RootPart.Position)*CF(0,-3,0),true,5,"Black",VT(0.3,3,0.3)) | |
| 5208 | CreateWave(VT(3,1,3),65,CF(RootPart.Position)*CF(0,-3,0),false,2,"Black",VT(1,0.4,1)) | |
| 5209 | CreateWave(VT(3,1,3),65,CF(RootPart.Position)*CF(0,-3,0),true,5,"Black",VT(2.3,0.3,2.3)) | |
| 5210 | Slice(0.1,65,CF(RootPart.Position) * ANGLES(RAD(MRANDOM(-180,180)), RAD(MRANDOM(-180,180)), RAD(MRANDOM(-180,180))),"Really red", 1 + MRANDOM(1,30)/5) | |
| 5211 | Slice(0.1,65,CF(RightArm.CFrame*CF(0,-1,0).p) * ANGLES(RAD(MRANDOM(-20,20)), RAD(MRANDOM(-180,180)), RAD(MRANDOM(-20,20))),"Black", 1 + MRANDOM(1,30)/15) | |
| 5212 | end | |
| 5213 | end | |
| 5214 | UNANCHOR = true | |
| 5215 | ATTACK = false | |
| 5216 | Rooted = false | |
| 5217 | end | |
| 5218 | ||
| 5219 | function Mach20() | |
| 5220 | local ORIGIN = RootPart.Position | |
| 5221 | CreateWave2(VT(3,1,3),65,CF(RootPart.Position)*CF(0,-3,0),false,2,"Black",VT(0.2,3,0.4)) | |
| 5222 | CreateWave2(VT(3,1,3),65,CF(RootPart.Position)*CF(0,-3,0),false,2,"Black",VT(0.2,3.1,0.6)) | |
| 5223 | local SOUNDPART = CreatePart(3, Effects, "Neon", 0, 1, "Really red", "Sound", VT(0,0,0)) | |
| 5224 | SOUNDPART.CFrame = RootPart.CFrame | |
| 5225 | Debris:AddItem(SOUNDPART,5) | |
| 5226 | CreateSound("1295446488", SOUNDPART, 2, 1)
| |
| 5227 | RootPart.CFrame = CF(Mouse.Hit.p+VT(0,3,0),VT(ORIGIN.X,Mouse.Hit.p.Y,ORIGIN.Z)) | |
| 5228 | Swait() | |
| 5229 | CreateWave2(VT(3,1,3),65,CF(RootPart.Position)*CF(0,-3,0),false,2,"Black",VT(0.2,3,0.4)) | |
| 5230 | CreateWave2(VT(3,1,3),65,CF(RootPart.Position)*CF(0,-3,0),false,2,"Black",VT(0.2,3.1,0.6)) | |
| 5231 | local SOUNDPART = CreatePart(3, Effects, "Neon", 0, 1, "Really red", "Sound", VT(0,0,0)) | |
| 5232 | SOUNDPART.CFrame = RootPart.CFrame | |
| 5233 | Debris:AddItem(SOUNDPART,5) | |
| 5234 | CreateSound("1295446488", SOUNDPART, 2, 1)
| |
| 5235 | if MRANDOM(1,8) == 1 then | |
| 5236 | ATTACK = true | |
| 5237 | Rooted = true | |
| 5238 | local FRUITSTABLE = {
| |
| 5239 | {MeshId = "16190555", TextureId = "16190577", Color = "Really red"},
| |
| 5240 | {MeshId = "119574562", TextureId = "64374853", Color = "Black"},
| |
| 5241 | {MeshId = "24394186", TextureId = "24394178", Color = "Really black"}
| |
| 5242 | } | |
| 5243 | local FRUIT = FRUITSTABLE[MRANDOM(1, #FRUITSTABLE)] | |
| 5244 | local FRUITMODEL = CreatePart(3, Effects, "Neon", 0, 0, FRUIT.Color, "Fruit", VT(0,0,0),false) | |
| 5245 | CreateMesh("SpecialMesh", FRUITMODEL, "FileMesh", FRUIT.MeshId, FRUIT.TextureId, VT(2,2,2), VT(0,0,0))
| |
| 5246 | FRUITMODEL.CFrame = RightArm.CFrame * CF(0,-1.5,0) | |
| 5247 | weldBetween(RightArm,FRUITMODEL) | |
| 5248 | for i=0, 0, 0.1 / Animation_Speed do | |
| 5249 | Swait() | |
| 5250 | RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed) | |
| 5251 | Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 0.15 / Animation_Speed) | |
| 5252 | RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(0), RAD(190), RAD(-145)) * RIGHTSHOULDERC0, 0.15 / Animation_Speed) | |
| 5253 | LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(0), RAD(0), RAD(-12)) * LEFTSHOULDERC0, 0.15 / Animation_Speed) | |
| 5254 | RightHip.C0 = Clerp(RightHip.C0, CF(1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed) | |
| 5255 | LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed) | |
| 5256 | end | |
| 5257 | CreateSound("414517163", RightArm, 10, MRANDOM(7, 12) / 10)
| |
| 5258 | FRUITMODEL:remove() | |
| 5259 | for i = 1, 15 do | |
| 5260 | Slice(0.1,15,RightArm.CFrame*CF(0,-1,0) * ANGLES(RAD(MRANDOM(-180,180)), RAD(MRANDOM(-180,180)), RAD(MRANDOM(-180,180))),FRUIT.Color, 1 + MRANDOM(1,10)/15) | |
| 5261 | end | |
| 5262 | for i=0, 0, 0.1 / Animation_Speed do | |
| 5263 | Swait() | |
| 5264 | RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed) | |
| 5265 | Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 0.15 / Animation_Speed) | |
| 5266 | RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(0), RAD(190), RAD(-175)) * RIGHTSHOULDERC0, 0.15 / Animation_Speed) | |
| 5267 | LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(0), RAD(0), RAD(-12)) * LEFTSHOULDERC0, 0.15 / Animation_Speed) | |
| 5268 | RightHip.C0 = Clerp(RightHip.C0, CF(1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed) | |
| 5269 | LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed) | |
| 5270 | end | |
| 5271 | ATTACK = false | |
| 5272 | Rooted = false | |
| 5273 | end | |
| 5274 | end | |
| 5275 | ||
| 5276 | function ImplosionCollision() | |
| 5277 | ATTACK = true | |
| 5278 | Rooted = true | |
| 5279 | CreateSound("169445572", RightArm, 10, 0.8)
| |
| 5280 | for i=0, 0, 0.1 / Animation_Speed do | |
| 5281 | Swait() | |
| 5282 | turnto(Mouse.Hit.p) | |
| 5283 | CreateWave(VT(3,1,3),65,CF(RootPart.Position)*CF(0,-3,0),true,2,"Really red",VT(0.2,0,0.2)) | |
| 5284 | Slice(0.1,65,RightArm.CFrame*CF(0,-1,0) * ANGLES(RAD(MRANDOM(-180,180)), RAD(MRANDOM(-180,180)), RAD(MRANDOM(-180,180))),"Black", 1.1) | |
| 5285 | MagicSphere(VT(0.2,0.2,0.2),15,CF(RightArm.CFrame*CF(MRANDOM(-5,5),MRANDOM(-5,5),MRANDOM(-5,5)).p,RightArm.Position),"Black",VT(0.001,0.001,1),0) | |
| 5286 | MagicSphere(VT(0.2,0.2,0.2),15,CF(RightArm.CFrame*CF(MRANDOM(-5,5),MRANDOM(-5,5),MRANDOM(-5,5)).p,RightArm.Position),"Black",VT(0.001,0.001,2),0) | |
| 5287 | MagicSphere(VT(1,1,1),15,RightArm.CFrame * CF(MRANDOM(-3,3),MRANDOM(-3,3),MRANDOM(-3,3)),"Black",VT(-1/15,-1/15,-1/15)) | |
| 5288 | MagicSphere(VT(2,2,2),15,RightArm.CFrame * CF(MRANDOM(-3,3),MRANDOM(-3,3),MRANDOM(-3,3)),"Black",VT(-2/15,-2/15,-2/15)) | |
| 5289 | RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0 * Player_Size, 0 * Player_Size, -0.2 * Player_Size + 0.05 * COS(SINE / 12) * Player_Size) * ANGLES(RAD(0), RAD(0), RAD(-85)), 0.15 / Animation_Speed) | |
| 5290 | Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0 * Player_Size, 0 * Player_Size, 0 + ((1 * Player_Size) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(85)), 0.2 / Animation_Speed) | |
| 5291 | RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5 * Player_Size, 0.5 * Player_Size, 0 * Player_Size) * ANGLES(RAD(90+(MRANDOM(-45,45)/10)), RAD(0), RAD(12)) * RIGHTSHOULDERC0, 3 / Animation_Speed) | |
| 5292 | LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5 * Player_Size, 0.5 * Player_Size, 0 * Player_Size) * ANGLES(RAD(90), RAD(0), RAD(-85)) * LEFTSHOULDERC0, 0.15 / Animation_Speed) | |
| 5293 | RightHip.C0 = Clerp(RightHip.C0, CF(1 * Player_Size, -1 * Player_Size, -0 * Player_Size) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed) | |
| 5294 | LeftHip.C0 = Clerp(LeftHip.C0, CF(-1 * Player_Size, -1 * Player_Size, -0 * Player_Size) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed) | |
| 5295 | end | |
| 5296 | for i=0, 0, 0.1 / Animation_Speed do | |
| 5297 | Swait() | |
| 5298 | turnto(Mouse.Hit.p) | |
| 5299 | RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0 * Player_Size, 0 * Player_Size, -0.2 * Player_Size + 0.05 * COS(SINE / 12) * Player_Size) * ANGLES(RAD(0), RAD(0), RAD(65)), 1 / Animation_Speed) | |
| 5300 | Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0 * Player_Size, 0 * Player_Size, 0 + ((1 * Player_Size) - 1)) * ANGLES(RAD(25), RAD(0), RAD(35)), 1 / Animation_Speed) | |
| 5301 | RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5 * Player_Size, 0.5 * Player_Size, 0 * Player_Size) * ANGLES(RAD(90), RAD(0), RAD(65)) * RIGHTSHOULDERC0, 1 / Animation_Speed) | |
| 5302 | LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5 * Player_Size, 0.5 * Player_Size, 0 * Player_Size) * ANGLES(RAD(-20), RAD(0), RAD(-25)) * LEFTSHOULDERC0, 1 / Animation_Speed) | |
| 5303 | RightHip.C0 = Clerp(RightHip.C0, CF(1 * Player_Size, -1 * Player_Size, -0 * Player_Size) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed) | |
| 5304 | LeftHip.C0 = Clerp(LeftHip.C0, CF(-1 * Player_Size, -1 * Player_Size, -0 * Player_Size) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed) | |
| 5305 | end | |
| 5306 | MagicSphere(VT(4,4,4),100,RootPart.CFrame * CF(0,0,-6),"Black",VT(-0.04,-0.04,-0.04)) | |
| 5307 | MagicSphere(VT(3.5,3.5,3.5),100,RootPart.CFrame * CF(0,0,-6),"Black",VT(-0.035,-0.035,-0.035)) | |
| 5308 | coroutine.resume(coroutine.create(function() | |
| 5309 | Swait(100) | |
| 5310 | for i = 1, 5 do | |
| 5311 | MagicSphere(VT(150,150,150),75,RootPart.CFrame * CF(0,0,-72*i),"Black",VT(-150/(150-(15*i)),-150/(150-(15*i)),-150/(150-(15*i)))) | |
| 5312 | CreateWave(VT(1,5,1),55,RootPart.CFrame * CF(0,0,-6*i)*ANGLES(RAD(-90),RAD(0),RAD(0)),true,-1,"Really black",VT(4.5*i,0.2,4.5*i)) | |
| 5313 | CreateWave(VT(1,5,1),55,RootPart.CFrame * CF(0,0,-6*i)*ANGLES(RAD(-90),RAD(0),RAD(0)),true,1,"Really black",VT(5*i,0.2,5*i)) | |
| 5314 | CreateSwirl(VT(3,5,3),75,RootPart.CFrame * CF(0,0,-15*i)*ANGLES(RAD(-90),RAD(0),RAD(0)),true,-1,"Really red",VT(4*i,0.6,4*i)) | |
| 5315 | CreateSwirl(VT(3,5,3),75,RootPart.CFrame * CF(0,0,-15*i)*ANGLES(RAD(-90),RAD(0),RAD(0)),true,1,"Really red",VT(5.2*i,0.6,5.2*i)) | |
| 5316 | end | |
| 5317 | killnearest(RootPart.CFrame * CF(0,0,-500).p,500,1000,RootPart.CFrame) | |
| 5318 | for i = 1, 5 do | |
| 5319 | CreateSound("414517163", Effects, 10, MRANDOM(5, 8) / 10)
| |
| 5320 | CreateSound("414517163", Effects, 10, MRANDOM(5, 8) / 10)
| |
| 5321 | end | |
| 5322 | coroutine.resume(coroutine.create(function() | |
| 5323 | for i = 1, 10 do | |
| 5324 | Swait() | |
| 5325 | for i = 1, 1 do | |
| 5326 | Slice(0.1,65,CF(RootPart.Position) * ANGLES(RAD(MRANDOM(-180,180)), RAD(MRANDOM(-180,180)), RAD(MRANDOM(-180,180))),"Really red", 1 + MRANDOM(1,30)/5) | |
| 5327 | end | |
| 5328 | for i = 1, 4 do | |
| 5329 | Slice(0.1,65,CF(RootPart.Position) * ANGLES(RAD(MRANDOM(-180,180)), RAD(MRANDOM(-180,180)), RAD(MRANDOM(-180,180))),"Black", 1 + MRANDOM(1,30)/3) | |
| 5330 | end | |
| 5331 | end | |
| 5332 | end)) | |
| 5333 | end)) | |
| 5334 | for i=0, 0, 0.01 / Animation_Speed do | |
| 5335 | Swait() | |
| 5336 | RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0 * Player_Size, 0 * Player_Size, -0.2 * Player_Size + 0.05 * COS(SINE / 12) * Player_Size) * ANGLES(RAD(15), RAD(0), RAD(95)), 2 / Animation_Speed) | |
| 5337 | Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0 * Player_Size, 0 * Player_Size, 0 + ((1 * Player_Size) - 1)) * ANGLES(RAD(25), RAD(0), RAD(35)), 3 / Animation_Speed) | |
| 5338 | RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5 * Player_Size, 0.5 * Player_Size, 0 * Player_Size) * ANGLES(RAD(90), RAD(0), RAD(0)) * RIGHTSHOULDERC0, 3 / Animation_Speed) | |
| 5339 | LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5 * Player_Size, 0.5 * Player_Size, 0 * Player_Size) * ANGLES(RAD(-70), RAD(0), RAD(-25)) * LEFTSHOULDERC0, 3 / Animation_Speed) | |
| 5340 | RightHip.C0 = Clerp(RightHip.C0, CF(1 * Player_Size, -0.8 * Player_Size, -0 * Player_Size) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(-15), RAD(0), RAD(0)), 3 / Animation_Speed) | |
| 5341 | LeftHip.C0 = Clerp(LeftHip.C0, CF(-1 * Player_Size, -1 * Player_Size, -0 * Player_Size) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-5), RAD(0), RAD(0)), 3 / Animation_Speed) | |
| 5342 | end | |
| 5343 | ATTACK = false | |
| 5344 | Rooted = false | |
| 5345 | end | |
| 5346 | ||
| 5347 | --//=================================\\ | |
| 5348 | --|| ASSIGN THINGS TO KEYS | |
| 5349 | --\\=================================// | |
| 5350 | ||
| 5351 | function MouseDown(Mouse) | |
| 5352 | if ATTACK == false then | |
| 5353 | end | |
| 5354 | end | |
| 5355 | ||
| 5356 | function MouseUp(Mouse) | |
| 5357 | HOLD = false | |
| 5358 | end | |
| 5359 | ||
| 5360 | function KeyDown(Key) | |
| 5361 | KEYHOLD = true | |
| 5362 | if Key == "z" and ATTACK == false then | |
| 5363 | GoldenPunch() | |
| 5364 | end | |
| 5365 | ||
| 5366 | if Key == "b" and ATTACK == false then | |
| 5367 | GoldenGrasp() | |
| 5368 | end | |
| 5369 | ||
| 5370 | if Key == "c" and ATTACK == false then | |
| 5371 | Mach20() | |
| 5372 | end | |
| 5373 | ||
| 5374 | if Key == "x" and ATTACK == false then | |
| 5375 | ImplosionCollision() | |
| 5376 | end | |
| 5377 | ||
| 5378 | if Key == "p" and ATTACK == false then | |
| 5379 | if Speed == 16 then | |
| 5380 | Speed = 150 | |
| 5381 | elseif Speed == 150 then | |
| 5382 | Speed = 16 | |
| 5383 | end | |
| 5384 | end | |
| 5385 | end | |
| 5386 | ||
| 5387 | function KeyUp(Key) | |
| 5388 | KEYHOLD = false | |
| 5389 | end | |
| 5390 | ||
| 5391 | Mouse.Button1Down:connect(function(NEWKEY) | |
| 5392 | MouseDown(NEWKEY) | |
| 5393 | end) | |
| 5394 | Mouse.Button1Up:connect(function(NEWKEY) | |
| 5395 | MouseUp(NEWKEY) | |
| 5396 | end) | |
| 5397 | Mouse.KeyDown:connect(function(NEWKEY) | |
| 5398 | KeyDown(NEWKEY) | |
| 5399 | end) | |
| 5400 | Mouse.KeyUp:connect(function(NEWKEY) | |
| 5401 | KeyUp(NEWKEY) | |
| 5402 | end) | |
| 5403 | ||
| 5404 | --//=================================\\ | |
| 5405 | --\\=================================// | |
| 5406 | ||
| 5407 | ||
| 5408 | function unanchor() | |
| 5409 | if UNANCHOR == true then | |
| 5410 | g = Character:GetChildren() | |
| 5411 | for i = 1, #g do | |
| 5412 | if g[i].ClassName == "Part" then | |
| 5413 | g[i].Anchored = false | |
| 5414 | end | |
| 5415 | end | |
| 5416 | end | |
| 5417 | end | |
| 5418 | ||
| 5419 | ||
| 5420 | --//=================================\\ | |
| 5421 | --|| WRAP THE WHOLE SCRIPT UP | |
| 5422 | --\\=================================// | |
| 5423 | ||
| 5424 | Humanoid.Changed:connect(function(Jump) | |
| 5425 | if Jump == "Jump" and (Disable_Jump == true) then | |
| 5426 | Humanoid.Jump = false | |
| 5427 | end | |
| 5428 | end) | |
| 5429 | ||
| 5430 | while true do | |
| 5431 | Swait() | |
| 5432 | ANIMATE.Parent = nil | |
| 5433 | local IDLEANIMATION = Humanoid:LoadAnimation(ROBLOXIDLEANIMATION) | |
| 5434 | IDLEANIMATION:Play() | |
| 5435 | SINE = SINE + CHANGE | |
| 5436 | local TORSOVELOCITY = (RootPart.Velocity * VT(1, 0, 1)).magnitude | |
| 5437 | local TORSOVERTICALVELOCITY = RootPart.Velocity.y | |
| 5438 | local LV = Torso.CFrame:pointToObjectSpace(Torso.Velocity - Torso.Position) | |
| 5439 | HITFLOOR = Raycast(RootPart.Position, (CF(RootPart.Position, RootPart.Position + VT(0, -1, 0))).lookVector, 4 * Player_Size, Character) | |
| 5440 | local WALKSPEEDVALUE = 0 | |
| 5441 | if Speed < 35 then | |
| 5442 | WALKSPEEDVALUE = 6 | |
| 5443 | else | |
| 5444 | WALKSPEEDVALUE = 3 | |
| 5445 | end | |
| 5446 | if ANIM == "Walk" and TORSOVELOCITY > 1 and Rooted == false then | |
| 5447 | RootJoint.C1 = Clerp(RootJoint.C1, ROOTC0 * CF(0, 0, -0.15 * COS(SINE / (WALKSPEEDVALUE / 2)) * Player_Size) * ANGLES(RAD(0), RAD(0) - RootPart.RotVelocity.Y / 75, RAD(0)), 2 * (1) / Animation_Speed) | |
| 5448 | Neck.C1 = Clerp(Neck.C1, CF(0 * Player_Size, -0.5 * Player_Size, 0 * Player_Size) * ANGLES(RAD(-90), RAD(0), RAD(180)) * ANGLES(RAD(2.5 * SIN(SINE / (WALKSPEEDVALUE / 2))), RAD(0), RAD(0) - Head.RotVelocity.Y / 30), 0.2 * (Humanoid.WalkSpeed / 16) / Animation_Speed) | |
| 5449 | if Speed < 35 then | |
| 5450 | RightHip.C1 = Clerp(RightHip.C1, CF(0.5 * Player_Size, 0.875 * Player_Size - 0.125 * SIN(SINE / WALKSPEEDVALUE) * Player_Size, -0.125 * COS(SINE / WALKSPEEDVALUE) * Player_Size) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(0) - RightLeg.RotVelocity.Y / 75, RAD(0), RAD(56 * COS(SINE / WALKSPEEDVALUE))), 0.2 * (WALKSPEEDVALUE) / Animation_Speed) | |
| 5451 | LeftHip.C1 = Clerp(LeftHip.C1, CF(-0.5 * Player_Size, 0.875 * Player_Size + 0.125 * SIN(SINE / WALKSPEEDVALUE) * Player_Size, 0.125 * COS(SINE / WALKSPEEDVALUE) * Player_Size) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0) + LeftLeg.RotVelocity.Y / 75, RAD(0), RAD(56 * COS(SINE / WALKSPEEDVALUE))), 0.2 * (WALKSPEEDVALUE) / Animation_Speed) | |
| 5452 | else | |
| 5453 | RightHip.C1 = Clerp(RightHip.C1, CF(0.5 * Player_Size, 0.875 * Player_Size - 0.125 * SIN(SINE / WALKSPEEDVALUE) * Player_Size, -0.125 * COS(SINE / WALKSPEEDVALUE) * Player_Size) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(0) - RightLeg.RotVelocity.Y / 75, RAD(0), RAD(80 * COS(SINE / WALKSPEEDVALUE))), 0.2 * (WALKSPEEDVALUE) / Animation_Speed) | |
| 5454 | LeftHip.C1 = Clerp(LeftHip.C1, CF(-0.5 * Player_Size, 0.875 * Player_Size + 0.125 * SIN(SINE / WALKSPEEDVALUE) * Player_Size, 0.125 * COS(SINE / WALKSPEEDVALUE) * Player_Size) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0) + LeftLeg.RotVelocity.Y / 75, RAD(0), RAD(80 * COS(SINE / WALKSPEEDVALUE))), 0.2 * (WALKSPEEDVALUE) / Animation_Speed) | |
| 5455 | end | |
| 5456 | elseif (ANIM ~= "Walk") or (TORSOVELOCITY < 1) or Rooted == true then | |
| 5457 | RootJoint.C1 = Clerp(RootJoint.C1, ROOTC0 * CF(0, 0, 0) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.2 / Animation_Speed) | |
| 5458 | Neck.C1 = Clerp(Neck.C1, CF(0 * Player_Size, -0.5 * Player_Size, 0 * Player_Size) * ANGLES(RAD(-90), RAD(0), RAD(180)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.2 / Animation_Speed) | |
| 5459 | RightHip.C1 = Clerp(RightHip.C1, CF(0.5 * Player_Size, 1 * Player_Size, 0 * Player_Size) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.2 / Animation_Speed) | |
| 5460 | LeftHip.C1 = Clerp(LeftHip.C1, CF(-0.5 * Player_Size, 1 * Player_Size, 0 * Player_Size) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.2 / Animation_Speed) | |
| 5461 | end | |
| 5462 | if TORSOVERTICALVELOCITY > 1 and HITFLOOR == nil then | |
| 5463 | ANIM = "Jump" | |
| 5464 | if ATTACK == false then | |
| 5465 | RootJoint.C0 = Clerp(RootJoint.C0, ROOTC0 * CF(0, 0, 0) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.2 / Animation_Speed) | |
| 5466 | Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0 * Player_Size, 0 + ((1) - 1)) * ANGLES(RAD(-20), RAD(0), RAD(0)), 0.2 / Animation_Speed) | |
| 5467 | RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(-40), RAD(0), RAD(20)) * RIGHTSHOULDERC0, 0.2 / Animation_Speed) | |
| 5468 | LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(-40), RAD(0), RAD(-20)) * LEFTSHOULDERC0, 0.2 / Animation_Speed) | |
| 5469 | RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.3) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(-5), RAD(0), RAD(-20)), 0.2 / Animation_Speed) | |
| 5470 | LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, -0.3) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-5), RAD(0), RAD(20)), 0.2 / Animation_Speed) | |
| 5471 | end | |
| 5472 | elseif TORSOVERTICALVELOCITY < -1 and HITFLOOR == nil then | |
| 5473 | ANIM = "Fall" | |
| 5474 | if ATTACK == false then | |
| 5475 | RootJoint.C0 = Clerp(RootJoint.C0, ROOTC0 * CF(0, 0, 0 ) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.2 / Animation_Speed) | |
| 5476 | Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0 , 0 + ((1) - 1)) * ANGLES(RAD(20), RAD(0), RAD(0)), 0.2 / Animation_Speed) | |
| 5477 | RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(0), RAD(0), RAD(60)) * RIGHTSHOULDERC0, 0.2 / Animation_Speed) | |
| 5478 | LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(0), RAD(0), RAD(-60)) * LEFTSHOULDERC0, 0.2 / Animation_Speed) | |
| 5479 | RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, 0) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(20)), 0.2 / Animation_Speed) | |
| 5480 | LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, 0) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(10)), 0.2 / Animation_Speed) | |
| 5481 | end | |
| 5482 | elseif TORSOVELOCITY < 1 and HITFLOOR ~= nil then | |
| 5483 | ANIM = "Idle" | |
| 5484 | if ATTACK == false then | |
| 5485 | RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed) | |
| 5486 | Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 0.15 / Animation_Speed) | |
| 5487 | RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(0), RAD(0), RAD(12)) * RIGHTSHOULDERC0, 0.15 / Animation_Speed) | |
| 5488 | LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(0), RAD(0), RAD(-12)) * LEFTSHOULDERC0, 0.15 / Animation_Speed) | |
| 5489 | RightHip.C0 = Clerp(RightHip.C0, CF(1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed) | |
| 5490 | LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed) | |
| 5491 | end | |
| 5492 | elseif TORSOVELOCITY > 1 and HITFLOOR ~= nil and Rooted == false then | |
| 5493 | ANIM = "Walk" | |
| 5494 | WALK = WALK + 1 / Animation_Speed | |
| 5495 | if WALK >= 15 - (5 * (Humanoid.WalkSpeed / 16 / Player_Size)) then | |
| 5496 | WALK = 0 | |
| 5497 | if WALKINGANIM == true then | |
| 5498 | WALKINGANIM = false | |
| 5499 | elseif WALKINGANIM == false then | |
| 5500 | WALKINGANIM = true | |
| 5501 | end | |
| 5502 | end | |
| 5503 | --RightHip.C1 = Clerp(RightHip.C1, CF(0.5 * Player_Size, 0.875 * Player_Size - 0.125 * SIN(SINE / WALKSPEEDVALUE) * Player_Size, -0.125 * COS(SINE / WALKSPEEDVALUE) * Player_Size) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(0) - RightLeg.RotVelocity.Y / 75, RAD(0), RAD(60 * COS(SINE / WALKSPEEDVALUE))), 0.2 * (Humanoid.WalkSpeed / 16) / Animation_Speed) | |
| 5504 | --LeftHip.C1 = Clerp(LeftHip.C1, CF(-0.5 * Player_Size, 0.875 * Player_Size + 0.125 * SIN(SINE / WALKSPEEDVALUE) * Player_Size, 0.125 * COS(SINE / WALKSPEEDVALUE) * Player_Size) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0) + LeftLeg.RotVelocity.Y / 75, RAD(0), RAD(60 * COS(SINE / WALKSPEEDVALUE))), 0.2 * (Humanoid.WalkSpeed / 16) / Animation_Speed) | |
| 5505 | if ATTACK == false then | |
| 5506 | if Speed < 35 then | |
| 5507 | RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, -0.1) * ANGLES(RAD(5), RAD(0), RAD(0)), 0.15 / Animation_Speed) | |
| 5508 | Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(5 - 8 * SIN(SINE / (WALKSPEEDVALUE / 2))), RAD(0), RAD(0)), 0.15 / Animation_Speed) | |
| 5509 | RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(30 * COS(SINE / WALKSPEEDVALUE)), RAD(0), RAD(5)) * RIGHTSHOULDERC0, 1 / Animation_Speed) | |
| 5510 | LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(-30 * COS(SINE / WALKSPEEDVALUE)), RAD(0), RAD(-5)) * LEFTSHOULDERC0, 1 / Animation_Speed) | |
| 5511 | RightHip.C0 = Clerp(RightHip.C0, CF(1 , -1 - 0.15 * COS(SINE / WALKSPEEDVALUE*2), -0.2+ 0.2 * COS(SINE / WALKSPEEDVALUE)) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(-15)), 2 / Animation_Speed) | |
| 5512 | LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.15 * COS(SINE / WALKSPEEDVALUE*2), -0.2+ -0.2 * COS(SINE / WALKSPEEDVALUE)) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(15)), 2 / Animation_Speed) | |
| 5513 | else | |
| 5514 | RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, -0.1) * ANGLES(RAD(15), RAD(0), RAD(0)), 0.15 / Animation_Speed) | |
| 5515 | Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(5 - 8 * SIN(SINE / (WALKSPEEDVALUE / 2))), RAD(0), RAD(0)), 0.15 / Animation_Speed) | |
| 5516 | RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.5, 0) * ANGLES(RAD(80 * COS(SINE / WALKSPEEDVALUE)), RAD(0), RAD(-30 * COS(SINE / WALKSPEEDVALUE))) * RIGHTSHOULDERC0, 1 / Animation_Speed) | |
| 5517 | LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.5, 0) * ANGLES(RAD(-80 * COS(SINE / WALKSPEEDVALUE)), RAD(0), RAD(-30 * COS(SINE / WALKSPEEDVALUE))) * LEFTSHOULDERC0, 1 / Animation_Speed) | |
| 5518 | RightHip.C0 = Clerp(RightHip.C0, CF(1 , -1 - 0.15 * COS(SINE / WALKSPEEDVALUE*2), -0.2+ 0.2 * COS(SINE / WALKSPEEDVALUE)) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(-15)), 2 / Animation_Speed) | |
| 5519 | LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.15 * COS(SINE / WALKSPEEDVALUE*2), -0.2+ -0.2 * COS(SINE / WALKSPEEDVALUE)) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(15)), 2 / Animation_Speed) | |
| 5520 | end | |
| 5521 | end | |
| 5522 | end | |
| 5523 | unanchor() | |
| 5524 | Humanoid.MaxHealth = "inf" | |
| 5525 | Humanoid.Health = "inf" | |
| 5526 | if Rooted == false then | |
| 5527 | Disable_Jump = false | |
| 5528 | Humanoid.WalkSpeed = Speed | |
| 5529 | elseif Rooted == true then | |
| 5530 | Disable_Jump = true | |
| 5531 | Humanoid.WalkSpeed = 0 | |
| 5532 | end | |
| 5533 | local MATHS = {"0","1"}
| |
| 5534 | Humanoid.Name = MATHS[MRANDOM(1,#MATHS)]..MATHS[MRANDOM(1,#MATHS)]..MATHS[MRANDOM(1,#MATHS)]..MATHS[MRANDOM(1,#MATHS)]..MATHS[MRANDOM(1,#MATHS)]..MATHS[MRANDOM(1,#MATHS)]..MATHS[MRANDOM(1,#MATHS)]..MATHS[MRANDOM(1,#MATHS)]..MATHS[MRANDOM(1,#MATHS)]..MATHS[MRANDOM(1,#MATHS)]..MATHS[MRANDOM(1,#MATHS)]..MATHS[MRANDOM(1,#MATHS)]..MATHS[MRANDOM(1,#MATHS)]..MATHS[MRANDOM(1,#MATHS)]..MATHS[MRANDOM(1,#MATHS)]..MATHS[MRANDOM(1,#MATHS)]..MATHS[MRANDOM(1,#MATHS)]..MATHS[MRANDOM(1,#MATHS)] | |
| 5535 | Humanoid.PlatformStand = false | |
| 5536 | end | |
| 5537 | ||
| 5538 | ||
| 5539 | ||
| 5540 | ||
| 5541 | --//=================================\\ | |
| 5542 | --\\=================================// | |
| 5543 | ||
| 5544 | ||
| 5545 | ||
| 5546 | ||
| 5547 | ||
| 5548 | --//====================================================\\-- | |
| 5549 | --|| END OF SCRIPT ||-- | |
| 5550 | --\\====================================================//-- |