Advertisement
rubenvfx

nuke fe

Dec 14th, 2022
2,714
1
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 249.67 KB | None | 1 0
  1. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  2. local Player,game,owner = owner,game
  3. local RealPlayer = Player
  4. do
  5.     print("FE Compatibility code by Mokiros")
  6.     local rp = RealPlayer
  7.     script.Parent = rp.Character
  8.    
  9.     --RemoteEvent for communicating
  10.     local Event = Instance.new("RemoteEvent")
  11.     Event.Name = "UserInput_Event"
  12.  
  13.     --Fake event to make stuff like Mouse.KeyDown work
  14.     local function fakeEvent()
  15.         local t = {_fakeEvent=true,Functions={},Connect=function(self,f)table.insert(self.Functions,f) end}
  16.         t.connect = t.Connect
  17.         return t
  18.     end
  19.  
  20.     --Creating fake input objects with fake variables
  21.     local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()}
  22.     local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  23.     local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  24.         CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  25.     end}
  26.     --Merged 2 functions into one by checking amount of arguments
  27.     CAS.UnbindAction = CAS.BindAction
  28.  
  29.     --This function will trigger the events that have been :Connect()'ed
  30.     local function te(self,ev,...)
  31.         local t = m[ev]
  32.         if t and t._fakeEvent then
  33.             for _,f in pairs(t.Functions) do
  34.                 f(...)
  35.             end
  36.         end
  37.     end
  38.     m.TrigEvent = te
  39.     UIS.TrigEvent = te
  40.  
  41.     Event.OnServerEvent:Connect(function(plr,io)
  42.         if plr~=rp then return end
  43.         m.Target = io.Target
  44.         m.Hit = io.Hit
  45.         if not io.isMouse then
  46.             local b = io.UserInputState == Enum.UserInputState.Begin
  47.             if io.UserInputType == Enum.UserInputType.MouseButton1 then
  48.                 return m:TrigEvent(b and "Button1Down" or "Button1Up")
  49.             end
  50.             for _,t in pairs(CAS.Actions) do
  51.                 for _,k in pairs(t.Keys) do
  52.                     if k==io.KeyCode then
  53.                         t.Function(t.Name,io.UserInputState,io)
  54.                     end
  55.                 end
  56.             end
  57.             m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  58.             UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false)
  59.         end
  60.     end)
  61.     Event.Parent = NLS([==[
  62.     local Player = game:GetService("Players").LocalPlayer
  63.     local Event = script:WaitForChild("UserInput_Event")
  64.  
  65.     local Mouse = Player:GetMouse()
  66.     local UIS = game:GetService("UserInputService")
  67.     local input = function(io,a)
  68.         if a then return end
  69.         --Since InputObject is a client-side instance, we create and pass table instead
  70.         Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  71.     end
  72.     UIS.InputBegan:Connect(input)
  73.     UIS.InputEnded:Connect(input)
  74.  
  75.     local h,t
  76.     --Give the server mouse data 30 times every second, but only if the values changed
  77.     --If player is not moving their mouse, client won't fire events
  78.     while wait(1/30) do
  79.         if h~=Mouse.Hit or t~=Mouse.Target then
  80.             h,t=Mouse.Hit,Mouse.Target
  81.             Event:FireServer({isMouse=true,Target=t,Hit=h})
  82.         end
  83.     end]==],Player.Character)
  84.  
  85.     ----Sandboxed game object that allows the usage of client-side methods and services
  86.     --Real game object
  87.     local _rg = game
  88.  
  89.     --Metatable for fake service
  90.     local fsmt = {
  91.         __index = function(self,k)
  92.             local s = rawget(self,"_RealService")
  93.             if s then return s[k] end
  94.         end,
  95.         __newindex = function(self,k,v)
  96.             local s = rawget(self,"_RealService")
  97.             if s then s[k]=v end
  98.         end,
  99.         __call = function(self,...)
  100.             local s = rawget(self,"_RealService")
  101.             if s then return s(...) end
  102.         end
  103.     }
  104.     local function FakeService(t,RealService)
  105.         t._RealService = typeof(RealService)=="string" and _rg:GetService(RealService) or RealService
  106.         return setmetatable(t,fsmt)
  107.     end
  108.  
  109.     --Fake game object
  110.     local g = {
  111.         GetService = function(self,s)
  112.             return self[s]
  113.         end,
  114.         Players = FakeService({
  115.             LocalPlayer = FakeService({GetMouse=function(self)return m end},Player)
  116.         },"Players"),
  117.         UserInputService = FakeService(UIS,"UserInputService"),
  118.         ContextActionService = FakeService(CAS,"ContextActionService"),
  119.     }
  120.     rawset(g.Players,"localPlayer",g.Players.LocalPlayer)
  121.     g.service = g.GetService
  122.    
  123.     g.RunService = FakeService({
  124.         RenderStepped = _rg:GetService("RunService").Heartbeat,
  125.         BindToRenderStep = function(self,name,_,fun)
  126.             self._btrs[name] = self.Heartbeat:Connect(fun)
  127.         end,
  128.         UnbindFromRenderStep = function(self,name)
  129.             self._btrs[name]:Disconnect()
  130.         end,
  131.     },"RunService")
  132.  
  133.     setmetatable(g,{
  134.         __index=function(self,s)
  135.             return _rg:GetService(s) or typeof(_rg[s])=="function"
  136.             and function(_,...)return _rg[s](_rg,...)end or _rg[s]
  137.         end,
  138.         __newindex = fsmt.__newindex,
  139.         __call = fsmt.__call
  140.     })
  141.     --Changing owner to fake player object to support owner:GetMouse()
  142.     game,owner = g,g.Players.LocalPlayer
  143. end
  144.  
  145. -- OP Nuke Server Made By tco_riley
  146.  
  147. local ScreenGui = Instance.new("ScreenGui")
  148. local Frame = Instance.new("Frame")
  149. local Label = Instance.new("TextLabel")
  150. local NUKETHESERVER = Instance.new("TextButton")
  151.  
  152. --Properties:
  153.  
  154. ScreenGui.Parent = game.CoreGui
  155.  
  156. Frame.Parent = ScreenGui
  157. Frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  158. Frame.Position = UDim2.new(0.645735741, 0, 0.159045726, 0)
  159. Frame.Size = UDim2.new(0, 199, 0, 183)
  160. Frame.Active = true
  161. Frame.Draggable = true
  162.  
  163. Label.Name = "Label"
  164. Label.Parent = Frame
  165. Label.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  166. Label.Position = UDim2.new(-0.00502512557, 0, 0, 0)
  167. Label.Size = UDim2.new(0, 200, 0, 32)
  168. Label.Font = Enum.Font.SciFi
  169. Label.Text = "Nuke Server | Made By tco_riley"
  170. Label.TextColor3 = Color3.fromRGB(0, 0, 0)
  171. Label.TextSize = 14.000
  172.  
  173. NUKETHESERVER.Name = "NUKE THE SERVER"
  174. NUKETHESERVER.Parent = Frame
  175. NUKETHESERVER.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  176. NUKETHESERVER.Position = UDim2.new(0.105527639, 0, 0.475409806, 0)
  177. NUKETHESERVER.Size = UDim2.new(0, 156, 0, 41)
  178. NUKETHESERVER.Font = Enum.Font.SciFi
  179. NUKETHESERVER.Text = "NUKE THE SERVER"
  180. NUKETHESERVER.TextColor3 = Color3.fromRGB(0, 0, 0)
  181. NUKETHESERVER.TextSize = 14.000
  182. NUKETHESERVER.MouseButton1Down:connect(function()
  183.  
  184.     -- made by tco_riley -- nuke script
  185.     function sandbox(var,func)
  186.         local env = getfenv(func)
  187.         local newenv = setmetatable({},{
  188.             __index = function(self,k)
  189.                 if k=="script" then
  190.                     return var
  191.                 else
  192.                     return env[k]
  193.                 end
  194.             end,
  195.         })
  196.         setfenv(func,newenv)
  197.         return func
  198.     end
  199.     cors = {}
  200.     mas = Instance.new("Model",game:GetService("Lighting"))
  201.     Model0 = Instance.new("Model")
  202.     Model1 = Instance.new("Model")
  203.     Part2 = Instance.new("Part")
  204.     CylinderMesh3 = Instance.new("CylinderMesh")
  205.     ObjectValue4 = Instance.new("ObjectValue")
  206.     Part5 = Instance.new("Part")
  207.     BlockMesh6 = Instance.new("BlockMesh")
  208.     Part7 = Instance.new("Part")
  209.     CylinderMesh8 = Instance.new("CylinderMesh")
  210.     Part9 = Instance.new("Part")
  211.     CylinderMesh10 = Instance.new("CylinderMesh")
  212.     Weld11 = Instance.new("Weld")
  213.     Weld12 = Instance.new("Weld")
  214.     Part13 = Instance.new("Part")
  215.     Script14 = Instance.new("Script")
  216.     BlockMesh15 = Instance.new("BlockMesh")
  217.     Part16 = Instance.new("Part")
  218.     CylinderMesh17 = Instance.new("CylinderMesh")
  219.     Part18 = Instance.new("Part")
  220.     BlockMesh19 = Instance.new("BlockMesh")
  221.     Weld20 = Instance.new("Weld")
  222.     Weld21 = Instance.new("Weld")
  223.     Weld22 = Instance.new("Weld")
  224.     Part23 = Instance.new("Part")
  225.     BlockMesh24 = Instance.new("BlockMesh")
  226.     Part25 = Instance.new("Part")
  227.     BlockMesh26 = Instance.new("BlockMesh")
  228.     Part27 = Instance.new("Part")
  229.     CylinderMesh28 = Instance.new("CylinderMesh")
  230.     Part29 = Instance.new("Part")
  231.     BlockMesh30 = Instance.new("BlockMesh")
  232.     Part31 = Instance.new("Part")
  233.     BlockMesh32 = Instance.new("BlockMesh")
  234.     ObjectValue33 = Instance.new("ObjectValue")
  235.     VehicleSeat34 = Instance.new("VehicleSeat")
  236.     Sound35 = Instance.new("Sound")
  237.     Script36 = Instance.new("Script")
  238.     Script37 = Instance.new("Script")
  239.     BlockMesh38 = Instance.new("BlockMesh")
  240.     Script39 = Instance.new("Script")
  241.     ScreenGui40 = Instance.new("ScreenGui")
  242.     Frame41 = Instance.new("Frame")
  243.     TextButton42 = Instance.new("TextButton")
  244.     TextButton43 = Instance.new("TextButton")
  245.     TextButton44 = Instance.new("TextButton")
  246.     TextButton45 = Instance.new("TextButton")
  247.     Script46 = Instance.new("Script")
  248.     ObjectValue47 = Instance.new("ObjectValue")
  249.     Frame48 = Instance.new("Frame")
  250.     TextButton49 = Instance.new("TextButton")
  251.     Script50 = Instance.new("Script")
  252.     TextButton51 = Instance.new("TextButton")
  253.     Script52 = Instance.new("Script")
  254.     TextLabel53 = Instance.new("TextLabel")
  255.     TextButton54 = Instance.new("TextButton")
  256.     Script55 = Instance.new("Script")
  257.     TextButton56 = Instance.new("TextButton")
  258.     Script57 = Instance.new("Script")
  259.     TextLabel58 = Instance.new("TextLabel")
  260.     NumberValue59 = Instance.new("NumberValue")
  261.     NumberValue60 = Instance.new("NumberValue")
  262.     NumberValue61 = Instance.new("NumberValue")
  263.     Frame62 = Instance.new("Frame")
  264.     TextLabel63 = Instance.new("TextLabel")
  265.     TextLabel64 = Instance.new("TextLabel")
  266.     TextLabel65 = Instance.new("TextLabel")
  267.     TextLabel66 = Instance.new("TextLabel")
  268.     TextLabel67 = Instance.new("TextLabel")
  269.     TextLabel68 = Instance.new("TextLabel")
  270.     TextLabel69 = Instance.new("TextLabel")
  271.     TextLabel70 = Instance.new("TextLabel")
  272.     TextButton71 = Instance.new("TextButton")
  273.     Script72 = Instance.new("Script")
  274.     Script73 = Instance.new("Script")
  275.     NumberValue74 = Instance.new("NumberValue")
  276.     Part75 = Instance.new("Part")
  277.     BlockMesh76 = Instance.new("BlockMesh")
  278.     Part77 = Instance.new("Part")
  279.     CylinderMesh78 = Instance.new("CylinderMesh")
  280.     Part79 = Instance.new("Part")
  281.     CylinderMesh80 = Instance.new("CylinderMesh")
  282.     Script81 = Instance.new("Script")
  283.     Part82 = Instance.new("Part")
  284.     Fire83 = Instance.new("Fire")
  285.     Smoke84 = Instance.new("Smoke")
  286.     Smoke85 = Instance.new("Smoke")
  287.     Smoke86 = Instance.new("Smoke")
  288.     Smoke87 = Instance.new("Smoke")
  289.     Smoke88 = Instance.new("Smoke")
  290.     BillboardGui89 = Instance.new("BillboardGui")
  291.     ImageLabel90 = Instance.new("ImageLabel")
  292.     Script91 = Instance.new("Script")
  293.     SpecialMesh92 = Instance.new("SpecialMesh")
  294.     Script93 = Instance.new("Script")
  295.     Script94 = Instance.new("Script")
  296.     Sound95 = Instance.new("Sound")
  297.     Sky96 = Instance.new("Sky")
  298.     Part97 = Instance.new("Part")
  299.     Sound98 = Instance.new("Sound")
  300.     Sound99 = Instance.new("Sound")
  301.     SpecialMesh100 = Instance.new("SpecialMesh")
  302.     PointLight101 = Instance.new("PointLight")
  303.     Smoke102 = Instance.new("Smoke")
  304.     Sound103 = Instance.new("Sound")
  305.     Model104 = Instance.new("Model")
  306.     Part105 = Instance.new("Part")
  307.     SpecialMesh106 = Instance.new("SpecialMesh")
  308.     Part107 = Instance.new("Part")
  309.     SpecialMesh108 = Instance.new("SpecialMesh")
  310.     Smoke109 = Instance.new("Smoke")
  311.     BillboardGui110 = Instance.new("BillboardGui")
  312.     ImageLabel111 = Instance.new("ImageLabel")
  313.     Script112 = Instance.new("Script")
  314.     Smoke113 = Instance.new("Smoke")
  315.     Smoke114 = Instance.new("Smoke")
  316.     Smoke115 = Instance.new("Smoke")
  317.     StringValue116 = Instance.new("StringValue")
  318.     StringValue117 = Instance.new("StringValue")
  319.     StringValue118 = Instance.new("StringValue")
  320.     Script119 = Instance.new("Script")
  321.     Script120 = Instance.new("Script")
  322.     Sound121 = Instance.new("Sound")
  323.     Sky122 = Instance.new("Sky")
  324.     Part123 = Instance.new("Part")
  325.     BlockMesh124 = Instance.new("BlockMesh")
  326.     Part125 = Instance.new("Part")
  327.     BlockMesh126 = Instance.new("BlockMesh")
  328.     Part127 = Instance.new("Part")
  329.     BlockMesh128 = Instance.new("BlockMesh")
  330.     Part129 = Instance.new("Part")
  331.     BlockMesh130 = Instance.new("BlockMesh")
  332.     Part131 = Instance.new("Part")
  333.     BlockMesh132 = Instance.new("BlockMesh")
  334.     Part133 = Instance.new("Part")
  335.     BlockMesh134 = Instance.new("BlockMesh")
  336.     Part135 = Instance.new("Part")
  337.     BlockMesh136 = Instance.new("BlockMesh")
  338.     Part137 = Instance.new("Part")
  339.     BlockMesh138 = Instance.new("BlockMesh")
  340.     Part139 = Instance.new("Part")
  341.     BlockMesh140 = Instance.new("BlockMesh")
  342.     Part141 = Instance.new("Part")
  343.     BlockMesh142 = Instance.new("BlockMesh")
  344.     Part143 = Instance.new("Part")
  345.     BlockMesh144 = Instance.new("BlockMesh")
  346.     Part145 = Instance.new("Part")
  347.     BlockMesh146 = Instance.new("BlockMesh")
  348.     Part147 = Instance.new("Part")
  349.     BlockMesh148 = Instance.new("BlockMesh")
  350.     Part149 = Instance.new("Part")
  351.     BlockMesh150 = Instance.new("BlockMesh")
  352.     Part151 = Instance.new("Part")
  353.     BlockMesh152 = Instance.new("BlockMesh")
  354.     Part153 = Instance.new("Part")
  355.     BlockMesh154 = Instance.new("BlockMesh")
  356.     Part155 = Instance.new("Part")
  357.     BlockMesh156 = Instance.new("BlockMesh")
  358.     Part157 = Instance.new("Part")
  359.     BlockMesh158 = Instance.new("BlockMesh")
  360.     Part159 = Instance.new("Part")
  361.     CylinderMesh160 = Instance.new("CylinderMesh")
  362.     Part161 = Instance.new("Part")
  363.     BlockMesh162 = Instance.new("BlockMesh")
  364.     Part163 = Instance.new("Part")
  365.     BlockMesh164 = Instance.new("BlockMesh")
  366.     Part165 = Instance.new("Part")
  367.     BlockMesh166 = Instance.new("BlockMesh")
  368.     WedgePart167 = Instance.new("WedgePart")
  369.     SpecialMesh168 = Instance.new("SpecialMesh")
  370.     WedgePart169 = Instance.new("WedgePart")
  371.     SpecialMesh170 = Instance.new("SpecialMesh")
  372.     WedgePart171 = Instance.new("WedgePart")
  373.     SpecialMesh172 = Instance.new("SpecialMesh")
  374.     WedgePart173 = Instance.new("WedgePart")
  375.     SpecialMesh174 = Instance.new("SpecialMesh")
  376.     WedgePart175 = Instance.new("WedgePart")
  377.     SpecialMesh176 = Instance.new("SpecialMesh")
  378.     WedgePart177 = Instance.new("WedgePart")
  379.     SpecialMesh178 = Instance.new("SpecialMesh")
  380.     WedgePart179 = Instance.new("WedgePart")
  381.     SpecialMesh180 = Instance.new("SpecialMesh")
  382.     WedgePart181 = Instance.new("WedgePart")
  383.     SpecialMesh182 = Instance.new("SpecialMesh")
  384.     WedgePart183 = Instance.new("WedgePart")
  385.     SpecialMesh184 = Instance.new("SpecialMesh")
  386.     WedgePart185 = Instance.new("WedgePart")
  387.     SpecialMesh186 = Instance.new("SpecialMesh")
  388.     WedgePart187 = Instance.new("WedgePart")
  389.     SpecialMesh188 = Instance.new("SpecialMesh")
  390.     WedgePart189 = Instance.new("WedgePart")
  391.     SpecialMesh190 = Instance.new("SpecialMesh")
  392.     WedgePart191 = Instance.new("WedgePart")
  393.     SpecialMesh192 = Instance.new("SpecialMesh")
  394.     Model193 = Instance.new("Model")
  395.     Part194 = Instance.new("Part")
  396.     CylinderMesh195 = Instance.new("CylinderMesh")
  397.     Part196 = Instance.new("Part")
  398.     CylinderMesh197 = Instance.new("CylinderMesh")
  399.     Part198 = Instance.new("Part")
  400.     CylinderMesh199 = Instance.new("CylinderMesh")
  401.     Part200 = Instance.new("Part")
  402.     CylinderMesh201 = Instance.new("CylinderMesh")
  403.     Part202 = Instance.new("Part")
  404.     BlockMesh203 = Instance.new("BlockMesh")
  405.     Part204 = Instance.new("Part")
  406.     BlockMesh205 = Instance.new("BlockMesh")
  407.     Part206 = Instance.new("Part")
  408.     BlockMesh207 = Instance.new("BlockMesh")
  409.     Part208 = Instance.new("Part")
  410.     BlockMesh209 = Instance.new("BlockMesh")
  411.     Part210 = Instance.new("Part")
  412.     BlockMesh211 = Instance.new("BlockMesh")
  413.     Part212 = Instance.new("Part")
  414.     BlockMesh213 = Instance.new("BlockMesh")
  415.     Part214 = Instance.new("Part")
  416.     BlockMesh215 = Instance.new("BlockMesh")
  417.     Part216 = Instance.new("Part")
  418.     BlockMesh217 = Instance.new("BlockMesh")
  419.     Part218 = Instance.new("Part")
  420.     BlockMesh219 = Instance.new("BlockMesh")
  421.     Part220 = Instance.new("Part")
  422.     BlockMesh221 = Instance.new("BlockMesh")
  423.     Part222 = Instance.new("Part")
  424.     BlockMesh223 = Instance.new("BlockMesh")
  425.     Part224 = Instance.new("Part")
  426.     BlockMesh225 = Instance.new("BlockMesh")
  427.     Part226 = Instance.new("Part")
  428.     BlockMesh227 = Instance.new("BlockMesh")
  429.     Part228 = Instance.new("Part")
  430.     BlockMesh229 = Instance.new("BlockMesh")
  431.     Part230 = Instance.new("Part")
  432.     BlockMesh231 = Instance.new("BlockMesh")
  433.     Part232 = Instance.new("Part")
  434.     BlockMesh233 = Instance.new("BlockMesh")
  435.     Part234 = Instance.new("Part")
  436.     BlockMesh235 = Instance.new("BlockMesh")
  437.     Part236 = Instance.new("Part")
  438.     BlockMesh237 = Instance.new("BlockMesh")
  439.     Part238 = Instance.new("Part")
  440.     BlockMesh239 = Instance.new("BlockMesh")
  441.     Part240 = Instance.new("Part")
  442.     BlockMesh241 = Instance.new("BlockMesh")
  443.     Part242 = Instance.new("Part")
  444.     BlockMesh243 = Instance.new("BlockMesh")
  445.     Part244 = Instance.new("Part")
  446.     BlockMesh245 = Instance.new("BlockMesh")
  447.     Part246 = Instance.new("Part")
  448.     BlockMesh247 = Instance.new("BlockMesh")
  449.     Part248 = Instance.new("Part")
  450.     CylinderMesh249 = Instance.new("CylinderMesh")
  451.     Part250 = Instance.new("Part")
  452.     BlockMesh251 = Instance.new("BlockMesh")
  453.     Part252 = Instance.new("Part")
  454.     BlockMesh253 = Instance.new("BlockMesh")
  455.     Part254 = Instance.new("Part")
  456.     BlockMesh255 = Instance.new("BlockMesh")
  457.     Part256 = Instance.new("Part")
  458.     BlockMesh257 = Instance.new("BlockMesh")
  459.     Part258 = Instance.new("Part")
  460.     BlockMesh259 = Instance.new("BlockMesh")
  461.     Part260 = Instance.new("Part")
  462.     BlockMesh261 = Instance.new("BlockMesh")
  463.     Part262 = Instance.new("Part")
  464.     BlockMesh263 = Instance.new("BlockMesh")
  465.     Part264 = Instance.new("Part")
  466.     BlockMesh265 = Instance.new("BlockMesh")
  467.     Part266 = Instance.new("Part")
  468.     BlockMesh267 = Instance.new("BlockMesh")
  469.     Part268 = Instance.new("Part")
  470.     BlockMesh269 = Instance.new("BlockMesh")
  471.     Part270 = Instance.new("Part")
  472.     BlockMesh271 = Instance.new("BlockMesh")
  473.     Part272 = Instance.new("Part")
  474.     BlockMesh273 = Instance.new("BlockMesh")
  475.     Part274 = Instance.new("Part")
  476.     BlockMesh275 = Instance.new("BlockMesh")
  477.     Part276 = Instance.new("Part")
  478.     BlockMesh277 = Instance.new("BlockMesh")
  479.     Part278 = Instance.new("Part")
  480.     BlockMesh279 = Instance.new("BlockMesh")
  481.     Part280 = Instance.new("Part")
  482.     BlockMesh281 = Instance.new("BlockMesh")
  483.     Part282 = Instance.new("Part")
  484.     BlockMesh283 = Instance.new("BlockMesh")
  485.     Part284 = Instance.new("Part")
  486.     BlockMesh285 = Instance.new("BlockMesh")
  487.     Part286 = Instance.new("Part")
  488.     BlockMesh287 = Instance.new("BlockMesh")
  489.     Part288 = Instance.new("Part")
  490.     BlockMesh289 = Instance.new("BlockMesh")
  491.     Part290 = Instance.new("Part")
  492.     BlockMesh291 = Instance.new("BlockMesh")
  493.     Part292 = Instance.new("Part")
  494.     BlockMesh293 = Instance.new("BlockMesh")
  495.     WedgePart294 = Instance.new("WedgePart")
  496.     SpecialMesh295 = Instance.new("SpecialMesh")
  497.     WedgePart296 = Instance.new("WedgePart")
  498.     SpecialMesh297 = Instance.new("SpecialMesh")
  499.     WedgePart298 = Instance.new("WedgePart")
  500.     SpecialMesh299 = Instance.new("SpecialMesh")
  501.     WedgePart300 = Instance.new("WedgePart")
  502.     SpecialMesh301 = Instance.new("SpecialMesh")
  503.     VehicleSeat302 = Instance.new("VehicleSeat")
  504.     WedgePart303 = Instance.new("WedgePart")
  505.     SpecialMesh304 = Instance.new("SpecialMesh")
  506.     WedgePart305 = Instance.new("WedgePart")
  507.     SpecialMesh306 = Instance.new("SpecialMesh")
  508.     WedgePart307 = Instance.new("WedgePart")
  509.     SpecialMesh308 = Instance.new("SpecialMesh")
  510.     WedgePart309 = Instance.new("WedgePart")
  511.     SpecialMesh310 = Instance.new("SpecialMesh")
  512.     WedgePart311 = Instance.new("WedgePart")
  513.     SpecialMesh312 = Instance.new("SpecialMesh")
  514.     WedgePart313 = Instance.new("WedgePart")
  515.     SpecialMesh314 = Instance.new("SpecialMesh")
  516.     WedgePart315 = Instance.new("WedgePart")
  517.     SpecialMesh316 = Instance.new("SpecialMesh")
  518.     WedgePart317 = Instance.new("WedgePart")
  519.     SpecialMesh318 = Instance.new("SpecialMesh")
  520.     WedgePart319 = Instance.new("WedgePart")
  521.     SpecialMesh320 = Instance.new("SpecialMesh")
  522.     WedgePart321 = Instance.new("WedgePart")
  523.     SpecialMesh322 = Instance.new("SpecialMesh")
  524.     WedgePart323 = Instance.new("WedgePart")
  525.     SpecialMesh324 = Instance.new("SpecialMesh")
  526.     WedgePart325 = Instance.new("WedgePart")
  527.     SpecialMesh326 = Instance.new("SpecialMesh")
  528.     WedgePart327 = Instance.new("WedgePart")
  529.     SpecialMesh328 = Instance.new("SpecialMesh")
  530.     WedgePart329 = Instance.new("WedgePart")
  531.     SpecialMesh330 = Instance.new("SpecialMesh")
  532.     WedgePart331 = Instance.new("WedgePart")
  533.     SpecialMesh332 = Instance.new("SpecialMesh")
  534.     WedgePart333 = Instance.new("WedgePart")
  535.     SpecialMesh334 = Instance.new("SpecialMesh")
  536.     WedgePart335 = Instance.new("WedgePart")
  537.     SpecialMesh336 = Instance.new("SpecialMesh")
  538.     WedgePart337 = Instance.new("WedgePart")
  539.     SpecialMesh338 = Instance.new("SpecialMesh")
  540.     Part339 = Instance.new("Part")
  541.     BlockMesh340 = Instance.new("BlockMesh")
  542.     Part341 = Instance.new("Part")
  543.     BlockMesh342 = Instance.new("BlockMesh")
  544.     Part343 = Instance.new("Part")
  545.     BlockMesh344 = Instance.new("BlockMesh")
  546.     Part345 = Instance.new("Part")
  547.     BlockMesh346 = Instance.new("BlockMesh")
  548.     Part347 = Instance.new("Part")
  549.     BlockMesh348 = Instance.new("BlockMesh")
  550.     Part349 = Instance.new("Part")
  551.     BlockMesh350 = Instance.new("BlockMesh")
  552.     Part351 = Instance.new("Part")
  553.     BlockMesh352 = Instance.new("BlockMesh")
  554.     Part353 = Instance.new("Part")
  555.     BlockMesh354 = Instance.new("BlockMesh")
  556.     Part355 = Instance.new("Part")
  557.     BlockMesh356 = Instance.new("BlockMesh")
  558.     Part357 = Instance.new("Part")
  559.     BlockMesh358 = Instance.new("BlockMesh")
  560.     Part359 = Instance.new("Part")
  561.     BlockMesh360 = Instance.new("BlockMesh")
  562.     Part361 = Instance.new("Part")
  563.     BlockMesh362 = Instance.new("BlockMesh")
  564.     Part363 = Instance.new("Part")
  565.     BlockMesh364 = Instance.new("BlockMesh")
  566.     Part365 = Instance.new("Part")
  567.     BlockMesh366 = Instance.new("BlockMesh")
  568.     Part367 = Instance.new("Part")
  569.     BlockMesh368 = Instance.new("BlockMesh")
  570.     Part369 = Instance.new("Part")
  571.     BlockMesh370 = Instance.new("BlockMesh")
  572.     Part371 = Instance.new("Part")
  573.     CylinderMesh372 = Instance.new("CylinderMesh")
  574.     Part373 = Instance.new("Part")
  575.     BlockMesh374 = Instance.new("BlockMesh")
  576.     Part375 = Instance.new("Part")
  577.     BlockMesh376 = Instance.new("BlockMesh")
  578.     Part377 = Instance.new("Part")
  579.     BlockMesh378 = Instance.new("BlockMesh")
  580.     Part379 = Instance.new("Part")
  581.     BlockMesh380 = Instance.new("BlockMesh")
  582.     Part381 = Instance.new("Part")
  583.     CylinderMesh382 = Instance.new("CylinderMesh")
  584.     Part383 = Instance.new("Part")
  585.     CylinderMesh384 = Instance.new("CylinderMesh")
  586.     Part385 = Instance.new("Part")
  587.     CylinderMesh386 = Instance.new("CylinderMesh")
  588.     WedgePart387 = Instance.new("WedgePart")
  589.     SpecialMesh388 = Instance.new("SpecialMesh")
  590.     WedgePart389 = Instance.new("WedgePart")
  591.     SpecialMesh390 = Instance.new("SpecialMesh")
  592.     WedgePart391 = Instance.new("WedgePart")
  593.     SpecialMesh392 = Instance.new("SpecialMesh")
  594.     WedgePart393 = Instance.new("WedgePart")
  595.     SpecialMesh394 = Instance.new("SpecialMesh")
  596.     WedgePart395 = Instance.new("WedgePart")
  597.     SpecialMesh396 = Instance.new("SpecialMesh")
  598.     WedgePart397 = Instance.new("WedgePart")
  599.     SpecialMesh398 = Instance.new("SpecialMesh")
  600.     WedgePart399 = Instance.new("WedgePart")
  601.     SpecialMesh400 = Instance.new("SpecialMesh")
  602.     WedgePart401 = Instance.new("WedgePart")
  603.     SpecialMesh402 = Instance.new("SpecialMesh")
  604.     WedgePart403 = Instance.new("WedgePart")
  605.     SpecialMesh404 = Instance.new("SpecialMesh")
  606.     WedgePart405 = Instance.new("WedgePart")
  607.     SpecialMesh406 = Instance.new("SpecialMesh")
  608.     WedgePart407 = Instance.new("WedgePart")
  609.     SpecialMesh408 = Instance.new("SpecialMesh")
  610.     Part409 = Instance.new("Part")
  611.     BlockMesh410 = Instance.new("BlockMesh")
  612.     Part411 = Instance.new("Part")
  613.     BlockMesh412 = Instance.new("BlockMesh")
  614.     Part413 = Instance.new("Part")
  615.     BlockMesh414 = Instance.new("BlockMesh")
  616.     Part415 = Instance.new("Part")
  617.     BlockMesh416 = Instance.new("BlockMesh")
  618.     Part417 = Instance.new("Part")
  619.     CylinderMesh418 = Instance.new("CylinderMesh")
  620.     Part419 = Instance.new("Part")
  621.     CylinderMesh420 = Instance.new("CylinderMesh")
  622.     Part421 = Instance.new("Part")
  623.     CylinderMesh422 = Instance.new("CylinderMesh")
  624.     Part423 = Instance.new("Part")
  625.     CylinderMesh424 = Instance.new("CylinderMesh")
  626.     Part425 = Instance.new("Part")
  627.     CylinderMesh426 = Instance.new("CylinderMesh")
  628.     Part427 = Instance.new("Part")
  629.     BlockMesh428 = Instance.new("BlockMesh")
  630.     WedgePart429 = Instance.new("WedgePart")
  631.     SpecialMesh430 = Instance.new("SpecialMesh")
  632.     WedgePart431 = Instance.new("WedgePart")
  633.     SpecialMesh432 = Instance.new("SpecialMesh")
  634.     Part433 = Instance.new("Part")
  635.     CylinderMesh434 = Instance.new("CylinderMesh")
  636.     Part435 = Instance.new("Part")
  637.     CylinderMesh436 = Instance.new("CylinderMesh")
  638.     Part437 = Instance.new("Part")
  639.     CylinderMesh438 = Instance.new("CylinderMesh")
  640.     Part439 = Instance.new("Part")
  641.     CylinderMesh440 = Instance.new("CylinderMesh")
  642.     Part441 = Instance.new("Part")
  643.     CylinderMesh442 = Instance.new("CylinderMesh")
  644.     Part443 = Instance.new("Part")
  645.     CylinderMesh444 = Instance.new("CylinderMesh")
  646.     Part445 = Instance.new("Part")
  647.     CylinderMesh446 = Instance.new("CylinderMesh")
  648.     Part447 = Instance.new("Part")
  649.     CylinderMesh448 = Instance.new("CylinderMesh")
  650.     Part449 = Instance.new("Part")
  651.     CylinderMesh450 = Instance.new("CylinderMesh")
  652.     Part451 = Instance.new("Part")
  653.     CylinderMesh452 = Instance.new("CylinderMesh")
  654.     Model0.Name = "MAZ-450 Scud Nuclear"
  655.     Model0.Parent = mas
  656.     Model1.Name = "turret"
  657.     Model1.Parent = Model0
  658.     Part2.Parent = Model1
  659.     Part2.Material = Enum.Material.Metal
  660.     Part2.BrickColor = BrickColor.new("Grime")
  661.     Part2.Rotation = Vector3.new(0, 90, 0)
  662.     Part2.FormFactor = Enum.FormFactor.Plate
  663.     Part2.Size = Vector3.new(2, 0.400000006, 3)
  664.     Part2.CFrame = CFrame.new(12.8898954, 10.3001108, 38.9598312, 3.06876391e-05, 6.20403944e-06, 1, -3.31463598e-05, 1, -6.68033636e-06, -1, -2.63205093e-05, 2.09769823e-05)
  665.     Part2.BackSurface = Enum.SurfaceType.Weld
  666.     Part2.BottomSurface = Enum.SurfaceType.Smooth
  667.     Part2.FrontSurface = Enum.SurfaceType.Weld
  668.     Part2.LeftSurface = Enum.SurfaceType.Weld
  669.     Part2.RightSurface = Enum.SurfaceType.Weld
  670.     Part2.TopSurface = Enum.SurfaceType.Weld
  671.     Part2.Color = Color3.new(0.498039, 0.556863, 0.392157)
  672.     Part2.Position = Vector3.new(12.8898954, 10.3001108, 38.9598312)
  673.     Part2.Orientation = Vector3.new(0, 90, 0)
  674.     Part2.Color = Color3.new(0.498039, 0.556863, 0.392157)
  675.     CylinderMesh3.Parent = Part2
  676.     CylinderMesh3.Scale = Vector3.new(1.79999995, 1, 2)
  677.     CylinderMesh3.Scale = Vector3.new(1.79999995, 1, 2)
  678.     ObjectValue4.Name = "WER"
  679.     ObjectValue4.Parent = Model1
  680.     ObjectValue4.Value = Weld12
  681.     Part5.Parent = Model1
  682.     Part5.Material = Enum.Material.Metal
  683.     Part5.BrickColor = BrickColor.new("Grime")
  684.     Part5.Rotation = Vector3.new(-90, 0, -180)
  685.     Part5.FormFactor = Enum.FormFactor.Custom
  686.     Part5.Size = Vector3.new(3, 0.400000006, 0.399999976)
  687.     Part5.CFrame = CFrame.new(12.8898659, 10.7001324, 40.1598129, -1, 5.64619597e-07, 6.20732499e-06, 6.68464554e-06, 1.11793124e-05, 1, 1.02754129e-05, 1, -4.35367065e-06)
  688.     Part5.BackSurface = Enum.SurfaceType.Weld
  689.     Part5.BottomSurface = Enum.SurfaceType.Smooth
  690.     Part5.FrontSurface = Enum.SurfaceType.Weld
  691.     Part5.LeftSurface = Enum.SurfaceType.Weld
  692.     Part5.RightSurface = Enum.SurfaceType.Weld
  693.     Part5.TopSurface = Enum.SurfaceType.Weld
  694.     Part5.Color = Color3.new(0.498039, 0.556863, 0.392157)
  695.     Part5.Position = Vector3.new(12.8898659, 10.7001324, 40.1598129)
  696.     Part5.Orientation = Vector3.new(-90, -180, 0)
  697.     Part5.Color = Color3.new(0.498039, 0.556863, 0.392157)
  698.     BlockMesh6.Parent = Part5
  699.     Part7.Parent = Model1
  700.     Part7.Material = Enum.Material.Metal
  701.     Part7.BrickColor = BrickColor.new("Grime")
  702.     Part7.Rotation = Vector3.new(90, 0, -90)
  703.     Part7.FormFactor = Enum.FormFactor.Symmetric
  704.     Part7.Size = Vector3.new(1, 1, 1)
  705.     Part7.CFrame = CFrame.new(13.8899441, 12.0000706, 38.9595375, 4.72349166e-05, 1, -3.85977728e-06, -4.47773564e-05, -4.33497553e-06, -1, -1, 3.75242453e-05, 3.79514786e-05)
  706.     Part7.BottomSurface = Enum.SurfaceType.Weld
  707.     Part7.TopSurface = Enum.SurfaceType.Weld
  708.     Part7.Color = Color3.new(0.498039, 0.556863, 0.392157)
  709.     Part7.Position = Vector3.new(13.8899441, 12.0000706, 38.9595375)
  710.     Part7.Orientation = Vector3.new(90, 90, 0)
  711.     Part7.Color = Color3.new(0.498039, 0.556863, 0.392157)
  712.     CylinderMesh8.Parent = Part7
  713.     CylinderMesh8.Scale = Vector3.new(2, 1, 1.79999995)
  714.     CylinderMesh8.Scale = Vector3.new(2, 1, 1.79999995)
  715.     Part9.Name = "Connector"
  716.     Part9.Parent = Model1
  717.     Part9.Material = Enum.Material.Metal
  718.     Part9.BrickColor = BrickColor.new("Grime")
  719.     Part9.Rotation = Vector3.new(0, 90, 0)
  720.     Part9.CanCollide = false
  721.     Part9.FormFactor = Enum.FormFactor.Symmetric
  722.     Part9.Size = Vector3.new(2, 2, 3)
  723.     Part9.CFrame = CFrame.new(12.8898888, 9.10011101, 38.9598045, 1.50947981e-05, 5.43772376e-06, 1, -2.21862356e-05, 1, -5.9147028e-06, -1, -1.53604906e-05, 5.38406312e-06)
  724.     Part9.BackSurface = Enum.SurfaceType.Weld
  725.     Part9.BottomSurface = Enum.SurfaceType.Weld
  726.     Part9.LeftSurface = Enum.SurfaceType.Weld
  727.     Part9.TopSurface = Enum.SurfaceType.Weld
  728.     Part9.Color = Color3.new(0.498039, 0.556863, 0.392157)
  729.     Part9.Position = Vector3.new(12.8898888, 9.10011101, 38.9598045)
  730.     Part9.Orientation = Vector3.new(0, 90, 0)
  731.     Part9.Color = Color3.new(0.498039, 0.556863, 0.392157)
  732.     CylinderMesh10.Parent = Part9
  733.     CylinderMesh10.Scale = Vector3.new(1.5, 1, 2)
  734.     CylinderMesh10.Scale = Vector3.new(1.5, 1, 2)
  735.     Weld11.Parent = Part9
  736.     Weld11.C0 = CFrame.new(0, -1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  737.     Weld12.Parent = Part9
  738.     Weld12.C0 = CFrame.new(0, -1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  739.     Weld12.Part0 = Part9
  740.     Weld12.Part1 = Part79
  741.     Part13.Name = "Wpart"
  742.     Part13.Parent = Model1
  743.     Part13.Material = Enum.Material.Metal
  744.     Part13.BrickColor = BrickColor.new("Grime")
  745.     Part13.Rotation = Vector3.new(0, 90, 0)
  746.     Part13.FormFactor = Enum.FormFactor.Symmetric
  747.     Part13.Size = Vector3.new(2, 1, 2)
  748.     Part13.CFrame = CFrame.new(14.3899441, 12.0000477, 38.9595566, 1.52723678e-05, 5.4290017e-06, 1, -2.23110437e-05, 1, -5.90597438e-06, -1, -1.54852969e-05, 5.56163559e-06)
  749.     Part13.BottomSurface = Enum.SurfaceType.Smooth
  750.     Part13.LeftSurface = Enum.SurfaceType.Weld
  751.     Part13.RightSurface = Enum.SurfaceType.Weld
  752.     Part13.TopSurface = Enum.SurfaceType.Smooth
  753.     Part13.Color = Color3.new(0.498039, 0.556863, 0.392157)
  754.     Part13.Position = Vector3.new(14.3899441, 12.0000477, 38.9595566)
  755.     Part13.Orientation = Vector3.new(0, 90, 0)
  756.     Part13.Color = Color3.new(0.498039, 0.556863, 0.392157)
  757.     Script14.Parent = Part13
  758.     table.insert(cors,sandbox(Script14,function()
  759.         b = script.Parent
  760.         c = script.Parent.Parent.Connector2
  761.  
  762.         local weld = Instance.new("Weld")
  763.  
  764.         weld.Part0 = c
  765.         weld.Part1 = b
  766.  
  767.         weld.C0 = CFrame.new(0, 0, 1.5)
  768.  
  769.         weld.Parent = c
  770.  
  771.         script.Parent.Parent.WER2.Value = weld
  772.     end))
  773.     BlockMesh15.Parent = Part13
  774.     Part16.Parent = Model1
  775.     Part16.Material = Enum.Material.Metal
  776.     Part16.BrickColor = BrickColor.new("Grime")
  777.     Part16.Rotation = Vector3.new(90, 0, -90)
  778.     Part16.FormFactor = Enum.FormFactor.Symmetric
  779.     Part16.Size = Vector3.new(1, 1, 1)
  780.     Part16.CFrame = CFrame.new(14.8899441, 12.0000582, 38.9595566, 3.124254e-05, 1, -4.64493451e-06, -3.3536413e-05, -5.12120005e-06, -1, -1, 2.15318451e-05, 2.67105879e-05)
  781.     Part16.BottomSurface = Enum.SurfaceType.Weld
  782.     Part16.TopSurface = Enum.SurfaceType.Weld
  783.     Part16.Color = Color3.new(0.498039, 0.556863, 0.392157)
  784.     Part16.Position = Vector3.new(14.8899441, 12.0000582, 38.9595566)
  785.     Part16.Orientation = Vector3.new(90, 90, 0)
  786.     Part16.Color = Color3.new(0.498039, 0.556863, 0.392157)
  787.     CylinderMesh17.Parent = Part16
  788.     CylinderMesh17.Scale = Vector3.new(1.89999998, 1, 1.60000002)
  789.     CylinderMesh17.Scale = Vector3.new(1.89999998, 1, 1.60000002)
  790.     Part18.Name = "Connector2"
  791.     Part18.Parent = Model1
  792.     Part18.Material = Enum.Material.Metal
  793.     Part18.BrickColor = BrickColor.new("Grime")
  794.     Part18.Rotation = Vector3.new(0, 90, 0)
  795.     Part18.FormFactor = Enum.FormFactor.Symmetric
  796.     Part18.Size = Vector3.new(1, 1, 1)
  797.     Part18.CFrame = CFrame.new(12.8899441, 12.0000563, 38.959549, 1.52723678e-05, 5.4290017e-06, 1, -2.23110437e-05, 1, -5.90597438e-06, -1, -1.54852969e-05, 5.56163559e-06)
  798.     Part18.BottomSurface = Enum.SurfaceType.Weld
  799.     Part18.TopSurface = Enum.SurfaceType.Weld
  800.     Part18.Color = Color3.new(0.498039, 0.556863, 0.392157)
  801.     Part18.Position = Vector3.new(12.8899441, 12.0000563, 38.959549)
  802.     Part18.Orientation = Vector3.new(0, 90, 0)
  803.     Part18.Color = Color3.new(0.498039, 0.556863, 0.392157)
  804.     BlockMesh19.Parent = Part18
  805.     Weld20.Parent = Part18
  806.     Weld20.C0 = CFrame.new(0, 0, 1.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  807.     Weld21.Parent = Part18
  808.     Weld21.C0 = CFrame.new(0, 0, 1.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  809.     Weld22.Parent = Part18
  810.     Weld22.C0 = CFrame.new(0, 0, 1.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  811.     Weld22.Part0 = Part18
  812.     Weld22.Part1 = Part13
  813.     Part23.Parent = Model1
  814.     Part23.Material = Enum.Material.Metal
  815.     Part23.BrickColor = BrickColor.new("Grime")
  816.     Part23.Rotation = Vector3.new(-90, 0, 180)
  817.     Part23.FormFactor = Enum.FormFactor.Plate
  818.     Part23.Size = Vector3.new(1, 0.400000006, 1.20000005)
  819.     Part23.CFrame = CFrame.new(13.8899651, 11.5000286, 37.7595558, -1, -3.11981494e-05, 4.64657705e-06, 5.12284532e-06, 3.350517e-05, 1, -2.14874563e-05, 1, -2.66793468e-05)
  820.     Part23.BackSurface = Enum.SurfaceType.Weld
  821.     Part23.BottomSurface = Enum.SurfaceType.Weld
  822.     Part23.FrontSurface = Enum.SurfaceType.Weld
  823.     Part23.LeftSurface = Enum.SurfaceType.Weld
  824.     Part23.RightSurface = Enum.SurfaceType.Weld
  825.     Part23.TopSurface = Enum.SurfaceType.Smooth
  826.     Part23.Color = Color3.new(0.498039, 0.556863, 0.392157)
  827.     Part23.Position = Vector3.new(13.8899651, 11.5000286, 37.7595558)
  828.     Part23.Orientation = Vector3.new(-90, 180, 0)
  829.     Part23.Color = Color3.new(0.498039, 0.556863, 0.392157)
  830.     BlockMesh24.Parent = Part23
  831.     Part25.Parent = Model1
  832.     Part25.Material = Enum.Material.Metal
  833.     Part25.BrickColor = BrickColor.new("Grime")
  834.     Part25.Rotation = Vector3.new(-90, 0, 180)
  835.     Part25.FormFactor = Enum.FormFactor.Custom
  836.     Part25.Size = Vector3.new(3, 0.400000006, 0.399999976)
  837.     Part25.CFrame = CFrame.new(12.8899288, 10.7000723, 37.7598228, -1, -1.52280863e-05, 5.43084116e-06, 5.90815625e-06, -7.7088643e-08, 1, -5.51722951e-06, 1, 6.90283105e-06)
  838.     Part25.BackSurface = Enum.SurfaceType.Weld
  839.     Part25.BottomSurface = Enum.SurfaceType.Weld
  840.     Part25.FrontSurface = Enum.SurfaceType.Weld
  841.     Part25.LeftSurface = Enum.SurfaceType.Weld
  842.     Part25.RightSurface = Enum.SurfaceType.Weld
  843.     Part25.TopSurface = Enum.SurfaceType.Smooth
  844.     Part25.Color = Color3.new(0.498039, 0.556863, 0.392157)
  845.     Part25.Position = Vector3.new(12.8899288, 10.7000723, 37.7598228)
  846.     Part25.Orientation = Vector3.new(-90, 180, 0)
  847.     Part25.Color = Color3.new(0.498039, 0.556863, 0.392157)
  848.     BlockMesh26.Parent = Part25
  849.     Part27.Parent = Model1
  850.     Part27.Material = Enum.Material.Metal
  851.     Part27.BrickColor = BrickColor.new("Grime")
  852.     Part27.Rotation = Vector3.new(90, 0, 0)
  853.     Part27.FormFactor = Enum.FormFactor.Plate
  854.     Part27.Size = Vector3.new(1, 0.400000006, 1)
  855.     Part27.CFrame = CFrame.new(13.8899403, 11.6000576, 37.3598328, 1, -1.52945649e-05, -5.42817907e-06, -5.90515128e-06, 2.23266634e-05, -1, 5.5838309e-06, 1, 1.55009166e-05)
  856.     Part27.BackSurface = Enum.SurfaceType.Weld
  857.     Part27.BottomSurface = Enum.SurfaceType.Smooth
  858.     Part27.FrontSurface = Enum.SurfaceType.Weld
  859.     Part27.LeftSurface = Enum.SurfaceType.Weld
  860.     Part27.RightSurface = Enum.SurfaceType.Weld
  861.     Part27.TopSurface = Enum.SurfaceType.Weld
  862.     Part27.Color = Color3.new(0.498039, 0.556863, 0.392157)
  863.     Part27.Position = Vector3.new(13.8899403, 11.6000576, 37.3598328)
  864.     Part27.Orientation = Vector3.new(90, 0, 0)
  865.     Part27.Color = Color3.new(0.498039, 0.556863, 0.392157)
  866.     CylinderMesh28.Parent = Part27
  867.     CylinderMesh28.Offset = Vector3.new(0, 1.60000002, 0)
  868.     CylinderMesh28.Scale = Vector3.new(0.800000012, 8, 2)
  869.     CylinderMesh28.Scale = Vector3.new(0.800000012, 8, 2)
  870.     Part29.Parent = Model1
  871.     Part29.Material = Enum.Material.Metal
  872.     Part29.BrickColor = BrickColor.new("Grime")
  873.     Part29.Rotation = Vector3.new(180, 0, -180)
  874.     Part29.FormFactor = Enum.FormFactor.Plate
  875.     Part29.Size = Vector3.new(1, 0.800000012, 1)
  876.     Part29.CFrame = CFrame.new(13.8901453, 7.60008192, 38.9598312, -1, 6.80900757e-06, -1.28170986e-05, 7.24961728e-06, 1, -3.05093963e-05, 2.17730885e-05, -2.42142978e-05, -1)
  877.     Part29.BackSurface = Enum.SurfaceType.Weld
  878.     Part29.BottomSurface = Enum.SurfaceType.Weld
  879.     Part29.FrontSurface = Enum.SurfaceType.Weld
  880.     Part29.LeftSurface = Enum.SurfaceType.Weld
  881.     Part29.RightSurface = Enum.SurfaceType.Weld
  882.     Part29.TopSurface = Enum.SurfaceType.Smooth
  883.     Part29.Color = Color3.new(0.498039, 0.556863, 0.392157)
  884.     Part29.Position = Vector3.new(13.8901453, 7.60008192, 38.9598312)
  885.     Part29.Orientation = Vector3.new(0, -180, 0)
  886.     Part29.Color = Color3.new(0.498039, 0.556863, 0.392157)
  887.     BlockMesh30.Parent = Part29
  888.     Part31.Parent = Model1
  889.     Part31.Material = Enum.Material.Metal
  890.     Part31.BrickColor = BrickColor.new("Grime")
  891.     Part31.FormFactor = Enum.FormFactor.Plate
  892.     Part31.Size = Vector3.new(1, 0.800000012, 1)
  893.     Part31.CFrame = CFrame.new(11.8901434, 7.60010433, 38.9599037, 1, 6.32152023e-06, 2.89539616e-06, -6.78039805e-06, 1, 3.84974592e-05, -1.22286801e-05, -3.19370556e-05, 1)
  894.     Part31.BackSurface = Enum.SurfaceType.Weld
  895.     Part31.BottomSurface = Enum.SurfaceType.Weld
  896.     Part31.FrontSurface = Enum.SurfaceType.Weld
  897.     Part31.LeftSurface = Enum.SurfaceType.Weld
  898.     Part31.RightSurface = Enum.SurfaceType.Weld
  899.     Part31.TopSurface = Enum.SurfaceType.Smooth
  900.     Part31.Color = Color3.new(0.498039, 0.556863, 0.392157)
  901.     Part31.Position = Vector3.new(11.8901434, 7.60010433, 38.9599037)
  902.     Part31.Color = Color3.new(0.498039, 0.556863, 0.392157)
  903.     BlockMesh32.Parent = Part31
  904.     ObjectValue33.Name = "WER2"
  905.     ObjectValue33.Parent = Model1
  906.     ObjectValue33.Value = Weld22
  907.     VehicleSeat34.Parent = Model1
  908.     VehicleSeat34.BrickColor = BrickColor.new("Really red")
  909.     VehicleSeat34.Rotation = Vector3.new(0, 90, 0)
  910.     VehicleSeat34.Size = Vector3.new(2, 0.400000006, 2)
  911.     VehicleSeat34.CFrame = CFrame.new(-23.1100998, 4.80056763, 33.6601639, -1.67083635e-05, 6.97150199e-06, 1, -2.32027105e-07, 0.999991715, -7.13226291e-06, -1.00000143, 1.9876245e-06, -2.00193008e-05)
  912.     VehicleSeat34.TopSurface = Enum.SurfaceType.Weld
  913.     VehicleSeat34.HeadsUpDisplay = false
  914.     VehicleSeat34.MaxSpeed = 50
  915.     VehicleSeat34.Color = Color3.new(1, 0, 0)
  916.     VehicleSeat34.Position = Vector3.new(-23.1100998, 4.80056763, 33.6601639)
  917.     VehicleSeat34.Orientation = Vector3.new(0, 90, 0)
  918.     VehicleSeat34.Color = Color3.new(1, 0, 0)
  919.     Sound35.Name = "Swiv"
  920.     Sound35.Parent = VehicleSeat34
  921.     Sound35.Pitch = 0.69999998807907
  922.     Sound35.SoundId = "http://www.roblox.com/asset/?id=31245465"
  923.     Sound35.Volume = 0
  924.     Sound35.PlayOnRemove = true
  925.     Script36.Name = "Control"
  926.     Script36.Parent = VehicleSeat34
  927.     table.insert(cors,sandbox(Script36,function()
  928.         while true do
  929.             wait()
  930.             if script.Parent.Steer == 2 then
  931.                 script.Parent.Swiv:play()
  932.                 script.Parent.Parent.WER.Value.C0 = script.Parent.Parent.WER.Value.C0 * CFrame.fromEulerAnglesXYZ(0,0.01,0)
  933.             elseif script.Parent.Steer == -2 then
  934.                 script.Parent.Swiv:play()
  935.                 script.Parent.Parent.WER.Value.C0 = script.Parent.Parent.WER.Value.C0 * CFrame.fromEulerAnglesXYZ(0,-0.01,0)
  936.             elseif script.Parent.Steer == 0 and script.Parent.Throttle == 0 then
  937.                 script.Parent.Swiv:pause()
  938.             end
  939.         end
  940.  
  941.     end))
  942.     Script37.Name = "Control2"
  943.     Script37.Parent = VehicleSeat34
  944.     table.insert(cors,sandbox(Script37,function()
  945.         angle = 0
  946.  
  947.         while true do
  948.             wait()
  949.             if script.Parent.Throttle == 1 and angle < 160 then
  950.                 script.Parent.Swiv:play()
  951.                 angle = angle + 1
  952.                 script.Parent.Angle.Value = angle
  953.                 script.Parent.Parent.WER2.Value.C0 = script.Parent.Parent.WER2.Value.C0 * CFrame.fromEulerAnglesXYZ(-0.01,0,0)
  954.             elseif script.Parent.Throttle == -1 and angle > 0 then
  955.                 script.Parent.Swiv:play()
  956.                 angle = angle - 1
  957.                 script.Parent.Angle.Value = angle
  958.                 script.Parent.Parent.WER2.Value.C0 = script.Parent.Parent.WER2.Value.C0 * CFrame.fromEulerAnglesXYZ(0.01,0,0)
  959.             end
  960.         end
  961.  
  962.     end))
  963.     BlockMesh38.Parent = VehicleSeat34
  964.     Script39.Name = "Pickup"
  965.     Script39.Parent = VehicleSeat34
  966.     table.insert(cors,sandbox(Script39,function()
  967.         script.Parent.ChildAdded:connect(function(w)
  968.             print("ChildAdded")
  969.             if w.className=="Weld" then
  970.                 print("IsAWeld")
  971.                 if w.Name=="SeatWeld" then
  972.                     print("IsASeatWeld")
  973.                     if w.Part1.Parent:findFirstChild("Humanoid")~=nil then
  974.                         print("IsAHumanoid")
  975.                         pl=game.Players:GetPlayerFromCharacter(w.Part1.Parent)
  976.                         if pl~=nil then
  977.                             print("IsAPlayer")
  978.                             if pl.PlayerGui:findFirstChild("VehicleGui")~=nil then
  979.                                 print("found vehicle gui - deleting")
  980.                                 pl.PlayerGui:findFirstChild("VehicleGui").Parent=nil
  981.                                 print("deleted")
  982.                             else
  983.                                 print("no gui found - adding")
  984.                                 newgui=script.Parent.VehicleGui:clone()
  985.                                 newgui.Parent=pl.PlayerGui
  986.                                 newgui.Vehicle.Value=script.Parent.Parent
  987.                                 print("added")
  988.                             end
  989.                         end
  990.                     end
  991.                 end
  992.             end
  993.         end)
  994.  
  995.         script.Parent.ChildRemoved:connect(function(w)
  996.             print("ChildRemoved")
  997.             if w.className=="Weld" then
  998.                 print("IsAWeld")
  999.                 if w.Name=="SeatWeld" then
  1000.                     print("IsASeatWeld")
  1001.                     if w.Part1.Parent:findFirstChild("Humanoid")~=nil then
  1002.                         print("IsAHumanoid")
  1003.                         pl=game.Players:GetPlayerFromCharacter(w.Part1.Parent)
  1004.                         if pl~=nil then
  1005.                             print("IsAPlayer")
  1006.                             if pl.PlayerGui:findFirstChild("VehicleGui")~=nil then
  1007.                                 print("found vehicle gui - deleting")
  1008.                                 pl.PlayerGui:findFirstChild("VehicleGui").Parent=nil
  1009.                                 print("deleted")
  1010.                             else
  1011.                                 print("no gui found - wierd...")
  1012.                             end
  1013.                         end
  1014.                     end
  1015.                 end
  1016.             end
  1017.         end)
  1018.  
  1019.  
  1020.     end))
  1021.     ScreenGui40.Name = "VehicleGui"
  1022.     ScreenGui40.Parent = VehicleSeat34
  1023.     Frame41.Parent = ScreenGui40
  1024.     Frame41.Transparency = 1
  1025.     Frame41.Size = UDim2.new(0.200000003, 0, 0.0500000007, 0)
  1026.     Frame41.Position = UDim2.new(0, 0, 0.800000012, 0)
  1027.     Frame41.BackgroundColor3 = Color3.new(0.905882, 0.905882, 0.905882)
  1028.     Frame41.BackgroundTransparency = 1
  1029.     Frame41.BorderColor3 = Color3.new(0, 0, 0)
  1030.     TextButton42.Name = "Machine"
  1031.     TextButton42.Parent = Frame41
  1032.     TextButton42.Transparency = 1
  1033.     TextButton42.Size = UDim2.new(1, 0, 2, 0)
  1034.     TextButton42.Style = Enum.ButtonStyle.RobloxButtonDefault
  1035.     TextButton42.Text = "Machine Guns"
  1036.     TextButton42.Position = UDim2.new(2, 0, -1, 0)
  1037.     TextButton42.Active = false
  1038.     TextButton42.Visible = false
  1039.     TextButton42.BackgroundColor3 = Color3.new(0, 0, 1)
  1040.     TextButton42.BackgroundTransparency = 1
  1041.     TextButton42.BorderColor3 = Color3.new(0, 0, 0)
  1042.     TextButton42.AutoButtonColor = false
  1043.     TextButton42.FontSize = Enum.FontSize.Size24
  1044.     TextButton42.TextColor3 = Color3.new(1, 1, 1)
  1045.     TextButton43.Name = "SABOT"
  1046.     TextButton43.Parent = Frame41
  1047.     TextButton43.Transparency = 0.5
  1048.     TextButton43.Size = UDim2.new(2, 0, 2, 0)
  1049.     TextButton43.Text = "Launch Cruise Missile"
  1050.     TextButton43.Position = UDim2.new(0.0350000001, 0, 1.5, 0)
  1051.     TextButton43.BackgroundColor3 = Color3.new(0, 0, 0)
  1052.     TextButton43.BackgroundTransparency = 0.5
  1053.     TextButton43.BorderColor3 = Color3.new(0, 0, 0)
  1054.     TextButton43.Font = Enum.Font.ArialBold
  1055.     TextButton43.FontSize = Enum.FontSize.Size36
  1056.     TextButton43.TextColor3 = Color3.new(1, 1, 1)
  1057.     TextButton43.TextStrokeTransparency = 0
  1058.     TextButton44.Name = "SMOKE"
  1059.     TextButton44.Parent = Frame41
  1060.     TextButton44.Size = UDim2.new(2, 0, 2, 0)
  1061.     TextButton44.Style = Enum.ButtonStyle.RobloxButtonDefault
  1062.     TextButton44.Text = "Fire SMOKE"
  1063.     TextButton44.Position = UDim2.new(0.0500000007, 0, -3, 0)
  1064.     TextButton44.Visible = false
  1065.     TextButton44.BackgroundColor3 = Color3.new(0, 0, 1)
  1066.     TextButton44.BorderColor3 = Color3.new(0, 0, 0)
  1067.     TextButton44.FontSize = Enum.FontSize.Size48
  1068.     TextButton44.TextColor3 = Color3.new(1, 1, 1)
  1069.     TextButton45.Name = "HEAT"
  1070.     TextButton45.Parent = Frame41
  1071.     TextButton45.Transparency = 0.5
  1072.     TextButton45.Size = UDim2.new(2, 0, 2, 0)
  1073.     TextButton45.Text = "Fire 155mm Howitzer"
  1074.     TextButton45.Position = UDim2.new(0.0250000115, 0, -1, 0)
  1075.     TextButton45.Visible = false
  1076.     TextButton45.BackgroundColor3 = Color3.new(0, 0, 0)
  1077.     TextButton45.BackgroundTransparency = 0.5
  1078.     TextButton45.BorderColor3 = Color3.new(0, 0, 0)
  1079.     TextButton45.Font = Enum.Font.ArialBold
  1080.     TextButton45.FontSize = Enum.FontSize.Size36
  1081.     TextButton45.TextColor3 = Color3.new(1, 1, 1)
  1082.     Script46.Parent = Frame41
  1083.     table.insert(cors,sandbox(Script46,function()
  1084.         repeat wait() until script.Parent.Parent.Vehicle.Value~=nil
  1085.  
  1086.         db=false
  1087.         held=false
  1088.  
  1089.         v = script.Parent.Parent.Vehicle
  1090.         f = script.Parent
  1091.         sabot = script.Parent.SABOT
  1092.         enable = script.Parent.Parent.red_roof
  1093.         fakemiss = v.Value.FakeMissile
  1094.  
  1095.         function launchsabot()
  1096.             enable.Visible = true
  1097.             v.Value.Effect.Smoke.Enabled = true
  1098.             v.Value.Effect.Fire:Play()
  1099.             v.Value.Effect.Transparency = .5
  1100.             local v1=v.Value.Missile:clone()
  1101.             v1.CFrame = v.Value.Missile.CFrame * CFrame.new(0, 0, -5)
  1102.             v1.Smoke.Enabled = true
  1103.             v1.Smoke1.Enabled = true
  1104.             v1.Smoke2.Enabled = true
  1105.             v1.Smoke3.Enabled = true
  1106.             v1.Smoke4.Enabled = true
  1107.             v1.Fire.Enabled = true
  1108.             v1.Spark.Enabled = true
  1109.             fakemiss:remove()
  1110.             local vel=Instance.new("BodyVelocity")
  1111.             vel.Parent=v1
  1112.             v1.Velocity=v1.CFrame.lookVector*150
  1113.             vel.velocity=v1.Velocity
  1114.             v1.CanCollide=false
  1115.             v1.Transparency= 0
  1116.             v1.Parent=workspace
  1117.             wait(12)
  1118.             v1:remove()
  1119.             v.Value.Effect.Transparency = 1
  1120.             v.Value.Effect.Smoke.Enabled = false
  1121.             wait(7)
  1122.             v1:remove()
  1123.             sabot.Visible = false
  1124.         end
  1125.  
  1126.         function sabotclick()
  1127.             print("click missile")
  1128.             if db==true then return end
  1129.             db=true
  1130.             sabot.Text="Reloading..."
  1131.             launchsabot()
  1132.             sabot.Visible = false
  1133.             db=false
  1134.         end
  1135.  
  1136.         sabot.MouseButton1Click:connect(sabotclick)
  1137.  
  1138.  
  1139.  
  1140.  
  1141.  
  1142.     end))
  1143.     ObjectValue47.Name = "Vehicle"
  1144.     ObjectValue47.Parent = ScreenGui40
  1145.     Frame48.Name = "CoordinateModule"
  1146.     Frame48.Parent = ScreenGui40
  1147.     Frame48.Transparency = 1
  1148.     Frame48.Size = UDim2.new(0, 100, 0, 100)
  1149.     Frame48.Position = UDim2.new(0, 50, 0, 400)
  1150.     Frame48.BackgroundColor3 = Color3.new(1, 1, 1)
  1151.     Frame48.BackgroundTransparency = 1
  1152.     TextButton49.Name = "AddVariableX"
  1153.     TextButton49.Parent = Frame48
  1154.     TextButton49.Size = UDim2.new(0, 20, 0, 20)
  1155.     TextButton49.Style = Enum.ButtonStyle.RobloxButton
  1156.     TextButton49.Text = "+"
  1157.     TextButton49.BackgroundColor3 = Color3.new(0, 0, 0)
  1158.     TextButton49.Font = Enum.Font.SourceSans
  1159.     TextButton49.FontSize = Enum.FontSize.Size36
  1160.     TextButton49.TextColor3 = Color3.new(1, 1, 1)
  1161.     Script50.Parent = TextButton49
  1162.     table.insert(cors,sandbox(Script50,function()
  1163.         x = script.Parent.Parent.VariableX
  1164.         vx = script.Parent.Parent.Variable1
  1165.  
  1166.         function onButtonClicked()
  1167.             x.Value = x.Value + 10
  1168.             vx.Text="x:("..tostring(x.Value)..")"
  1169.         end
  1170.         script.Parent.MouseButton1Click:connect(onButtonClicked)
  1171.     end))
  1172.     TextButton51.Name = "SubtractVariableX"
  1173.     TextButton51.Parent = Frame48
  1174.     TextButton51.Size = UDim2.new(0, 20, 0, 20)
  1175.     TextButton51.Style = Enum.ButtonStyle.RobloxButton
  1176.     TextButton51.Text = "-"
  1177.     TextButton51.Position = UDim2.new(0, 30, 0, 0)
  1178.     TextButton51.BackgroundColor3 = Color3.new(0, 0, 0)
  1179.     TextButton51.Font = Enum.Font.SourceSans
  1180.     TextButton51.FontSize = Enum.FontSize.Size36
  1181.     TextButton51.TextColor3 = Color3.new(1, 1, 1)
  1182.     Script52.Parent = TextButton51
  1183.     table.insert(cors,sandbox(Script52,function()
  1184.         x = script.Parent.Parent.VariableX
  1185.         vx = script.Parent.Parent.Variable1
  1186.  
  1187.         function onButtonClicked()
  1188.             x.Value = x.Value - 10
  1189.             vx.Text="x:("..tostring(x.Value)..")"
  1190.         end
  1191.         script.Parent.MouseButton1Click:connect(onButtonClicked)
  1192.     end))
  1193.     TextLabel53.Name = "Variable1"
  1194.     TextLabel53.Parent = Frame48
  1195.     TextLabel53.Size = UDim2.new(0, 150, 0, 20)
  1196.     TextLabel53.Text = "x:(0)"
  1197.     TextLabel53.Position = UDim2.new(0, 60, 0, 0)
  1198.     TextLabel53.BackgroundColor3 = Color3.new(0, 0, 0)
  1199.     TextLabel53.Font = Enum.Font.ArialBold
  1200.     TextLabel53.FontSize = Enum.FontSize.Size14
  1201.     TextLabel53.TextColor3 = Color3.new(1, 1, 1)
  1202.     TextButton54.Name = "AddVariableZ"
  1203.     TextButton54.Parent = Frame48
  1204.     TextButton54.Size = UDim2.new(0, 20, 0, 20)
  1205.     TextButton54.Style = Enum.ButtonStyle.RobloxButton
  1206.     TextButton54.Text = "+"
  1207.     TextButton54.Position = UDim2.new(0, 0, 0, 30)
  1208.     TextButton54.BackgroundColor3 = Color3.new(0, 0, 0)
  1209.     TextButton54.Font = Enum.Font.SourceSans
  1210.     TextButton54.FontSize = Enum.FontSize.Size36
  1211.     TextButton54.TextColor3 = Color3.new(1, 1, 1)
  1212.     Script55.Parent = TextButton54
  1213.     table.insert(cors,sandbox(Script55,function()
  1214.         z = script.Parent.Parent.VariableZ
  1215.         vz = script.Parent.Parent.Variable2
  1216.  
  1217.         function onButtonClicked()
  1218.             z.Value = z.Value + 10
  1219.             vz.Text="z:("..tostring(z.Value)..")"
  1220.         end
  1221.         script.Parent.MouseButton1Click:connect(onButtonClicked)
  1222.     end))
  1223.     TextButton56.Name = "SubtractVariableZ"
  1224.     TextButton56.Parent = Frame48
  1225.     TextButton56.Size = UDim2.new(0, 20, 0, 20)
  1226.     TextButton56.Style = Enum.ButtonStyle.RobloxButton
  1227.     TextButton56.Text = "-"
  1228.     TextButton56.Position = UDim2.new(0, 30, 0, 30)
  1229.     TextButton56.BackgroundColor3 = Color3.new(0, 0, 0)
  1230.     TextButton56.Font = Enum.Font.SourceSans
  1231.     TextButton56.FontSize = Enum.FontSize.Size36
  1232.     TextButton56.TextColor3 = Color3.new(1, 1, 1)
  1233.     Script57.Parent = TextButton56
  1234.     table.insert(cors,sandbox(Script57,function()
  1235.         z = script.Parent.Parent.VariableZ
  1236.         vz = script.Parent.Parent.Variable2
  1237.  
  1238.         function onButtonClicked()
  1239.             z.Value = z.Value - 10
  1240.             vz.Text="z:("..tostring(z.Value)..")"
  1241.         end
  1242.         script.Parent.MouseButton1Click:connect(onButtonClicked)
  1243.     end))
  1244.     TextLabel58.Name = "Variable2"
  1245.     TextLabel58.Parent = Frame48
  1246.     TextLabel58.Size = UDim2.new(0, 150, 0, 20)
  1247.     TextLabel58.Text = "y:(0)"
  1248.     TextLabel58.Position = UDim2.new(0, 60, 0, 30)
  1249.     TextLabel58.BackgroundColor3 = Color3.new(0, 0, 0)
  1250.     TextLabel58.Font = Enum.Font.ArialBold
  1251.     TextLabel58.FontSize = Enum.FontSize.Size14
  1252.     TextLabel58.TextColor3 = Color3.new(1, 1, 1)
  1253.     NumberValue59.Name = "VariableX"
  1254.     NumberValue59.Parent = Frame48
  1255.     NumberValue60.Name = "VariableY"
  1256.     NumberValue60.Parent = Frame48
  1257.     NumberValue61.Name = "VariableZ"
  1258.     NumberValue61.Parent = Frame48
  1259.     Frame62.Name = "MeterModule"
  1260.     Frame62.Parent = ScreenGui40
  1261.     Frame62.Size = UDim2.new(0, 100, 0, 160)
  1262.     Frame62.Position = UDim2.new(0, 50, 0, 230)
  1263.     Frame62.BackgroundColor3 = Color3.new(0.211765, 0.211765, 0.211765)
  1264.     TextLabel63.Name = "S1A"
  1265.     TextLabel63.Parent = Frame62
  1266.     TextLabel63.Size = UDim2.new(0, 95, 0, 30)
  1267.     TextLabel63.Text = "STAGE 1"
  1268.     TextLabel63.Position = UDim2.new(0.0250000004, 0, 0.0250000004, 0)
  1269.     TextLabel63.BackgroundColor3 = Color3.new(0.576471, 0.333333, 0.407843)
  1270.     TextLabel63.Font = Enum.Font.ArialBold
  1271.     TextLabel63.FontSize = Enum.FontSize.Size18
  1272.     TextLabel64.Name = "S2A"
  1273.     TextLabel64.Parent = Frame62
  1274.     TextLabel64.Size = UDim2.new(0, 95, 0, 30)
  1275.     TextLabel64.Text = "STAGE 2"
  1276.     TextLabel64.Position = UDim2.new(0.0250000004, 0, 0.25, 1)
  1277.     TextLabel64.BackgroundColor3 = Color3.new(0.576471, 0.333333, 0.407843)
  1278.     TextLabel64.Font = Enum.Font.ArialBold
  1279.     TextLabel64.FontSize = Enum.FontSize.Size18
  1280.     TextLabel65.Name = "S3A"
  1281.     TextLabel65.Parent = Frame62
  1282.     TextLabel65.Size = UDim2.new(0, 95, 0, 30)
  1283.     TextLabel65.Text = "STAGE 3"
  1284.     TextLabel65.Position = UDim2.new(0.0250000004, 0, 0.5, 1)
  1285.     TextLabel65.BackgroundColor3 = Color3.new(0.576471, 0.333333, 0.407843)
  1286.     TextLabel65.Font = Enum.Font.ArialBold
  1287.     TextLabel65.FontSize = Enum.FontSize.Size18
  1288.     TextLabel66.Name = "S4A"
  1289.     TextLabel66.Parent = Frame62
  1290.     TextLabel66.Size = UDim2.new(0, 95, 0, 30)
  1291.     TextLabel66.Text = "STAGE 4"
  1292.     TextLabel66.Position = UDim2.new(0.0250000004, 0, 0.75, 1)
  1293.     TextLabel66.BackgroundColor3 = Color3.new(0.576471, 0.333333, 0.407843)
  1294.     TextLabel66.Font = Enum.Font.ArialBold
  1295.     TextLabel66.FontSize = Enum.FontSize.Size18
  1296.     TextLabel67.Name = "S1B"
  1297.     TextLabel67.Parent = Frame62
  1298.     TextLabel67.Size = UDim2.new(0, 95, 0, 30)
  1299.     TextLabel67.Text = "STAGE 1"
  1300.     TextLabel67.Position = UDim2.new(0.0250000004, 0, 0.0250000004, 0)
  1301.     TextLabel67.Visible = false
  1302.     TextLabel67.BackgroundColor3 = Color3.new(0.196078, 0.576471, 0.0901961)
  1303.     TextLabel67.Font = Enum.Font.ArialBold
  1304.     TextLabel67.FontSize = Enum.FontSize.Size18
  1305.     TextLabel68.Name = "S2B"
  1306.     TextLabel68.Parent = Frame62
  1307.     TextLabel68.Size = UDim2.new(0, 95, 0, 30)
  1308.     TextLabel68.Text = "STAGE 2"
  1309.     TextLabel68.Position = UDim2.new(0.0250000004, 0, 0.25, 1)
  1310.     TextLabel68.Visible = false
  1311.     TextLabel68.BackgroundColor3 = Color3.new(0.196078, 0.576471, 0.0901961)
  1312.     TextLabel68.Font = Enum.Font.ArialBold
  1313.     TextLabel68.FontSize = Enum.FontSize.Size18
  1314.     TextLabel69.Name = "S3B"
  1315.     TextLabel69.Parent = Frame62
  1316.     TextLabel69.Size = UDim2.new(0, 95, 0, 30)
  1317.     TextLabel69.Text = "STAGE 3"
  1318.     TextLabel69.Position = UDim2.new(0.0250000004, 0, 0.5, 1)
  1319.     TextLabel69.Visible = false
  1320.     TextLabel69.BackgroundColor3 = Color3.new(0.196078, 0.576471, 0.0901961)
  1321.     TextLabel69.Font = Enum.Font.ArialBold
  1322.     TextLabel69.FontSize = Enum.FontSize.Size18
  1323.     TextLabel70.Name = "S4B"
  1324.     TextLabel70.Parent = Frame62
  1325.     TextLabel70.Size = UDim2.new(0, 95, 0, 30)
  1326.     TextLabel70.Text = "STAGE 4"
  1327.     TextLabel70.Position = UDim2.new(0.0250000004, 0, 0.75, 1)
  1328.     TextLabel70.Visible = false
  1329.     TextLabel70.BackgroundColor3 = Color3.new(0.196078, 0.576471, 0.0901961)
  1330.     TextLabel70.Font = Enum.Font.ArialBold
  1331.     TextLabel70.FontSize = Enum.FontSize.Size18
  1332.     TextButton71.Name = "red_roof"
  1333.     TextButton71.Parent = ScreenGui40
  1334.     TextButton71.Transparency = 0.5
  1335.     TextButton71.Size = UDim2.new(0, 100, 0, 20)
  1336.     TextButton71.Text = "ENABLE"
  1337.     TextButton71.Position = UDim2.new(0, 270, 0, 400)
  1338.     TextButton71.Visible = false
  1339.     TextButton71.BackgroundColor3 = Color3.new(0, 0, 0)
  1340.     TextButton71.BackgroundTransparency = 0.5
  1341.     TextButton71.Font = Enum.Font.ArialBold
  1342.     TextButton71.FontSize = Enum.FontSize.Size14
  1343.     TextButton71.TextColor3 = Color3.new(1, 1, 1)
  1344.     TextButton71.TextStrokeTransparency = 0
  1345.     Script72.Parent = TextButton71
  1346.     table.insert(cors,sandbox(Script72,function()
  1347.         repeat wait() until script.Parent.Parent.Vehicle.Value~=nil
  1348.  
  1349.         db=false
  1350.         held=false
  1351.  
  1352.         v = script.Parent.Parent.Vehicle
  1353.         vz = script.Parent.Parent.CoordinateModule.VariableZ
  1354.         vx = script.Parent.Parent.CoordinateModule.VariableX
  1355.         vy = script.Parent.Parent.CoordinateModule.VariableY
  1356.         wh = v.Value.Warhead
  1357.         mm = script.Parent.Parent.MeterModule
  1358.  
  1359.         function stage1()
  1360.             script.Parent.Visible = false
  1361.             mm.S1A.Visible = false
  1362.             mm.S1B.Visible = true
  1363.         end
  1364.  
  1365.         function stage2()
  1366.             mm.S1B.Visible = false
  1367.             mm.S1A.Visible = true
  1368.             mm.S2A.Visible = false
  1369.             mm.S2B.Visible = true
  1370.         end
  1371.  
  1372.         function stage3()
  1373.             mm.S2B.Visible = false
  1374.             mm.S2A.Visible = true
  1375.             mm.S3A.Visible = false
  1376.             mm.S3B.Visible = true
  1377.         end
  1378.  
  1379.         function stage4()
  1380.             mm.S3B.Visible = false
  1381.             mm.S3A.Visible = true
  1382.             mm.S4A.Visible = false
  1383.             mm.S4B.Visible = true  
  1384.         end
  1385.  
  1386.         function impact()
  1387.             wh.CFrame = CFrame.new((vx.Value), 1000, (vz.Value))
  1388.             wait(0.1)
  1389.             wh.Anchored = false
  1390.             wh.Transparency = 0
  1391.             wh.Touch.Disabled = false
  1392.             wh.Smoke.Enabled = true
  1393.             wh.Smoke2.Enabled = true
  1394.             wh.Smoke3.Enabled = true
  1395.             wh.Smoke4.Enabled = true
  1396.             wh.Light.Enabled = true
  1397.             wh.CanCollide = true
  1398.             local vel=Instance.new("BodyVelocity")
  1399.             vel.Parent=wh
  1400.             wh.Velocity=wh.CFrame.lookVector*60
  1401.             vel.velocity=wh.Velocity
  1402.         end
  1403.  
  1404.         function onButtonClicked()
  1405.             stage1()
  1406.             wait(5)
  1407.             stage2()
  1408.             wait(5)
  1409.             stage3()
  1410.             wait(5)
  1411.             stage4()
  1412.             wait(3)
  1413.             mm.S4B.Visible = false
  1414.             mm.S4A.Visible = true
  1415.             impact()
  1416.         end
  1417.  
  1418.         script.Parent.MouseButton1Click:connect(onButtonClicked)
  1419.     end))
  1420.     Script73.Name = "MainFrame"
  1421.     Script73.Parent = ScreenGui40
  1422.     Script73.Disabled = true
  1423.     table.insert(cors,sandbox(Script73,function()
  1424.         repeat wait() until script.Parent.Parent.Vehicle.Value~=nil
  1425.  
  1426.         db=false
  1427.         held=false
  1428.  
  1429.         v = script.Parent.Vehicle
  1430.         vs = v.Value.VehicleSeat
  1431.         mm = script.Parent.MeterModule
  1432.         cm = script.Parent.CoordinateModule
  1433.         fire = script.Parent.Frame
  1434.         enable = script.Parent.red_roof
  1435.         angle = vs.Angle
  1436.  
  1437.         if angle.Value > 159 then
  1438.             mm.Visible = true
  1439.             cm.Visible = true
  1440.             fire.Visible = true
  1441.             enable.Visible = true
  1442.         end
  1443.  
  1444.         if angle.Value < 160 then
  1445.             mm.Visible = false
  1446.             cm.Visible = false
  1447.             fire.Visible = false
  1448.             enable.Visible = false
  1449.         end
  1450.  
  1451.     end))
  1452.     NumberValue74.Name = "Angle"
  1453.     NumberValue74.Parent = VehicleSeat34
  1454.     Part75.Parent = Model1
  1455.     Part75.Material = Enum.Material.Metal
  1456.     Part75.BrickColor = BrickColor.new("Grime")
  1457.     Part75.Rotation = Vector3.new(0, -90, 0)
  1458.     Part75.FormFactor = Enum.FormFactor.Plate
  1459.     Part75.Size = Vector3.new(1.80000007, 0.800000012, 1)
  1460.     Part75.CFrame = CFrame.new(12.8898983, 7.6000824, 38.9598885, 1.79557064e-05, 9.34016316e-06, -1, 5.58539214e-05, 1, 9.81848007e-06, 1, -4.90284801e-05, 2.76660649e-05)
  1461.     Part75.BackSurface = Enum.SurfaceType.Weld
  1462.     Part75.BottomSurface = Enum.SurfaceType.Weld
  1463.     Part75.FrontSurface = Enum.SurfaceType.Weld
  1464.     Part75.LeftSurface = Enum.SurfaceType.Weld
  1465.     Part75.RightSurface = Enum.SurfaceType.Weld
  1466.     Part75.TopSurface = Enum.SurfaceType.Smooth
  1467.     Part75.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1468.     Part75.Position = Vector3.new(12.8898983, 7.6000824, 38.9598885)
  1469.     Part75.Orientation = Vector3.new(0, -90, 0)
  1470.     Part75.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1471.     BlockMesh76.Parent = Part75
  1472.     BlockMesh76.Scale = Vector3.new(1.29999995, 1, 1)
  1473.     BlockMesh76.Scale = Vector3.new(1.29999995, 1, 1)
  1474.     Part77.Name = "BarrelPart"
  1475.     Part77.Parent = Model1
  1476.     Part77.Material = Enum.Material.Metal
  1477.     Part77.BrickColor = BrickColor.new("Grime")
  1478.     Part77.Rotation = Vector3.new(180, -90, 0)
  1479.     Part77.FormFactor = Enum.FormFactor.Custom
  1480.     Part77.Size = Vector3.new(2, 0.200000003, 2)
  1481.     Part77.CFrame = CFrame.new(12.3898935, 10.6001215, 38.9598274, -5.20252797e-07, -4.67066002e-06, -1, -1.12105145e-05, -1, 5.14798012e-06, -1, 4.38485722e-06, 1.02310514e-05)
  1482.     Part77.BackSurface = Enum.SurfaceType.Weld
  1483.     Part77.BottomSurface = Enum.SurfaceType.Smooth
  1484.     Part77.FrontSurface = Enum.SurfaceType.Weld
  1485.     Part77.LeftSurface = Enum.SurfaceType.Weld
  1486.     Part77.RightSurface = Enum.SurfaceType.Weld
  1487.     Part77.TopSurface = Enum.SurfaceType.Weld
  1488.     Part77.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1489.     Part77.Position = Vector3.new(12.3898935, 10.6001215, 38.9598274)
  1490.     Part77.Orientation = Vector3.new(0, -90, -180)
  1491.     Part77.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1492.     CylinderMesh78.Parent = Part77
  1493.     Part79.Name = "Swivel"
  1494.     Part79.Parent = Model1
  1495.     Part79.Material = Enum.Material.Metal
  1496.     Part79.BrickColor = BrickColor.new("Grime")
  1497.     Part79.Rotation = Vector3.new(0, 90, 0)
  1498.     Part79.CanCollide = false
  1499.     Part79.FormFactor = Enum.FormFactor.Custom
  1500.     Part79.Size = Vector3.new(3, 0.200000003, 3)
  1501.     Part79.CFrame = CFrame.new(12.889883, 8.10011101, 38.9598198, 1.50947981e-05, 5.43772376e-06, 1, -2.21862356e-05, 1, -5.9147028e-06, -1, -1.53604906e-05, 5.38406312e-06)
  1502.     Part79.BottomSurface = Enum.SurfaceType.Weld
  1503.     Part79.RightSurface = Enum.SurfaceType.Weld
  1504.     Part79.TopSurface = Enum.SurfaceType.Weld
  1505.     Part79.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1506.     Part79.Position = Vector3.new(12.889883, 8.10011101, 38.9598198)
  1507.     Part79.Orientation = Vector3.new(0, 90, 0)
  1508.     Part79.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1509.     CylinderMesh80.Parent = Part79
  1510.     CylinderMesh80.Offset = Vector3.new(0, -0.100000001, 0)
  1511.     CylinderMesh80.Scale = Vector3.new(1, 1.5, 0.949999988)
  1512.     CylinderMesh80.Scale = Vector3.new(1, 1.5, 0.949999988)
  1513.     Script81.Parent = Part79
  1514.     table.insert(cors,sandbox(Script81,function()
  1515.         b = script.Parent
  1516.         c = script.Parent.Parent.Connector
  1517.  
  1518.         local weld = Instance.new("Weld")
  1519.  
  1520.         weld.Part0 = c
  1521.         weld.Part1 = b
  1522.  
  1523.         weld.C0 = CFrame.new(0, -1, 0)
  1524.  
  1525.         weld.Parent = c
  1526.  
  1527.         script.Parent.Parent.WER.Value = weld
  1528.     end))
  1529.     Part82.Name = "Missile"
  1530.     Part82.Parent = Model1
  1531.     Part82.Material = Enum.Material.SmoothPlastic
  1532.     Part82.BrickColor = BrickColor.new("Quill grey")
  1533.     Part82.Transparency = 1
  1534.     Part82.Rotation = Vector3.new(180, 90, 0)
  1535.     Part82.FormFactor = Enum.FormFactor.Symmetric
  1536.     Part82.Size = Vector3.new(2.20000005, 1, 2)
  1537.     Part82.CFrame = CFrame.new(-23.0097218, 11.8003483, 38.8605461, -1.99113638e-05, -5.20105959e-06, 1, 2.55717896e-05, -1, -6.13996826e-06, 1, 1.21387684e-05, 8.00541045e-07)
  1538.     Part82.BottomSurface = Enum.SurfaceType.Weld
  1539.     Part82.TopSurface = Enum.SurfaceType.Weld
  1540.     Part82.Color = Color3.new(0.87451, 0.87451, 0.870588)
  1541.     Part82.Position = Vector3.new(-23.0097218, 11.8003483, 38.8605461)
  1542.     Part82.Orientation = Vector3.new(0, 90, 180)
  1543.     Part82.Color = Color3.new(0.87451, 0.87451, 0.870588)
  1544.     Fire83.Parent = Part82
  1545.     Fire83.Size = 30
  1546.     Fire83.Color = Color3.new(0.92549, 0.545098, 0.27451)
  1547.     Fire83.Enabled = false
  1548.     Fire83.Heat = 0
  1549.     Fire83.SecondaryColor = Color3.new(0.545098, 0.313726, 0.215686)
  1550.     Fire83.Color = Color3.new(0.92549, 0.545098, 0.27451)
  1551.     Smoke84.Parent = Part82
  1552.     Smoke84.Size = 15
  1553.     Smoke84.Enabled = false
  1554.     Smoke84.Opacity = 1
  1555.     Smoke84.RiseVelocity = 25
  1556.     Smoke85.Name = "Smoke1"
  1557.     Smoke85.Parent = Part82
  1558.     Smoke85.Size = 15
  1559.     Smoke85.Enabled = false
  1560.     Smoke85.Opacity = 1
  1561.     Smoke85.RiseVelocity = 25
  1562.     Smoke86.Name = "Smoke2"
  1563.     Smoke86.Parent = Part82
  1564.     Smoke86.Size = 15
  1565.     Smoke86.Enabled = false
  1566.     Smoke86.Opacity = 1
  1567.     Smoke86.RiseVelocity = 25
  1568.     Smoke87.Name = "Smoke3"
  1569.     Smoke87.Parent = Part82
  1570.     Smoke87.Size = 15
  1571.     Smoke87.Enabled = false
  1572.     Smoke87.Opacity = 1
  1573.     Smoke87.RiseVelocity = 25
  1574.     Smoke88.Name = "Smoke4"
  1575.     Smoke88.Parent = Part82
  1576.     Smoke88.Size = 15
  1577.     Smoke88.Enabled = false
  1578.     Smoke88.Opacity = 1
  1579.     Smoke88.RiseVelocity = 25
  1580.     BillboardGui89.Name = "Spark"
  1581.     BillboardGui89.Parent = Part82
  1582.     BillboardGui89.Size = UDim2.new(35, 0, 35, 0)
  1583.     BillboardGui89.Enabled = false
  1584.     BillboardGui89.Active = true
  1585.     ImageLabel90.Name = "Light"
  1586.     ImageLabel90.Parent = BillboardGui89
  1587.     ImageLabel90.Transparency = 1
  1588.     ImageLabel90.Size = UDim2.new(1, 0, 1, 0)
  1589.     ImageLabel90.Active = true
  1590.     ImageLabel90.BackgroundColor3 = Color3.new(0.756863, 0.752941, 0.764706)
  1591.     ImageLabel90.BackgroundTransparency = 1
  1592.     ImageLabel90.Image = "http://www.roblox.com/asset/?id=43708803"
  1593.     Script91.Parent = BillboardGui89
  1594.     table.insert(cors,sandbox(Script91,function()
  1595.         script.Parent.Adornee = script.Parent.Parent
  1596.     end))
  1597.     SpecialMesh92.Parent = Part82
  1598.     SpecialMesh92.MeshId = "http://www.roblox.com/asset/?id=74333739"
  1599.     SpecialMesh92.Scale = Vector3.new(24, 24, 24)
  1600.     SpecialMesh92.MeshType = Enum.MeshType.FileMesh
  1601.     SpecialMesh92.Scale = Vector3.new(24, 24, 24)
  1602.     Script93.Name = "Sabot"
  1603.     Script93.Parent = Part82
  1604.     Script93.Disabled = true
  1605.     table.insert(cors,sandbox(Script93,function()
  1606.         wait(.1)
  1607.         function onTouch(hit)
  1608.             script.Parent.Anchored = true
  1609.             script.Parent.Parent = Workspace
  1610.             script.Parent.Transparency = 1
  1611.             wait()
  1612.             script.Parent.Atom.Disabled = false
  1613.         end
  1614.  
  1615.         script.Parent.Touched:connect(onTouch)
  1616.     end))
  1617.     Script94.Name = "Atom"
  1618.     Script94.Parent = Part82
  1619.     Script94.Disabled = true
  1620.     table.insert(cors,sandbox(Script94,function()
  1621.         print("Nuke Em' All")
  1622.  
  1623.         local CloudID= "http://www.roblox.com/asset/?id=1095708"
  1624.         local ColorTexture = "http://www.roblox.com/asset/?ID=1361097"
  1625.         local RingID = "http://www.roblox.com/asset/?id=3270017"
  1626.         local SphereID = "http://www.roblox.com/asset/?id=1185246"
  1627.  
  1628.         local BasePosition = script.Parent.Position
  1629.  
  1630.         local Size = 50
  1631.  
  1632.         local Exp = Instance.new("Model")
  1633.         Exp.Name = "ATOMICEXPLOSION"
  1634.         Exp.Parent = game.Workspace
  1635.  
  1636.         local BasePart = Instance.new("Part")
  1637.         BasePart.formFactor = 0
  1638.         BasePart.TopSurface = 0
  1639.         BasePart.BottomSurface = 0
  1640.         BasePart.Anchored = true
  1641.         BasePart.Locked = true
  1642.         BasePart.CanCollide = false
  1643.  
  1644.         local BaseMesh = Instance.new("SpecialMesh")
  1645.         BaseMesh.MeshType = "FileMesh"
  1646.  
  1647.         local CloudMesh = BaseMesh:clone()
  1648.         CloudMesh.MeshId = CloudID
  1649.         CloudMesh.TextureId = ColorTexture
  1650.         CloudMesh.VertexColor = Vector3.new(0.9,0.6,0)
  1651.  
  1652.         local RingMesh = BaseMesh:clone()
  1653.         RingMesh.MeshId = RingID
  1654.  
  1655.         local SphereMesh = BaseMesh:clone()
  1656.         SphereMesh.MeshId = SphereID
  1657.  
  1658.         local Clouds = {}
  1659.         local ShockWave = {}
  1660.         local Sky = script.Sky
  1661.  
  1662.  
  1663.         function Effects()
  1664.             script.Explode:Play()
  1665.             delay(0,function()
  1666.                 for i = 5, 1,-0.01 do
  1667.                     wait()
  1668.                     game.Lighting.Brightness = i
  1669.                 end
  1670.             end)
  1671.         end
  1672.  
  1673.         function Destruction(Pos,Radius)
  1674.             local function Destroy(Model)
  1675.                 for i ,v in ipairs(Model:getChildren()) do
  1676.                     if v:isA("BasePart") then
  1677.                         if (v.Position-Pos).magnitude < Radius then
  1678.                             if v.Anchored == false then
  1679.                                 v:BreakJoints()
  1680.                                 v.Velocity = CFrame.new(v.Position,Pos):vectorToWorldSpace(Vector3.new(math.random(-5,5),5,1000))
  1681.                                 v.Material = "CorrodedMetal"
  1682.                             end
  1683.                         end
  1684.                     end
  1685.                     if #v:getChildren() > 0 then
  1686.                         Destroy(v)
  1687.                     end
  1688.                 end
  1689.             end
  1690.             Destroy(game.Workspace)
  1691.         end
  1692.         function Explode(Pos)
  1693.  
  1694.             local Base = BasePart:clone()
  1695.             Base.Position = Pos
  1696.  
  1697.             local Mesh = CloudMesh:clone()
  1698.             Mesh.Parent = Base
  1699.             Mesh.Scale = Vector3.new(2.5,1,4.5)
  1700.  
  1701.             local PoleBase = BasePart:clone()
  1702.             PoleBase.Position = Pos+Vector3.new(0,0.1,0)
  1703.  
  1704.             local PoleBaseMesh = CloudMesh:clone()
  1705.             PoleBaseMesh.Scale = Vector3.new(1.25,2,2.5)
  1706.             PoleBaseMesh.Parent = PoleBase
  1707.  
  1708.             local Cloud1 = BasePart:clone()
  1709.             Cloud1.Position = Pos+Vector3.new(0,0.75,0)
  1710.  
  1711.             local Cloud1Mesh = CloudMesh:clone()
  1712.             Cloud1Mesh.Scale = Vector3.new(0.5,3,1)
  1713.             Cloud1Mesh.Parent = Cloud1
  1714.  
  1715.             local Cloud2 = BasePart:clone()
  1716.             Cloud2.Position = Pos+Vector3.new(0,1.25,0)
  1717.  
  1718.             local Cloud2Mesh = CloudMesh:clone()
  1719.             Cloud2Mesh.Scale = Vector3.new(0.5,1.5,1)
  1720.             Cloud2Mesh.Parent = Cloud2
  1721.  
  1722.             local Cloud3 = BasePart:clone()
  1723.             Cloud3.Position = Pos+Vector3.new(0,1.7,0)
  1724.  
  1725.             local Cloud3Mesh = CloudMesh:clone()
  1726.             Cloud3Mesh.Scale = Vector3.new(0.5,1.5,1)
  1727.             Cloud3Mesh.Parent = Cloud3
  1728.  
  1729.             local PoleRing = BasePart:clone()
  1730.             PoleRing.Position = Pos+Vector3.new(0,1.3,0)
  1731.             PoleRing.Transparency = 0.2
  1732.             PoleRing.BrickColor = BrickColor.new("Dark stone grey")
  1733.             PoleRing.CFrame = PoleRing.CFrame*CFrame.Angles(math.rad(90),0,0)
  1734.  
  1735.             local Mesh = RingMesh:clone()
  1736.             Mesh.Scale = Vector3.new(1.2,1.2,1.2)
  1737.             Mesh.Parent = PoleRing
  1738.  
  1739.             local MushCloud = BasePart:clone()
  1740.             MushCloud.Position = Pos+Vector3.new(0,2.3,0)
  1741.  
  1742.             local MushMesh = CloudMesh:clone() -- lol
  1743.             MushMesh.Scale = Vector3.new(2.5,1.75,3.5)
  1744.             MushMesh.Parent = MushCloud
  1745.  
  1746.             local TopCloud = BasePart:clone()
  1747.             TopCloud.Position = Pos+Vector3.new(0,2.7,0)
  1748.  
  1749.             local TopMesh = CloudMesh:clone()
  1750.             TopMesh.Scale = Vector3.new(7.5,1.5,1.5)
  1751.             TopMesh.Parent = TopCloud
  1752.  
  1753.             table.insert(Clouds,Base)
  1754.             table.insert(Clouds,TopCloud)
  1755.             table.insert(Clouds,MushCloud)
  1756.             table.insert(Clouds,Cloud1)
  1757.             table.insert(Clouds,Cloud2)
  1758.             table.insert(Clouds,Cloud3)
  1759.             table.insert(Clouds,PoleBase)
  1760.             table.insert(Clouds,PoleRing)
  1761.  
  1762.  
  1763.             local BigRing = BasePart:clone()
  1764.             BigRing.Position = Pos
  1765.             BigRing.CFrame = BigRing.CFrame*CFrame.Angles(math.rad(90),0,0)
  1766.  
  1767.             local BigMesh = RingMesh:clone()
  1768.             BigMesh.Scale = Vector3.new(5,5,1)
  1769.             BigMesh.Parent = BigRing
  1770.  
  1771.             local SmallRing = BasePart:clone()
  1772.             SmallRing.Position = Pos
  1773.             SmallRing.BrickColor = BrickColor.new("Dark stone grey")
  1774.             SmallRing.CFrame = SmallRing.CFrame*CFrame.Angles(math.rad(90),0,0)
  1775.  
  1776.             local SmallMesh = RingMesh:clone()
  1777.             SmallMesh.Scale = Vector3.new(4.6,4.6,1.5)
  1778.             SmallMesh.Parent = SmallRing
  1779.  
  1780.             local InnerSphere = BasePart:clone()
  1781.             InnerSphere.Position = Pos
  1782.             InnerSphere.BrickColor = BrickColor.new("Bright orange")
  1783.             InnerSphere.Transparency = 0.5
  1784.  
  1785.             local InnerSphereMesh = SphereMesh:clone() 
  1786.             InnerSphereMesh.Scale = Vector3.new(-6.5,-6.5,-6.5)
  1787.             InnerSphereMesh.Parent = InnerSphere
  1788.  
  1789.             local OutterSphere = BasePart:clone()
  1790.             OutterSphere.Position = Pos
  1791.             OutterSphere.BrickColor = BrickColor.new("Bright orange")
  1792.             OutterSphere.Transparency = 0.5
  1793.  
  1794.             local OutterSphereMesh = SphereMesh:clone()
  1795.             OutterSphereMesh.Scale = Vector3.new(6.5,6.5,6.5)
  1796.             OutterSphereMesh.Parent = OutterSphere
  1797.  
  1798.             table.insert(ShockWave,BigRing)
  1799.             table.insert(ShockWave,SmallRing)
  1800.             table.insert(ShockWave,OutterSphere)
  1801.             table.insert(ShockWave,InnerSphere)
  1802.             Sky.Parent = game.Lighting
  1803.             for i , v in ipairs(ShockWave) do
  1804.                 v.Parent = Exp
  1805.             end
  1806.             for i , v in ipairs(Clouds) do
  1807.                 v.Parent = Exp
  1808.             end
  1809.             Effects()
  1810.             delay(0,function()
  1811.                 for resize = Size/2.5, Size*3, 2 do
  1812.                     wait()
  1813.                     BigRing.Mesh.Scale = Vector3.new(5*resize,5*resize,1*resize)
  1814.                     SmallRing.Mesh.Scale = Vector3.new(4.6*resize,4.6*resize,1.5*resize)
  1815.                     InnerSphere.Mesh.Scale = Vector3.new(-6.5*resize,-6.5*resize,-6.5*resize)
  1816.                     OutterSphere.Mesh.Scale = Vector3.new(6.5*resize,6.5*resize,6.5*resize)
  1817.                     Destruction(Pos,3*resize)
  1818.                 end
  1819.                 for fade = 0, 1, 0.01 do
  1820.                     wait()
  1821.                     pcall(function()
  1822.                         for i ,v in ipairs(ShockWave) do
  1823.                             v.Transparency = fade
  1824.                         end
  1825.                     end)
  1826.                 end
  1827.                 for i ,v in ipairs(ShockWave) do
  1828.                     v:Remove()
  1829.                 end
  1830.                 done1 = true
  1831.             end)
  1832.             delay(0,function()
  1833.                 for resize = Size/5, Size, 1 do
  1834.                     wait()
  1835.                     pcall(function()
  1836.                         Base.Mesh.Scale = Vector3.new(2.5*resize,1*resize,4.5*resize)
  1837.                         TopCloud.Mesh.Scale = Vector3.new(0.75*resize,1.5*resize,1.5*resize)
  1838.                         MushCloud.Mesh.Scale = Vector3.new(2.5*resize,1.75*resize,3.5*resize)
  1839.                         Cloud1.Mesh.Scale = Vector3.new(0.5*resize,3*resize,1*resize)
  1840.                         Cloud2.Mesh.Scale = Vector3.new(0.5*resize,1.5*resize,1*resize)
  1841.                         Cloud3.Mesh.Scale = Vector3.new(0.5*resize,1.5*resize,1*resize)
  1842.                         PoleBase.Mesh.Scale = Vector3.new(1*resize,2*resize,2.5*resize)
  1843.                         PoleRing.Mesh.Scale = Vector3.new(1.2*resize,1.2*resize,1.2*resize)
  1844.  
  1845.                         Base.Position = Pos+Vector3.new(0,0.05*resize,0)
  1846.                         TopCloud.Position = Pos+Vector3.new(0,2.7*resize,0)
  1847.                         MushCloud.Position = Pos+Vector3.new(0,2.3*resize,0)
  1848.                         Cloud1.Position = Pos+Vector3.new(0,0.75*resize,0)
  1849.                         Cloud2.Position = Pos+Vector3.new(0,1.25*resize,0)
  1850.                         Cloud3.Position = Pos+Vector3.new(0,1.7*resize,0)
  1851.                         PoleBase.Position = Pos+Vector3.new(0,0.1*resize,0)
  1852.                         PoleRing.Position = Pos+Vector3.new(0,1.3*resize,0)
  1853.                     end)
  1854.                 end
  1855.                 done2 = true
  1856.             end)
  1857.             wait(2)
  1858.             for y = 0.6,0,-0.0025 do
  1859.                 wait()
  1860.                 for i , v in ipairs(Clouds) do
  1861.                     v.Mesh.VertexColor = Vector3.new(0.9,y,0)
  1862.                 end
  1863.             end
  1864.             for r = 0.9,0.5,-0.01 do
  1865.                 wait()
  1866.                 for i , v in ipairs(Clouds) do
  1867.                     v.Mesh.VertexColor = Vector3.new(r,0,0)
  1868.                 end
  1869.             end
  1870.             for by = 0,0.5,0.005 do
  1871.                 wait()
  1872.                 for i , v in ipairs(Clouds) do
  1873.                     v.Mesh.VertexColor = Vector3.new(0.5,by,by)
  1874.                     v.Transparency = by*2
  1875.                 end
  1876.                 Base.Mesh.Scale = Base.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
  1877.                 TopCloud.Mesh.Scale = TopCloud.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
  1878.                 MushCloud.Mesh.Scale = MushCloud.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
  1879.                 Cloud1.Mesh.Scale = Cloud1.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
  1880.                 Cloud2.Mesh.Scale = Cloud2.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
  1881.                 Cloud3.Mesh.Scale = Cloud3.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
  1882.                 PoleBase.Mesh.Scale = PoleBase.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
  1883.                 PoleRing.Mesh.Scale = PoleRing.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
  1884.             end
  1885.             done3 = true
  1886.             while true do wait(1) if done1 and done2 and done3 then break end end
  1887.             Exp:remove()
  1888.             wait(20)
  1889.             Sky:remove()
  1890.         end
  1891.  
  1892.  
  1893.  
  1894.  
  1895.         Explode(BasePosition)
  1896.  
  1897.         script.Parent:remove()
  1898.  
  1899.  
  1900.  
  1901.  
  1902.  
  1903.  
  1904.  
  1905.  
  1906.  
  1907.     end))
  1908.     Sound95.Name = "Explode"
  1909.     Sound95.Parent = Script94
  1910.     Sound95.Pitch = 0.5
  1911.     Sound95.SoundId = "http://www.roblox.com/asset?id=130768997"
  1912.     Sound95.Volume = 1
  1913.     Sky96.Parent = Script94
  1914.     Sky96.SkyboxBk = "http://www.roblox.com/asset/?version=1&id=1012890"
  1915.     Sky96.SkyboxDn = "http://www.roblox.com/asset/?version=1&id=1012891"
  1916.     Sky96.SkyboxFt = "http://www.roblox.com/asset/?version=1&id=1012887"
  1917.     Sky96.SkyboxLf = "http://www.roblox.com/asset/?version=1&id=1012889"
  1918.     Sky96.SkyboxRt = "http://www.roblox.com/asset/?version=1&id=1012888"
  1919.     Sky96.SkyboxUp = "http://www.roblox.com/asset/?version=1&id=1014449"
  1920.     Part97.Name = "Effect"
  1921.     Part97.Parent = Model1
  1922.     Part97.Material = Enum.Material.SmoothPlastic
  1923.     Part97.BrickColor = BrickColor.new("Earth green")
  1924.     Part97.Transparency = 1
  1925.     Part97.Rotation = Vector3.new(-90, 0, 90)
  1926.     Part97.FormFactor = Enum.FormFactor.Symmetric
  1927.     Part97.Size = Vector3.new(2.20000005, 1, 2)
  1928.     Part97.CFrame = CFrame.new(-21.5097256, 11.3003311, 38.8604736, 1.99002643e-05, -1, 6.76171112e-06, -2.55639879e-05, 7.70061979e-06, 1, -1, -7.8946141e-07, -1.21309677e-05)
  1929.     Part97.BottomSurface = Enum.SurfaceType.Weld
  1930.     Part97.TopSurface = Enum.SurfaceType.Weld
  1931.     Part97.Color = Color3.new(0.152941, 0.27451, 0.176471)
  1932.     Part97.Position = Vector3.new(-21.5097256, 11.3003311, 38.8604736)
  1933.     Part97.Orientation = Vector3.new(-90, 90, 0)
  1934.     Part97.Color = Color3.new(0.152941, 0.27451, 0.176471)
  1935.     Sound98.Name = "CSfire"
  1936.     Sound98.Parent = Part97
  1937.     Sound98.SoundId = "http://www.roblox.com/asset?id=132975999"
  1938.     Sound98.Volume = 1
  1939.     Sound99.Name = "Reload"
  1940.     Sound99.Parent = Part97
  1941.     Sound99.SoundId = "http://www.roblox.com/asset/?id=154199166"
  1942.     Sound99.Volume = 1
  1943.     SpecialMesh100.Parent = Part97
  1944.     SpecialMesh100.Scale = Vector3.new(0.800000012, 8, 1)
  1945.     SpecialMesh100.MeshType = Enum.MeshType.Sphere
  1946.     SpecialMesh100.Scale = Vector3.new(0.800000012, 8, 1)
  1947.     PointLight101.Parent = Part97
  1948.     PointLight101.Color = Color3.new(1, 1, 0.498039)
  1949.     PointLight101.Enabled = false
  1950.     PointLight101.Color = Color3.new(1, 1, 0.498039)
  1951.     Smoke102.Parent = Part97
  1952.     Smoke102.Size = 50
  1953.     Smoke102.Enabled = false
  1954.     Smoke102.RiseVelocity = 10
  1955.     Sound103.Name = "Fire"
  1956.     Sound103.Parent = Part97
  1957.     Sound103.Pitch = 0.5
  1958.     Sound103.SoundId = "rbxassetid://181356975"
  1959.     Sound103.Volume = 1
  1960.     Model104.Name = "FakeMissile"
  1961.     Model104.Parent = Model1
  1962.     Part105.Name = "FakeMissile"
  1963.     Part105.Parent = Model104
  1964.     Part105.Material = Enum.Material.Metal
  1965.     Part105.BrickColor = BrickColor.new("Quill grey")
  1966.     Part105.Rotation = Vector3.new(180, 90, 0)
  1967.     Part105.CanCollide = false
  1968.     Part105.FormFactor = Enum.FormFactor.Custom
  1969.     Part105.Size = Vector3.new(6.39999962, 1, 0.200000003)
  1970.     Part105.CFrame = CFrame.new(-3.70967841, 11.0001984, 38.9599075, -1.99113711e-05, -5.20106005e-06, 1, 2.55717914e-05, -1, -6.13996781e-06, 1, 1.21387639e-05, 8.00539965e-07)
  1971.     Part105.BottomSurface = Enum.SurfaceType.Weld
  1972.     Part105.TopSurface = Enum.SurfaceType.Weld
  1973.     Part105.Color = Color3.new(0.87451, 0.87451, 0.870588)
  1974.     Part105.Position = Vector3.new(-3.70967841, 11.0001984, 38.9599075)
  1975.     Part105.Orientation = Vector3.new(0, 90, 180)
  1976.     Part105.Color = Color3.new(0.87451, 0.87451, 0.870588)
  1977.     SpecialMesh106.Parent = Part105
  1978.     SpecialMesh106.MeshId = "http://www.roblox.com/asset/?id=74333739"
  1979.     SpecialMesh106.Scale = Vector3.new(25, 25, 24)
  1980.     SpecialMesh106.MeshType = Enum.MeshType.FileMesh
  1981.     SpecialMesh106.Scale = Vector3.new(25, 25, 24)
  1982.     Part107.Name = "Warhead"
  1983.     Part107.Parent = Model1
  1984.     Part107.BrickColor = BrickColor.new("Institutional white")
  1985.     Part107.Reflectance = 0.5
  1986.     Part107.Transparency = 1
  1987.     Part107.Rotation = Vector3.new(180, 0, 0)
  1988.     Part107.Anchored = true
  1989.     Part107.FormFactor = Enum.FormFactor.Plate
  1990.     Part107.Size = Vector3.new(3.79999971, 6.59999943, 3.79999995)
  1991.     Part107.CFrame = CFrame.new(-7.70991611, 33.3989334, 39.2596893, 0.999999702, -6.4844221e-06, -6.66087817e-06, -6.48497235e-06, -0.999999702, -1.0551862e-05, -6.67190989e-06, 1.05441059e-05, -1)
  1992.     Part107.BottomSurface = Enum.SurfaceType.Weld
  1993.     Part107.TopSurface = Enum.SurfaceType.Smooth
  1994.     Part107.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1995.     Part107.Position = Vector3.new(-7.70991611, 33.3989334, 39.2596893)
  1996.     Part107.Orientation = Vector3.new(0, -180, -180)
  1997.     Part107.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1998.     SpecialMesh108.Parent = Part107
  1999.     SpecialMesh108.MeshId = "http://www.roblox.com/asset/?id=1778999"
  2000.     SpecialMesh108.Scale = Vector3.new(3, 5, 3)
  2001.     SpecialMesh108.TextureId = "http://www.roblox.com/asset/?id=2821447"
  2002.     SpecialMesh108.VertexColor = Vector3.new(0.600000024, 0.600000024, 0.600000024)
  2003.     SpecialMesh108.MeshType = Enum.MeshType.FileMesh
  2004.     SpecialMesh108.Scale = Vector3.new(3, 5, 3)
  2005.     Smoke109.Parent = Part107
  2006.     Smoke109.Size = 30
  2007.     Smoke109.Enabled = false
  2008.     Smoke109.Opacity = 1
  2009.     Smoke109.RiseVelocity = 5
  2010.     BillboardGui110.Name = "Light"
  2011.     BillboardGui110.Parent = Part107
  2012.     BillboardGui110.Size = UDim2.new(35, 0, 35, 0)
  2013.     BillboardGui110.Enabled = false
  2014.     BillboardGui110.Active = true
  2015.     ImageLabel111.Name = "Light"
  2016.     ImageLabel111.Parent = BillboardGui110
  2017.     ImageLabel111.Transparency = 1
  2018.     ImageLabel111.Size = UDim2.new(1, 0, 1, 0)
  2019.     ImageLabel111.Active = true
  2020.     ImageLabel111.BackgroundColor3 = Color3.new(0.756863, 0.752941, 0.764706)
  2021.     ImageLabel111.BackgroundTransparency = 1
  2022.     ImageLabel111.Image = "http://www.roblox.com/asset/?id=43708803"
  2023.     Script112.Parent = BillboardGui110
  2024.     table.insert(cors,sandbox(Script112,function()
  2025.         script.Parent.Adornee = script.Parent.Parent
  2026.     end))
  2027.     Smoke113.Name = "Smoke2"
  2028.     Smoke113.Parent = Part107
  2029.     Smoke113.Size = 30
  2030.     Smoke113.Enabled = false
  2031.     Smoke113.Opacity = 1
  2032.     Smoke113.RiseVelocity = 5
  2033.     Smoke114.Name = "Smoke3"
  2034.     Smoke114.Parent = Part107
  2035.     Smoke114.Size = 30
  2036.     Smoke114.Enabled = false
  2037.     Smoke114.Opacity = 1
  2038.     Smoke114.RiseVelocity = 5
  2039.     Smoke115.Name = "Smoke4"
  2040.     Smoke115.Parent = Part107
  2041.     Smoke115.Size = 30
  2042.     Smoke115.Enabled = false
  2043.     Smoke115.Opacity = 1
  2044.     Smoke115.RiseVelocity = 5
  2045.     StringValue116.Name = "INFORMATION"
  2046.     StringValue116.Parent = Part107
  2047.     StringValue117.Name = "Nuke_Information"
  2048.     StringValue117.Parent = StringValue116
  2049.     StringValue117.Value = "Conventional, long-range warhead"
  2050.     StringValue118.Name = "Nuke_Base"
  2051.     StringValue118.Parent = StringValue116
  2052.     StringValue118.Value = "TEL/Mobile"
  2053.     Script119.Name = "Touch"
  2054.     Script119.Parent = Part107
  2055.     Script119.Disabled = true
  2056.     table.insert(cors,sandbox(Script119,function()
  2057.         wait(.1)
  2058.         function onTouch(hit)
  2059.             script.Parent.Anchored = true
  2060.             script.Parent.Parent = Workspace
  2061.             script.Parent.Transparency = 1
  2062.             wait()
  2063.             script.Parent.Atom.Disabled = false
  2064.         end
  2065.  
  2066.         script.Parent.Touched:connect(onTouch)
  2067.     end))
  2068.     Script120.Name = "Atom"
  2069.     Script120.Parent = Part107
  2070.     Script120.Disabled = true
  2071.     table.insert(cors,sandbox(Script120,function()
  2072.         print("Nuke Em' All")
  2073.  
  2074.         local CloudID= "http://www.roblox.com/asset/?id=1095708"
  2075.         local ColorTexture = "http://www.roblox.com/asset/?ID=1361097"
  2076.         local RingID = "http://www.roblox.com/asset/?id=3270017"
  2077.         local SphereID = "http://www.roblox.com/asset/?id=1185246"
  2078.  
  2079.         local BasePosition = script.Parent.Position
  2080.  
  2081.         local Size = 350
  2082.  
  2083.         local Exp = Instance.new("Model")
  2084.         Exp.Name = "ATOMICEXPLOSION"
  2085.         Exp.Parent = game.Workspace
  2086.  
  2087.         local BasePart = Instance.new("Part")
  2088.         BasePart.formFactor = 0
  2089.         BasePart.TopSurface = 0
  2090.         BasePart.BottomSurface = 0
  2091.         BasePart.Anchored = true
  2092.         BasePart.Locked = true
  2093.         BasePart.CanCollide = false
  2094.  
  2095.         local BaseMesh = Instance.new("SpecialMesh")
  2096.         BaseMesh.MeshType = "FileMesh"
  2097.  
  2098.         local CloudMesh = BaseMesh:clone()
  2099.         CloudMesh.MeshId = CloudID
  2100.         CloudMesh.TextureId = ColorTexture
  2101.         CloudMesh.VertexColor = Vector3.new(0.9,0.6,0)
  2102.  
  2103.         local RingMesh = BaseMesh:clone()
  2104.         RingMesh.MeshId = RingID
  2105.  
  2106.         local SphereMesh = BaseMesh:clone()
  2107.         SphereMesh.MeshId = SphereID
  2108.  
  2109.         local Clouds = {}
  2110.         local ShockWave = {}
  2111.         local Sky = script.Sky
  2112.  
  2113.  
  2114.         function Effects()
  2115.             script.Explode:Play()
  2116.             delay(0,function()
  2117.                 for i = 5, 1,-0.01 do
  2118.                     wait()
  2119.                     game.Lighting.Brightness = i
  2120.                 end
  2121.             end)
  2122.         end
  2123.  
  2124.         function Destruction(Pos,Radius)
  2125.             local function Destroy(Model)
  2126.                 for i ,v in ipairs(Model:getChildren()) do
  2127.                     if v:isA("BasePart") then
  2128.                         if (v.Position-Pos).magnitude < Radius then
  2129.                             if v.Anchored == false then
  2130.                                 v:BreakJoints()
  2131.                                 v.Velocity = CFrame.new(v.Position,Pos):vectorToWorldSpace(Vector3.new(math.random(-5,5),5,1000))
  2132.                                 v.Material = "CorrodedMetal"
  2133.                             end
  2134.                         end
  2135.                     end
  2136.                     if #v:getChildren() > 0 then
  2137.                         Destroy(v)
  2138.                     end
  2139.                 end
  2140.             end
  2141.             Destroy(game.Workspace)
  2142.         end
  2143.         function Explode(Pos)
  2144.  
  2145.             local Base = BasePart:clone()
  2146.             Base.Position = Pos
  2147.  
  2148.             local Mesh = CloudMesh:clone()
  2149.             Mesh.Parent = Base
  2150.             Mesh.Scale = Vector3.new(2.5,1,4.5)
  2151.  
  2152.             local PoleBase = BasePart:clone()
  2153.             PoleBase.Position = Pos+Vector3.new(0,0.1,0)
  2154.  
  2155.             local PoleBaseMesh = CloudMesh:clone()
  2156.             PoleBaseMesh.Scale = Vector3.new(1.25,2,2.5)
  2157.             PoleBaseMesh.Parent = PoleBase
  2158.  
  2159.             local Cloud1 = BasePart:clone()
  2160.             Cloud1.Position = Pos+Vector3.new(0,0.75,0)
  2161.  
  2162.             local Cloud1Mesh = CloudMesh:clone()
  2163.             Cloud1Mesh.Scale = Vector3.new(0.5,3,1)
  2164.             Cloud1Mesh.Parent = Cloud1
  2165.  
  2166.             local Cloud2 = BasePart:clone()
  2167.             Cloud2.Position = Pos+Vector3.new(0,1.25,0)
  2168.  
  2169.             local Cloud2Mesh = CloudMesh:clone()
  2170.             Cloud2Mesh.Scale = Vector3.new(0.5,1.5,1)
  2171.             Cloud2Mesh.Parent = Cloud2
  2172.  
  2173.             local Cloud3 = BasePart:clone()
  2174.             Cloud3.Position = Pos+Vector3.new(0,1.7,0)
  2175.  
  2176.             local Cloud3Mesh = CloudMesh:clone()
  2177.             Cloud3Mesh.Scale = Vector3.new(0.5,1.5,1)
  2178.             Cloud3Mesh.Parent = Cloud3
  2179.  
  2180.             local PoleRing = BasePart:clone()
  2181.             PoleRing.Position = Pos+Vector3.new(0,1.3,0)
  2182.             PoleRing.Transparency = 0.2
  2183.             PoleRing.BrickColor = BrickColor.new("Dark stone grey")
  2184.             PoleRing.CFrame = PoleRing.CFrame*CFrame.Angles(math.rad(90),0,0)
  2185.  
  2186.             local Mesh = RingMesh:clone()
  2187.             Mesh.Scale = Vector3.new(1.2,1.2,1.2)
  2188.             Mesh.Parent = PoleRing
  2189.  
  2190.             local MushCloud = BasePart:clone()
  2191.             MushCloud.Position = Pos+Vector3.new(0,2.3,0)
  2192.  
  2193.             local MushMesh = CloudMesh:clone() -- lol
  2194.             MushMesh.Scale = Vector3.new(2.5,1.75,3.5)
  2195.             MushMesh.Parent = MushCloud
  2196.  
  2197.             local TopCloud = BasePart:clone()
  2198.             TopCloud.Position = Pos+Vector3.new(0,2.7,0)
  2199.  
  2200.             local TopMesh = CloudMesh:clone()
  2201.             TopMesh.Scale = Vector3.new(7.5,1.5,1.5)
  2202.             TopMesh.Parent = TopCloud
  2203.  
  2204.             table.insert(Clouds,Base)
  2205.             table.insert(Clouds,TopCloud)
  2206.             table.insert(Clouds,MushCloud)
  2207.             table.insert(Clouds,Cloud1)
  2208.             table.insert(Clouds,Cloud2)
  2209.             table.insert(Clouds,Cloud3)
  2210.             table.insert(Clouds,PoleBase)
  2211.             table.insert(Clouds,PoleRing)
  2212.  
  2213.  
  2214.             local BigRing = BasePart:clone()
  2215.             BigRing.Position = Pos
  2216.             BigRing.CFrame = BigRing.CFrame*CFrame.Angles(math.rad(90),0,0)
  2217.  
  2218.             local BigMesh = RingMesh:clone()
  2219.             BigMesh.Scale = Vector3.new(5,5,1)
  2220.             BigMesh.Parent = BigRing
  2221.  
  2222.             local SmallRing = BasePart:clone()
  2223.             SmallRing.Position = Pos
  2224.             SmallRing.BrickColor = BrickColor.new("Dark stone grey")
  2225.             SmallRing.CFrame = SmallRing.CFrame*CFrame.Angles(math.rad(90),0,0)
  2226.  
  2227.             local SmallMesh = RingMesh:clone()
  2228.             SmallMesh.Scale = Vector3.new(4.6,4.6,1.5)
  2229.             SmallMesh.Parent = SmallRing
  2230.  
  2231.             local InnerSphere = BasePart:clone()
  2232.             InnerSphere.Position = Pos
  2233.             InnerSphere.BrickColor = BrickColor.new("Bright orange")
  2234.             InnerSphere.Transparency = 0.5
  2235.  
  2236.             local InnerSphereMesh = SphereMesh:clone() 
  2237.             InnerSphereMesh.Scale = Vector3.new(-6.5,-6.5,-6.5)
  2238.             InnerSphereMesh.Parent = InnerSphere
  2239.  
  2240.             local OutterSphere = BasePart:clone()
  2241.             OutterSphere.Position = Pos
  2242.             OutterSphere.BrickColor = BrickColor.new("Bright orange")
  2243.             OutterSphere.Transparency = 0.5
  2244.  
  2245.             local OutterSphereMesh = SphereMesh:clone()
  2246.             OutterSphereMesh.Scale = Vector3.new(6.5,6.5,6.5)
  2247.             OutterSphereMesh.Parent = OutterSphere
  2248.  
  2249.             table.insert(ShockWave,BigRing)
  2250.             table.insert(ShockWave,SmallRing)
  2251.             table.insert(ShockWave,OutterSphere)
  2252.             table.insert(ShockWave,InnerSphere)
  2253.             Sky.Parent = game.Lighting
  2254.             for i , v in ipairs(ShockWave) do
  2255.                 v.Parent = Exp
  2256.             end
  2257.             for i , v in ipairs(Clouds) do
  2258.                 v.Parent = Exp
  2259.             end
  2260.             Effects()
  2261.             delay(0,function()
  2262.                 for resize = Size/2.5, Size*3, 2 do
  2263.                     wait()
  2264.                     BigRing.Mesh.Scale = Vector3.new(5*resize,5*resize,1*resize)
  2265.                     SmallRing.Mesh.Scale = Vector3.new(4.6*resize,4.6*resize,1.5*resize)
  2266.                     InnerSphere.Mesh.Scale = Vector3.new(-6.5*resize,-6.5*resize,-6.5*resize)
  2267.                     OutterSphere.Mesh.Scale = Vector3.new(6.5*resize,6.5*resize,6.5*resize)
  2268.                     Destruction(Pos,3*resize)
  2269.                 end
  2270.                 for fade = 0, 1, 0.01 do
  2271.                     wait()
  2272.                     pcall(function()
  2273.                         for i ,v in ipairs(ShockWave) do
  2274.                             v.Transparency = fade
  2275.                         end
  2276.                     end)
  2277.                 end
  2278.                 for i ,v in ipairs(ShockWave) do
  2279.                     v:Remove()
  2280.                 end
  2281.                 done1 = true
  2282.             end)
  2283.             delay(0,function()
  2284.                 for resize = Size/5, Size, 1 do
  2285.                     wait()
  2286.                     pcall(function()
  2287.                         Base.Mesh.Scale = Vector3.new(2.5*resize,1*resize,4.5*resize)
  2288.                         TopCloud.Mesh.Scale = Vector3.new(0.75*resize,1.5*resize,1.5*resize)
  2289.                         MushCloud.Mesh.Scale = Vector3.new(2.5*resize,1.75*resize,3.5*resize)
  2290.                         Cloud1.Mesh.Scale = Vector3.new(0.5*resize,3*resize,1*resize)
  2291.                         Cloud2.Mesh.Scale = Vector3.new(0.5*resize,1.5*resize,1*resize)
  2292.                         Cloud3.Mesh.Scale = Vector3.new(0.5*resize,1.5*resize,1*resize)
  2293.                         PoleBase.Mesh.Scale = Vector3.new(1*resize,2*resize,2.5*resize)
  2294.                         PoleRing.Mesh.Scale = Vector3.new(1.2*resize,1.2*resize,1.2*resize)
  2295.  
  2296.                         Base.Position = Pos+Vector3.new(0,0.05*resize,0)
  2297.                         TopCloud.Position = Pos+Vector3.new(0,2.7*resize,0)
  2298.                         MushCloud.Position = Pos+Vector3.new(0,2.3*resize,0)
  2299.                         Cloud1.Position = Pos+Vector3.new(0,0.75*resize,0)
  2300.                         Cloud2.Position = Pos+Vector3.new(0,1.25*resize,0)
  2301.                         Cloud3.Position = Pos+Vector3.new(0,1.7*resize,0)
  2302.                         PoleBase.Position = Pos+Vector3.new(0,0.1*resize,0)
  2303.                         PoleRing.Position = Pos+Vector3.new(0,1.3*resize,0)
  2304.                     end)
  2305.                 end
  2306.                 done2 = true
  2307.             end)
  2308.             wait(2)
  2309.             for y = 0.6,0,-0.0025 do
  2310.                 wait()
  2311.                 for i , v in ipairs(Clouds) do
  2312.                     v.Mesh.VertexColor = Vector3.new(0.9,y,0)
  2313.                 end
  2314.             end
  2315.             for r = 0.9,0.5,-0.01 do
  2316.                 wait()
  2317.                 for i , v in ipairs(Clouds) do
  2318.                     v.Mesh.VertexColor = Vector3.new(r,0,0)
  2319.                 end
  2320.             end
  2321.             for by = 0,0.5,0.005 do
  2322.                 wait()
  2323.                 for i , v in ipairs(Clouds) do
  2324.                     v.Mesh.VertexColor = Vector3.new(0.5,by,by)
  2325.                     v.Transparency = by*2
  2326.                 end
  2327.                 Base.Mesh.Scale = Base.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
  2328.                 TopCloud.Mesh.Scale = TopCloud.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
  2329.                 MushCloud.Mesh.Scale = MushCloud.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
  2330.                 Cloud1.Mesh.Scale = Cloud1.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
  2331.                 Cloud2.Mesh.Scale = Cloud2.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
  2332.                 Cloud3.Mesh.Scale = Cloud3.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
  2333.                 PoleBase.Mesh.Scale = PoleBase.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
  2334.                 PoleRing.Mesh.Scale = PoleRing.Mesh.Scale+Vector3.new(0.1,0.1,0.1)
  2335.             end
  2336.             done3 = true
  2337.             while true do wait(1) if done1 and done2 and done3 then break end end
  2338.             Exp:remove()
  2339.             wait(20)
  2340.             Sky:remove()
  2341.         end
  2342.  
  2343.  
  2344.  
  2345.  
  2346.         Explode(BasePosition)
  2347.  
  2348.         script.Parent:remove()
  2349.  
  2350.  
  2351.  
  2352.  
  2353.  
  2354.  
  2355.  
  2356.  
  2357.  
  2358.     end))
  2359.     Sound121.Name = "Explode"
  2360.     Sound121.Parent = Script120
  2361.     Sound121.Pitch = 0.5
  2362.     Sound121.SoundId = "http://www.roblox.com/asset?id=130768997"
  2363.     Sound121.Volume = 1
  2364.     Sky122.Parent = Script120
  2365.     Sky122.SkyboxBk = "http://www.roblox.com/asset/?version=1&id=1012890"
  2366.     Sky122.SkyboxDn = "http://www.roblox.com/asset/?version=1&id=1012891"
  2367.     Sky122.SkyboxFt = "http://www.roblox.com/asset/?version=1&id=1012887"
  2368.     Sky122.SkyboxLf = "http://www.roblox.com/asset/?version=1&id=1012889"
  2369.     Sky122.SkyboxRt = "http://www.roblox.com/asset/?version=1&id=1012888"
  2370.     Sky122.SkyboxUp = "http://www.roblox.com/asset/?version=1&id=1014449"
  2371.     Part123.Parent = Model0
  2372.     Part123.Material = Enum.Material.Ice
  2373.     Part123.BrickColor = BrickColor.new("Dark stone grey")
  2374.     Part123.Transparency = 0.5
  2375.     Part123.Rotation = Vector3.new(7.5999999, 0, 0)
  2376.     Part123.CanCollide = false
  2377.     Part123.FormFactor = Enum.FormFactor.Custom
  2378.     Part123.Size = Vector3.new(3, 2.5999999, 0.200000003)
  2379.     Part123.CFrame = CFrame.new(-24.2097893, 8.72938347, 31.1316738, 1, 1.75870337e-05, 6.18270788e-05, -9.95769551e-06, 0.991205812, -0.132270217, -7.78449903e-05, 0.132281274, 0.991214573)
  2380.     Part123.BackSurface = Enum.SurfaceType.Weld
  2381.     Part123.BottomSurface = Enum.SurfaceType.Weld
  2382.     Part123.FrontSurface = Enum.SurfaceType.Weld
  2383.     Part123.LeftSurface = Enum.SurfaceType.Weld
  2384.     Part123.RightSurface = Enum.SurfaceType.Weld
  2385.     Part123.TopSurface = Enum.SurfaceType.Weld
  2386.     Part123.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2387.     Part123.Position = Vector3.new(-24.2097893, 8.72938347, 31.1316738)
  2388.     Part123.Orientation = Vector3.new(7.5999999, 0, 0)
  2389.     Part123.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2390.     BlockMesh124.Parent = Part123
  2391.     BlockMesh124.Offset = Vector3.new(0, 0, 0.200000003)
  2392.     BlockMesh124.Scale = Vector3.new(1, 1.14999998, 0.5)
  2393.     BlockMesh124.Scale = Vector3.new(1, 1.14999998, 0.5)
  2394.     Part125.Parent = Model0
  2395.     Part125.Material = Enum.Material.Metal
  2396.     Part125.BrickColor = BrickColor.new("Grime")
  2397.     Part125.Rotation = Vector3.new(172.399994, 0, 180)
  2398.     Part125.CanCollide = false
  2399.     Part125.FormFactor = Enum.FormFactor.Custom
  2400.     Part125.Size = Vector3.new(3, 0.400000006, 0.200000003)
  2401.     Part125.CFrame = CFrame.new(-24.2096195, 10.2178173, 46.3855438, -1, -5.60768513e-07, -8.06703756e-05, 1.13161541e-05, 0.991207719, -0.132315725, 0.000104148734, -0.132298887, -0.991209865)
  2402.     Part125.BackSurface = Enum.SurfaceType.Weld
  2403.     Part125.BottomSurface = Enum.SurfaceType.Weld
  2404.     Part125.FrontSurface = Enum.SurfaceType.Weld
  2405.     Part125.LeftSurface = Enum.SurfaceType.Weld
  2406.     Part125.RightSurface = Enum.SurfaceType.Weld
  2407.     Part125.TopSurface = Enum.SurfaceType.Weld
  2408.     Part125.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2409.     Part125.Position = Vector3.new(-24.2096195, 10.2178173, 46.3855438)
  2410.     Part125.Orientation = Vector3.new(7.5999999, -180, 0)
  2411.     Part125.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2412.     BlockMesh126.Parent = Part125
  2413.     BlockMesh126.Offset = Vector3.new(0, 0, 0.200000003)
  2414.     Part127.Parent = Model0
  2415.     Part127.Material = Enum.Material.Ice
  2416.     Part127.BrickColor = BrickColor.new("Dark stone grey")
  2417.     Part127.Transparency = 0.5
  2418.     Part127.Rotation = Vector3.new(-180, 0, -180)
  2419.     Part127.CanCollide = false
  2420.     Part127.FormFactor = Enum.FormFactor.Custom
  2421.     Part127.Size = Vector3.new(4.4000001, 1.79999995, 0.200000003)
  2422.     Part127.CFrame = CFrame.new(-23.5096817, 9.10065365, 36.3602753, -1, 9.14261545e-06, -6.24489476e-05, 9.84558574e-06, 0.99999088, 2.81994267e-06, 7.66839075e-05, 1.28775291e-05, -1.00000012)
  2423.     Part127.BackSurface = Enum.SurfaceType.Weld
  2424.     Part127.BottomSurface = Enum.SurfaceType.Weld
  2425.     Part127.FrontSurface = Enum.SurfaceType.Weld
  2426.     Part127.LeftSurface = Enum.SurfaceType.Weld
  2427.     Part127.RightSurface = Enum.SurfaceType.Weld
  2428.     Part127.TopSurface = Enum.SurfaceType.Weld
  2429.     Part127.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2430.     Part127.Position = Vector3.new(-23.5096817, 9.10065365, 36.3602753)
  2431.     Part127.Orientation = Vector3.new(0, -180, 0)
  2432.     Part127.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2433.     BlockMesh128.Parent = Part127
  2434.     BlockMesh128.Offset = Vector3.new(0, 0, 0.200000003)
  2435.     BlockMesh128.Scale = Vector3.new(1, 1.14999998, 0.5)
  2436.     BlockMesh128.Scale = Vector3.new(1, 1.14999998, 0.5)
  2437.     Part129.Parent = Model0
  2438.     Part129.Material = Enum.Material.Metal
  2439.     Part129.BrickColor = BrickColor.new("Grime")
  2440.     Part129.Rotation = Vector3.new(7.5999999, 0, 0)
  2441.     Part129.CanCollide = false
  2442.     Part129.FormFactor = Enum.FormFactor.Custom
  2443.     Part129.Size = Vector3.new(5.80000019, 0.400000036, 0.200000003)
  2444.     Part129.CFrame = CFrame.new(-19.6098289, 7.63907337, 30.9858189, 1, 1.76825579e-05, 6.23572778e-05, -9.98225096e-06, 0.991205812, -0.132270217, -7.83831638e-05, 0.132281274, 0.991214573)
  2445.     Part129.BackSurface = Enum.SurfaceType.Weld
  2446.     Part129.BottomSurface = Enum.SurfaceType.Weld
  2447.     Part129.FrontSurface = Enum.SurfaceType.Weld
  2448.     Part129.LeftSurface = Enum.SurfaceType.Weld
  2449.     Part129.RightSurface = Enum.SurfaceType.Weld
  2450.     Part129.TopSurface = Enum.SurfaceType.Weld
  2451.     Part129.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2452.     Part129.Position = Vector3.new(-19.6098289, 7.63907337, 30.9858189)
  2453.     Part129.Orientation = Vector3.new(7.5999999, 0, 0)
  2454.     Part129.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2455.     BlockMesh130.Parent = Part129
  2456.     BlockMesh130.Offset = Vector3.new(0, 0, 0.200000003)
  2457.     BlockMesh130.Scale = Vector3.new(1, 1.14999998, 1)
  2458.     BlockMesh130.Scale = Vector3.new(1, 1.14999998, 1)
  2459.     Part131.Parent = Model0
  2460.     Part131.Material = Enum.Material.Ice
  2461.     Part131.BrickColor = BrickColor.new("Dark stone grey")
  2462.     Part131.Transparency = 0.5
  2463.     Part131.Rotation = Vector3.new(7.5999999, 0, 0)
  2464.     Part131.CanCollide = false
  2465.     Part131.FormFactor = Enum.FormFactor.Custom
  2466.     Part131.Size = Vector3.new(5.80000019, 2, 0.200000003)
  2467.     Part131.CFrame = CFrame.new(-19.8097687, 8.82844543, 31.1445694, 1, 1.76347712e-05, 6.20919236e-05, -9.96978906e-06, 0.991205275, -0.132273212, -7.81138588e-05, 0.132284284, 0.991213918)
  2468.     Part131.BackSurface = Enum.SurfaceType.Weld
  2469.     Part131.BottomSurface = Enum.SurfaceType.Weld
  2470.     Part131.FrontSurface = Enum.SurfaceType.Weld
  2471.     Part131.LeftSurface = Enum.SurfaceType.Weld
  2472.     Part131.RightSurface = Enum.SurfaceType.Weld
  2473.     Part131.TopSurface = Enum.SurfaceType.Weld
  2474.     Part131.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2475.     Part131.Position = Vector3.new(-19.8097687, 8.82844543, 31.1445694)
  2476.     Part131.Orientation = Vector3.new(7.5999999, 0, 0)
  2477.     Part131.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2478.     BlockMesh132.Parent = Part131
  2479.     BlockMesh132.Offset = Vector3.new(0, 0, 0.200000003)
  2480.     BlockMesh132.Scale = Vector3.new(1, 1.14999998, 0.5)
  2481.     BlockMesh132.Scale = Vector3.new(1, 1.14999998, 0.5)
  2482.     Part133.Parent = Model0
  2483.     Part133.Material = Enum.Material.Metal
  2484.     Part133.BrickColor = BrickColor.new("Grime")
  2485.     Part133.CanCollide = false
  2486.     Part133.FormFactor = Enum.FormFactor.Custom
  2487.     Part133.Size = Vector3.new(10.1999998, 0.999999881, 2.79999995)
  2488.     Part133.CFrame = CFrame.new(0.190229297, 10.7005215, 34.0595284, 1, 8.29581222e-06, 4.42689707e-05, -8.66455866e-06, 0.99999088, 2.18264177e-06, -5.17070403e-05, 3.0374008e-06, 1.00000012)
  2489.     Part133.BackSurface = Enum.SurfaceType.Weld
  2490.     Part133.BottomSurface = Enum.SurfaceType.Weld
  2491.     Part133.FrontSurface = Enum.SurfaceType.Weld
  2492.     Part133.LeftSurface = Enum.SurfaceType.Weld
  2493.     Part133.RightSurface = Enum.SurfaceType.Weld
  2494.     Part133.TopSurface = Enum.SurfaceType.Weld
  2495.     Part133.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2496.     Part133.Position = Vector3.new(0.190229297, 10.7005215, 34.0595284)
  2497.     Part133.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2498.     BlockMesh134.Parent = Part133
  2499.     Part135.Parent = Model0
  2500.     Part135.Material = Enum.Material.Metal
  2501.     Part135.BrickColor = BrickColor.new("Grime")
  2502.     Part135.Rotation = Vector3.new(-180, 0, -180)
  2503.     Part135.CanCollide = false
  2504.     Part135.FormFactor = Enum.FormFactor.Custom
  2505.     Part135.Size = Vector3.new(8.80000114, 0.200000003, 4.80000019)
  2506.     Part135.CFrame = CFrame.new(-21.109726, 10.3005667, 33.8601379, -1, 9.14261545e-06, -6.24489476e-05, 9.84558574e-06, 0.99999088, 2.81994267e-06, 7.66839075e-05, 1.28775291e-05, -1.00000012)
  2507.     Part135.BackSurface = Enum.SurfaceType.Weld
  2508.     Part135.BottomSurface = Enum.SurfaceType.Weld
  2509.     Part135.FrontSurface = Enum.SurfaceType.Weld
  2510.     Part135.LeftSurface = Enum.SurfaceType.Weld
  2511.     Part135.RightSurface = Enum.SurfaceType.Weld
  2512.     Part135.TopSurface = Enum.SurfaceType.Weld
  2513.     Part135.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2514.     Part135.Position = Vector3.new(-21.109726, 10.3005667, 33.8601379)
  2515.     Part135.Orientation = Vector3.new(0, -180, 0)
  2516.     Part135.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2517.     BlockMesh136.Parent = Part135
  2518.     Part137.Parent = Model0
  2519.     Part137.Material = Enum.Material.Metal
  2520.     Part137.BrickColor = BrickColor.new("Grime")
  2521.     Part137.Rotation = Vector3.new(7.5999999, 0, 0)
  2522.     Part137.CanCollide = false
  2523.     Part137.FormFactor = Enum.FormFactor.Custom
  2524.     Part137.Size = Vector3.new(3.20000005, 0.400000006, 0.200000003)
  2525.     Part137.CFrame = CFrame.new(-24.309742, 10.2161369, 31.330101, 1, 1.75873574e-05, 6.18266713e-05, -9.95750725e-06, 0.991204858, -0.132279024, -7.78446993e-05, 0.132290065, 0.991213858)
  2526.     Part137.BackSurface = Enum.SurfaceType.Weld
  2527.     Part137.BottomSurface = Enum.SurfaceType.Weld
  2528.     Part137.FrontSurface = Enum.SurfaceType.Weld
  2529.     Part137.LeftSurface = Enum.SurfaceType.Weld
  2530.     Part137.RightSurface = Enum.SurfaceType.Weld
  2531.     Part137.TopSurface = Enum.SurfaceType.Weld
  2532.     Part137.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2533.     Part137.Position = Vector3.new(-24.309742, 10.2161369, 31.330101)
  2534.     Part137.Orientation = Vector3.new(7.5999999, 0, 0)
  2535.     Part137.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2536.     BlockMesh138.Parent = Part137
  2537.     BlockMesh138.Offset = Vector3.new(0, 0, 0.200000003)
  2538.     Part139.Parent = Model0
  2539.     Part139.Material = Enum.Material.Metal
  2540.     Part139.BrickColor = BrickColor.new("Grime")
  2541.     Part139.Rotation = Vector3.new(-180, -0.00999999978, -180)
  2542.     Part139.CanCollide = false
  2543.     Part139.FormFactor = Enum.FormFactor.Custom
  2544.     Part139.Size = Vector3.new(8.80000114, 0.200000003, 4.80000019)
  2545.     Part139.CFrame = CFrame.new(-21.1093521, 10.3008881, 43.8603363, -1, 1.11894988e-05, -0.000103796992, 1.19273136e-05, 1, 3.20989275e-05, 0.000118718235, 4.26027473e-05, -1)
  2546.     Part139.BackSurface = Enum.SurfaceType.Weld
  2547.     Part139.BottomSurface = Enum.SurfaceType.Weld
  2548.     Part139.FrontSurface = Enum.SurfaceType.Weld
  2549.     Part139.LeftSurface = Enum.SurfaceType.Weld
  2550.     Part139.RightSurface = Enum.SurfaceType.Weld
  2551.     Part139.TopSurface = Enum.SurfaceType.Weld
  2552.     Part139.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2553.     Part139.Position = Vector3.new(-21.1093521, 10.3008881, 43.8603363)
  2554.     Part139.Orientation = Vector3.new(0, -179.98999, 0)
  2555.     Part139.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2556.     BlockMesh140.Parent = Part139
  2557.     Part141.Parent = Model0
  2558.     Part141.Material = Enum.Material.Metal
  2559.     Part141.BrickColor = BrickColor.new("Grime")
  2560.     Part141.Rotation = Vector3.new(7.5999999, 0, 0)
  2561.     Part141.CanCollide = false
  2562.     Part141.FormFactor = Enum.FormFactor.Custom
  2563.     Part141.Size = Vector3.new(5.5999999, 0.600000083, 0.200000003)
  2564.     Part141.CFrame = CFrame.new(-19.7097855, 10.1169653, 31.3165245, 1, 1.75877558e-05, 6.18268677e-05, -9.95769642e-06, 0.991204143, -0.132281795, -7.78449903e-05, 0.132292852, 0.991212904)
  2565.     Part141.BackSurface = Enum.SurfaceType.Weld
  2566.     Part141.BottomSurface = Enum.SurfaceType.Weld
  2567.     Part141.FrontSurface = Enum.SurfaceType.Weld
  2568.     Part141.LeftSurface = Enum.SurfaceType.Weld
  2569.     Part141.RightSurface = Enum.SurfaceType.Weld
  2570.     Part141.TopSurface = Enum.SurfaceType.Weld
  2571.     Part141.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2572.     Part141.Position = Vector3.new(-19.7097855, 10.1169653, 31.3165245)
  2573.     Part141.Orientation = Vector3.new(7.5999999, 0, 0)
  2574.     Part141.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2575.     BlockMesh142.Parent = Part141
  2576.     BlockMesh142.Offset = Vector3.new(0, 0, 0.200000003)
  2577.     Part143.Parent = Model0
  2578.     Part143.Material = Enum.Material.Metal
  2579.     Part143.BrickColor = BrickColor.new("Grime")
  2580.     Part143.Rotation = Vector3.new(-180, -0.00999999978, -180)
  2581.     Part143.CanCollide = false
  2582.     Part143.FormFactor = Enum.FormFactor.Custom
  2583.     Part143.Size = Vector3.new(4, 0.200000048, 0.400000006)
  2584.     Part143.CFrame = CFrame.new(-23.5095596, 10.1009521, 41.6606407, -1, 1.09616185e-05, -9.92156856e-05, 1.215679e-05, 1, 2.88735409e-05, 0.000123329461, 4.58503346e-05, -1)
  2585.     Part143.BackSurface = Enum.SurfaceType.Weld
  2586.     Part143.BottomSurface = Enum.SurfaceType.Weld
  2587.     Part143.FrontSurface = Enum.SurfaceType.Weld
  2588.     Part143.LeftSurface = Enum.SurfaceType.Weld
  2589.     Part143.RightSurface = Enum.SurfaceType.Weld
  2590.     Part143.TopSurface = Enum.SurfaceType.Weld
  2591.     Part143.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2592.     Part143.Position = Vector3.new(-23.5095596, 10.1009521, 41.6606407)
  2593.     Part143.Orientation = Vector3.new(0, -179.98999, 0)
  2594.     Part143.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2595.     BlockMesh144.Parent = Part143
  2596.     Part145.Parent = Model0
  2597.     Part145.Material = Enum.Material.Metal
  2598.     Part145.BrickColor = BrickColor.new("Grime")
  2599.     Part145.Rotation = Vector3.new(-180, 0, -180)
  2600.     Part145.CanCollide = false
  2601.     Part145.FormFactor = Enum.FormFactor.Custom
  2602.     Part145.Size = Vector3.new(4, 0.200000048, 0.400000006)
  2603.     Part145.CFrame = CFrame.new(-23.5096741, 10.1006269, 36.060318, -1, 9.1545362e-06, -6.27174304e-05, 9.85749102e-06, 0.99999088, 3.03555453e-06, 7.69523976e-05, 1.30931385e-05, -1.00000012)
  2604.     Part145.BackSurface = Enum.SurfaceType.Weld
  2605.     Part145.BottomSurface = Enum.SurfaceType.Weld
  2606.     Part145.FrontSurface = Enum.SurfaceType.Weld
  2607.     Part145.LeftSurface = Enum.SurfaceType.Weld
  2608.     Part145.RightSurface = Enum.SurfaceType.Weld
  2609.     Part145.TopSurface = Enum.SurfaceType.Weld
  2610.     Part145.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2611.     Part145.Position = Vector3.new(-23.5096741, 10.1006269, 36.060318)
  2612.     Part145.Orientation = Vector3.new(0, -180, 0)
  2613.     Part145.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2614.     BlockMesh146.Parent = Part145
  2615.     Part147.Parent = Model0
  2616.     Part147.Material = Enum.Material.Ice
  2617.     Part147.BrickColor = BrickColor.new("Dark stone grey")
  2618.     Part147.Transparency = 0.5
  2619.     Part147.Rotation = Vector3.new(0, 0.00999999978, 0)
  2620.     Part147.CanCollide = false
  2621.     Part147.FormFactor = Enum.FormFactor.Custom
  2622.     Part147.Size = Vector3.new(4.4000001, 1.79999995, 0.200000003)
  2623.     Part147.CFrame = CFrame.new(-23.5096359, 9.10095882, 41.3607674, 1, 1.08327658e-05, 9.66105945e-05, -1.1122107e-05, 1, -2.70385699e-05, -0.000102494581, 3.11788244e-05, 1)
  2624.     Part147.BackSurface = Enum.SurfaceType.Weld
  2625.     Part147.BottomSurface = Enum.SurfaceType.Weld
  2626.     Part147.FrontSurface = Enum.SurfaceType.Weld
  2627.     Part147.LeftSurface = Enum.SurfaceType.Weld
  2628.     Part147.RightSurface = Enum.SurfaceType.Weld
  2629.     Part147.TopSurface = Enum.SurfaceType.Weld
  2630.     Part147.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2631.     Part147.Position = Vector3.new(-23.5096359, 9.10095882, 41.3607674)
  2632.     Part147.Orientation = Vector3.new(0, 0.00999999978, 0)
  2633.     Part147.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2634.     BlockMesh148.Parent = Part147
  2635.     BlockMesh148.Offset = Vector3.new(0, 0, 0.200000003)
  2636.     BlockMesh148.Scale = Vector3.new(1, 1.14999998, 0.5)
  2637.     BlockMesh148.Scale = Vector3.new(1, 1.14999998, 0.5)
  2638.     Part149.Parent = Model0
  2639.     Part149.Material = Enum.Material.Metal
  2640.     Part149.BrickColor = BrickColor.new("Grime")
  2641.     Part149.Rotation = Vector3.new(172.399994, -0.00999999978, 180)
  2642.     Part149.CanCollide = false
  2643.     Part149.FormFactor = Enum.FormFactor.Custom
  2644.     Part149.Size = Vector3.new(6.20000029, 0.600000083, 0.200000003)
  2645.     Part149.CFrame = CFrame.new(-19.8094444, 10.1184397, 46.3984222, -1, -9.0132653e-06, -0.000181728246, 1.62895012e-05, 0.991222322, -0.132206291, 0.00020543822, -0.132189453, -0.991224468)
  2646.     Part149.BackSurface = Enum.SurfaceType.Weld
  2647.     Part149.BottomSurface = Enum.SurfaceType.Weld
  2648.     Part149.FrontSurface = Enum.SurfaceType.Weld
  2649.     Part149.LeftSurface = Enum.SurfaceType.Weld
  2650.     Part149.RightSurface = Enum.SurfaceType.Weld
  2651.     Part149.TopSurface = Enum.SurfaceType.Weld
  2652.     Part149.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2653.     Part149.Position = Vector3.new(-19.8094444, 10.1184397, 46.3984222)
  2654.     Part149.Orientation = Vector3.new(7.5999999, -179.98999, 0)
  2655.     Part149.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2656.     BlockMesh150.Parent = Part149
  2657.     BlockMesh150.Offset = Vector3.new(0, 0, 0.200000003)
  2658.     Part151.Parent = Model0
  2659.     Part151.Material = Enum.Material.Metal
  2660.     Part151.BrickColor = BrickColor.new("Grime")
  2661.     Part151.Rotation = Vector3.new(-180, 0, -180)
  2662.     Part151.CanCollide = false
  2663.     Part151.FormFactor = Enum.FormFactor.Custom
  2664.     Part151.Size = Vector3.new(0.400000125, 0.400000095, 4.80000019)
  2665.     Part151.CFrame = CFrame.new(-25.7096767, 10.2006121, 33.8604965, -1, 9.1545362e-06, -6.27174304e-05, 9.85749102e-06, 0.99999088, 3.03555453e-06, 7.69523976e-05, 1.30931385e-05, -1.00000012)
  2666.     Part151.BackSurface = Enum.SurfaceType.Weld
  2667.     Part151.BottomSurface = Enum.SurfaceType.Weld
  2668.     Part151.FrontSurface = Enum.SurfaceType.Weld
  2669.     Part151.LeftSurface = Enum.SurfaceType.Weld
  2670.     Part151.RightSurface = Enum.SurfaceType.Weld
  2671.     Part151.TopSurface = Enum.SurfaceType.Weld
  2672.     Part151.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2673.     Part151.Position = Vector3.new(-25.7096767, 10.2006121, 33.8604965)
  2674.     Part151.Orientation = Vector3.new(0, -180, 0)
  2675.     Part151.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2676.     BlockMesh152.Parent = Part151
  2677.     Part153.Parent = Model0
  2678.     Part153.Material = Enum.Material.Ice
  2679.     Part153.BrickColor = BrickColor.new("Dark stone grey")
  2680.     Part153.Transparency = 0.5
  2681.     Part153.Rotation = Vector3.new(0, 90, 0)
  2682.     Part153.CanCollide = false
  2683.     Part153.FormFactor = Enum.FormFactor.Custom
  2684.     Part153.Size = Vector3.new(4.4000001, 2.5999999, 0.200000003)
  2685.     Part153.CFrame = CFrame.new(-26.0095062, 8.70113087, 44.0608444, -6.27532063e-05, 9.1800166e-06, 1, 6.16025354e-05, 1, -9.47351418e-06, -1, 6.58212812e-05, -6.87484062e-05)
  2686.     Part153.BackSurface = Enum.SurfaceType.Weld
  2687.     Part153.BottomSurface = Enum.SurfaceType.Weld
  2688.     Part153.FrontSurface = Enum.SurfaceType.Weld
  2689.     Part153.LeftSurface = Enum.SurfaceType.Weld
  2690.     Part153.RightSurface = Enum.SurfaceType.Weld
  2691.     Part153.TopSurface = Enum.SurfaceType.Weld
  2692.     Part153.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2693.     Part153.Position = Vector3.new(-26.0095062, 8.70113087, 44.0608444)
  2694.     Part153.Orientation = Vector3.new(0, 90, 0)
  2695.     Part153.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2696.     BlockMesh154.Parent = Part153
  2697.     BlockMesh154.Offset = Vector3.new(0, 0, 0.200000003)
  2698.     BlockMesh154.Scale = Vector3.new(1, 1.14999998, 0.5)
  2699.     BlockMesh154.Scale = Vector3.new(1, 1.14999998, 0.5)
  2700.     Part155.Parent = Model0
  2701.     Part155.Material = Enum.Material.Metal
  2702.     Part155.BrickColor = BrickColor.new("Grime")
  2703.     Part155.Rotation = Vector3.new(180, 0, -180)
  2704.     Part155.CanCollide = false
  2705.     Part155.FormFactor = Enum.FormFactor.Custom
  2706.     Part155.Size = Vector3.new(0.400000125, 2.60000014, 0.399999619)
  2707.     Part155.CFrame = CFrame.new(-25.7094059, 8.70073032, 36.0606499, -1, 8.09867561e-06, -4.05344908e-05, 8.86677481e-06, 1, -1.35534392e-05, 5.598793e-05, -2.67428459e-06, -1)
  2708.     Part155.BackSurface = Enum.SurfaceType.Weld
  2709.     Part155.BottomSurface = Enum.SurfaceType.Weld
  2710.     Part155.FrontSurface = Enum.SurfaceType.Weld
  2711.     Part155.LeftSurface = Enum.SurfaceType.Weld
  2712.     Part155.RightSurface = Enum.SurfaceType.Weld
  2713.     Part155.TopSurface = Enum.SurfaceType.Weld
  2714.     Part155.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2715.     Part155.Position = Vector3.new(-25.7094059, 8.70073032, 36.0606499)
  2716.     Part155.Orientation = Vector3.new(0, -180, 0)
  2717.     Part155.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2718.     BlockMesh156.Parent = Part155
  2719.     Part157.Parent = Model0
  2720.     Part157.Material = Enum.Material.Metal
  2721.     Part157.BrickColor = BrickColor.new("Grime")
  2722.     Part157.Rotation = Vector3.new(180, 0, -180)
  2723.     Part157.CanCollide = false
  2724.     Part157.FormFactor = Enum.FormFactor.Custom
  2725.     Part157.Size = Vector3.new(0.400000125, 2.60000014, 0.399999619)
  2726.     Part157.CFrame = CFrame.new(-25.7093887, 8.70087433, 41.6606712, -1, 8.28512475e-06, -4.41889606e-05, 8.58297699e-06, 1, -1.10809588e-05, 5.01835166e-05, -6.86198973e-06, -1)
  2727.     Part157.BackSurface = Enum.SurfaceType.Weld
  2728.     Part157.BottomSurface = Enum.SurfaceType.Weld
  2729.     Part157.FrontSurface = Enum.SurfaceType.Weld
  2730.     Part157.LeftSurface = Enum.SurfaceType.Weld
  2731.     Part157.RightSurface = Enum.SurfaceType.Weld
  2732.     Part157.TopSurface = Enum.SurfaceType.Weld
  2733.     Part157.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2734.     Part157.Position = Vector3.new(-25.7093887, 8.70087433, 41.6606712)
  2735.     Part157.Orientation = Vector3.new(0, -180, 0)
  2736.     Part157.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2737.     BlockMesh158.Parent = Part157
  2738.     Part159.Parent = Model0
  2739.     Part159.Material = Enum.Material.Metal
  2740.     Part159.BrickColor = BrickColor.new("Grime")
  2741.     Part159.Transparency = 1
  2742.     Part159.Rotation = Vector3.new(0, 0, -90)
  2743.     Part159.CanCollide = false
  2744.     Part159.FormFactor = Enum.FormFactor.Custom
  2745.     Part159.Size = Vector3.new(0.600000024, 33.4000015, 1.20000005)
  2746.     Part159.CFrame = CFrame.new(-4.310009, 11.8002071, 39.1599884, -6.21251684e-06, 1, 6.75599949e-07, -1, -6.68983739e-06, 1.11012896e-05, 4.27564555e-06, -1.03863886e-05, 1)
  2747.     Part159.BackSurface = Enum.SurfaceType.Weld
  2748.     Part159.BottomSurface = Enum.SurfaceType.Weld
  2749.     Part159.FrontSurface = Enum.SurfaceType.Weld
  2750.     Part159.LeftSurface = Enum.SurfaceType.Weld
  2751.     Part159.RightSurface = Enum.SurfaceType.Weld
  2752.     Part159.TopSurface = Enum.SurfaceType.Weld
  2753.     Part159.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2754.     Part159.Position = Vector3.new(-4.310009, 11.8002071, 39.1599884)
  2755.     Part159.Orientation = Vector3.new(0, 0, -90)
  2756.     Part159.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2757.     CylinderMesh160.Parent = Part159
  2758.     CylinderMesh160.Offset = Vector3.new(6.5, 0, 0)
  2759.     CylinderMesh160.Scale = Vector3.new(2, 1.5, 1.60000002)
  2760.     CylinderMesh160.Scale = Vector3.new(2, 1.5, 1.60000002)
  2761.     Part161.Parent = Model0
  2762.     Part161.Material = Enum.Material.Metal
  2763.     Part161.BrickColor = BrickColor.new("Grime")
  2764.     Part161.Rotation = Vector3.new(-180, -0.00999999978, -180)
  2765.     Part161.CanCollide = false
  2766.     Part161.FormFactor = Enum.FormFactor.Custom
  2767.     Part161.Size = Vector3.new(0.400000125, 0.400000095, 4.80000019)
  2768.     Part161.CFrame = CFrame.new(-25.7093048, 10.200943, 43.8608704, -1, 1.09616185e-05, -9.92156856e-05, 1.215679e-05, 1, 2.88735409e-05, 0.000123329461, 4.58503346e-05, -1)
  2769.     Part161.BackSurface = Enum.SurfaceType.Weld
  2770.     Part161.BottomSurface = Enum.SurfaceType.Weld
  2771.     Part161.FrontSurface = Enum.SurfaceType.Weld
  2772.     Part161.LeftSurface = Enum.SurfaceType.Weld
  2773.     Part161.RightSurface = Enum.SurfaceType.Weld
  2774.     Part161.TopSurface = Enum.SurfaceType.Weld
  2775.     Part161.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2776.     Part161.Position = Vector3.new(-25.7093048, 10.200943, 43.8608704)
  2777.     Part161.Orientation = Vector3.new(0, -179.98999, 0)
  2778.     Part161.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2779.     BlockMesh162.Parent = Part161
  2780.     Part163.Name = "Brick"
  2781.     Part163.Parent = Model0
  2782.     Part163.Material = Enum.Material.Metal
  2783.     Part163.BrickColor = BrickColor.new("Grime")
  2784.     Part163.Transparency = 1
  2785.     Part163.Rotation = Vector3.new(-81.8699951, 0, 0)
  2786.     Part163.CanCollide = false
  2787.     Part163.FormFactor = Enum.FormFactor.Custom
  2788.     Part163.Size = Vector3.new(2, 0.200000003, 1.19999993)
  2789.     Part163.CFrame = CFrame.new(-15.1100616, 9.22443581, 31.4195766, 1, -1.95444609e-05, 1.00356256e-05, -7.23307085e-06, 0.141354978, 0.989949763, -2.19993763e-05, -0.989958763, 0.141357139)
  2790.     Part163.BackSurface = Enum.SurfaceType.Weld
  2791.     Part163.BottomSurface = Enum.SurfaceType.Weld
  2792.     Part163.FrontSurface = Enum.SurfaceType.Weld
  2793.     Part163.LeftSurface = Enum.SurfaceType.Weld
  2794.     Part163.RightSurface = Enum.SurfaceType.Weld
  2795.     Part163.TopSurface = Enum.SurfaceType.Weld
  2796.     Part163.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2797.     Part163.Position = Vector3.new(-15.1100616, 9.22443581, 31.4195766)
  2798.     Part163.Orientation = Vector3.new(-81.8699951, 0, 0)
  2799.     Part163.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2800.     BlockMesh164.Parent = Part163
  2801.     BlockMesh164.Offset = Vector3.new(0, -0.189999998, 0)
  2802.     Part165.Parent = Model0
  2803.     Part165.Material = Enum.Material.Ice
  2804.     Part165.BrickColor = BrickColor.new("Dark stone grey")
  2805.     Part165.Transparency = 0.5
  2806.     Part165.Rotation = Vector3.new(-0.00999999978, 90, 0)
  2807.     Part165.CanCollide = false
  2808.     Part165.FormFactor = Enum.FormFactor.Custom
  2809.     Part165.Size = Vector3.new(4.4000001, 2.5999999, 0.200000003)
  2810.     Part165.CFrame = CFrame.new(-26.0100727, 8.70062733, 33.660717, 1.50852629e-05, 8.59109969e-06, 1, -0.000113904629, 0.999991715, -9.33180672e-06, -1.00000143, -0.000103434344, 5.23921777e-08)
  2811.     Part165.BackSurface = Enum.SurfaceType.Weld
  2812.     Part165.BottomSurface = Enum.SurfaceType.Weld
  2813.     Part165.FrontSurface = Enum.SurfaceType.Weld
  2814.     Part165.LeftSurface = Enum.SurfaceType.Weld
  2815.     Part165.RightSurface = Enum.SurfaceType.Weld
  2816.     Part165.TopSurface = Enum.SurfaceType.Weld
  2817.     Part165.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2818.     Part165.Position = Vector3.new(-26.0100727, 8.70062733, 33.660717)
  2819.     Part165.Orientation = Vector3.new(0, 90, -0.00999999978)
  2820.     Part165.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2821.     BlockMesh166.Parent = Part165
  2822.     BlockMesh166.Offset = Vector3.new(0, 0, 0.200000003)
  2823.     BlockMesh166.Scale = Vector3.new(1, 1.14999998, 0.5)
  2824.     BlockMesh166.Scale = Vector3.new(1, 1.14999998, 0.5)
  2825.     WedgePart167.Parent = Model0
  2826.     WedgePart167.Material = Enum.Material.Metal
  2827.     WedgePart167.BrickColor = BrickColor.new("Grime")
  2828.     WedgePart167.Rotation = Vector3.new(90, 0, 180)
  2829.     WedgePart167.FormFactor = Enum.FormFactor.Custom
  2830.     WedgePart167.Size = Vector3.new(10.1999998, 1.60000014, 1.00000012)
  2831.     WedgePart167.CFrame = CFrame.new(0.190155506, 10.7001343, 31.8595524, -1, -6.39187638e-05, -9.26415669e-06, 9.63382809e-06, -1.61062781e-05, -0.99999088, 7.13567133e-05, -1.00000012, 1.08866034e-05)
  2832.     WedgePart167.BackSurface = Enum.SurfaceType.Weld
  2833.     WedgePart167.BottomSurface = Enum.SurfaceType.Weld
  2834.     WedgePart167.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2835.     WedgePart167.Position = Vector3.new(0.190155506, 10.7001343, 31.8595524)
  2836.     WedgePart167.Orientation = Vector3.new(89.7599945, -40.3999977, 149.110001)
  2837.     WedgePart167.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2838.     SpecialMesh168.Parent = WedgePart167
  2839.     SpecialMesh168.MeshType = Enum.MeshType.Wedge
  2840.     WedgePart169.Parent = Model0
  2841.     WedgePart169.Material = Enum.Material.Metal
  2842.     WedgePart169.BrickColor = BrickColor.new("Grime")
  2843.     WedgePart169.Rotation = Vector3.new(90, 0, 179.98999)
  2844.     WedgePart169.CanCollide = false
  2845.     WedgePart169.FormFactor = Enum.FormFactor.Custom
  2846.     WedgePart169.Size = Vector3.new(0.400000006, 0.400000006, 3)
  2847.     WedgePart169.CFrame = CFrame.new(-25.7095623, 8.90049076, 31.2609272, -1, -0.00011542545, -1.16997289e-05, 1.24401122e-05, 1.74538945e-05, -0.999991715, 0.000130459724, -1.00000143, -2.79238375e-05)
  2848.     WedgePart169.BackSurface = Enum.SurfaceType.Weld
  2849.     WedgePart169.BottomSurface = Enum.SurfaceType.Weld
  2850.     WedgePart169.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2851.     WedgePart169.Position = Vector3.new(-25.7095623, 8.90049076, 31.2609272)
  2852.     WedgePart169.Orientation = Vector3.new(89.7699966, -157.269989, 35.4799995)
  2853.     WedgePart169.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2854.     SpecialMesh170.Parent = WedgePart169
  2855.     SpecialMesh170.MeshType = Enum.MeshType.Wedge
  2856.     WedgePart171.Parent = Model0
  2857.     WedgePart171.Material = Enum.Material.Metal
  2858.     WedgePart171.BrickColor = BrickColor.new("Grime")
  2859.     WedgePart171.Rotation = Vector3.new(90, 0, 180)
  2860.     WedgePart171.CanCollide = false
  2861.     WedgePart171.FormFactor = Enum.FormFactor.Custom
  2862.     WedgePart171.Size = Vector3.new(0.400000006, 1.20000005, 0.999999821)
  2863.     WedgePart171.CFrame = CFrame.new(-25.7096157, 7.90141249, 35.2606316, -1, -4.28536587e-05, -1.1318748e-05, 1.20651166e-05, -9.25489076e-05, -0.999991715, 5.78865729e-05, -1.00000143, 8.20791174e-05)
  2864.     WedgePart171.BackSurface = Enum.SurfaceType.Weld
  2865.     WedgePart171.BottomSurface = Enum.SurfaceType.Weld
  2866.     WedgePart171.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2867.     WedgePart171.Position = Vector3.new(-25.7096157, 7.90141249, 35.2606316)
  2868.     WedgePart171.Orientation = Vector3.new(89.7699966, -7.8499999, 172.569992)
  2869.     WedgePart171.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2870.     SpecialMesh172.Parent = WedgePart171
  2871.     SpecialMesh172.MeshType = Enum.MeshType.Wedge
  2872.     WedgePart173.Parent = Model0
  2873.     WedgePart173.Material = Enum.Material.Metal
  2874.     WedgePart173.BrickColor = BrickColor.new("Grime")
  2875.     WedgePart173.Rotation = Vector3.new(-90, 0, -180)
  2876.     WedgePart173.CanCollide = false
  2877.     WedgePart173.FormFactor = Enum.FormFactor.Custom
  2878.     WedgePart173.Size = Vector3.new(0.400000006, 0.200000003, 2.60000014)
  2879.     WedgePart173.CFrame = CFrame.new(-25.7096691, 8.70045567, 31.560833, -1, 8.70646472e-05, 1.34475977e-05, 1.41952787e-05, 6.08148293e-05, 0.999991715, 0.000102097867, 1.00000143, -5.03454758e-05)
  2880.     WedgePart173.BackSurface = Enum.SurfaceType.Weld
  2881.     WedgePart173.BottomSurface = Enum.SurfaceType.Weld
  2882.     WedgePart173.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2883.     WedgePart173.Position = Vector3.new(-25.7096691, 8.70045567, 31.560833)
  2884.     WedgePart173.Orientation = Vector3.new(-89.7699966, 165.050003, 13.1399994)
  2885.     WedgePart173.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2886.     SpecialMesh174.Parent = WedgePart173
  2887.     SpecialMesh174.MeshType = Enum.MeshType.Wedge
  2888.     WedgePart175.Parent = Model0
  2889.     WedgePart175.Material = Enum.Material.Metal
  2890.     WedgePart175.BrickColor = BrickColor.new("Grime")
  2891.     WedgePart175.Rotation = Vector3.new(90, 0, -0.00999999978)
  2892.     WedgePart175.CanCollide = false
  2893.     WedgePart175.FormFactor = Enum.FormFactor.Custom
  2894.     WedgePart175.Size = Vector3.new(0.400000006, 0.400000006, 3)
  2895.     WedgePart175.CFrame = CFrame.new(-25.7104053, 8.90147972, 46.4605446, 1, 9.32686453e-05, -1.07004098e-05, -1.14709874e-05, 3.40783699e-05, -1, -0.000108721877, 1, 2.31999766e-05)
  2896.     WedgePart175.BackSurface = Enum.SurfaceType.Weld
  2897.     WedgePart175.BottomSurface = Enum.SurfaceType.Weld
  2898.     WedgePart175.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2899.     WedgePart175.Position = Vector3.new(-25.7104053, 8.90147972, 46.4605446)
  2900.     WedgePart175.Orientation = Vector3.new(90, 0.00999999978, 0)
  2901.     WedgePart175.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2902.     SpecialMesh176.Parent = WedgePart175
  2903.     SpecialMesh176.MeshType = Enum.MeshType.Wedge
  2904.     WedgePart177.Parent = Model0
  2905.     WedgePart177.Material = Enum.Material.Metal
  2906.     WedgePart177.BrickColor = BrickColor.new("Grime")
  2907.     WedgePart177.Rotation = Vector3.new(90, 0, 180)
  2908.     WedgePart177.CanCollide = false
  2909.     WedgePart177.FormFactor = Enum.FormFactor.Custom
  2910.     WedgePart177.Size = Vector3.new(11.8000002, 0.400000006, 2.79999995)
  2911.     WedgePart177.CFrame = CFrame.new(-10.8100128, 8.80036926, 31.4599285, -1, -1.98704856e-05, -7.10724089e-06, 7.16815839e-06, 1.53286351e-06, -0.99999088, 2.11030638e-05, -1.00000012, -2.38569896e-06)
  2912.     WedgePart177.BackSurface = Enum.SurfaceType.Weld
  2913.     WedgePart177.BottomSurface = Enum.SurfaceType.Weld
  2914.     WedgePart177.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2915.     WedgePart177.Position = Vector3.new(-10.8100128, 8.80036926, 31.4599285)
  2916.     WedgePart177.Orientation = Vector3.new(89.7599945, -108.559998, 77.9300003)
  2917.     WedgePart177.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2918.     SpecialMesh178.Parent = WedgePart177
  2919.     SpecialMesh178.MeshType = Enum.MeshType.Wedge
  2920.     WedgePart179.Parent = Model0
  2921.     WedgePart179.Material = Enum.Material.Metal
  2922.     WedgePart179.BrickColor = BrickColor.new("Grime")
  2923.     WedgePart179.Rotation = Vector3.new(-90, 0, -180)
  2924.     WedgePart179.CanCollide = false
  2925.     WedgePart179.FormFactor = Enum.FormFactor.Custom
  2926.     WedgePart179.Size = Vector3.new(0.200000003, 0.200000003, 2.60000014)
  2927.     WedgePart179.CFrame = CFrame.new(-16.8098984, 8.70064831, 31.5546684, -1, 3.86261199e-05, 8.03524836e-06, 8.7385406e-06, 3.54923986e-06, 0.999991119, 5.28609926e-05, 1.00000048, 6.47919069e-06)
  2928.     WedgePart179.BackSurface = Enum.SurfaceType.Weld
  2929.     WedgePart179.BottomSurface = Enum.SurfaceType.Weld
  2930.     WedgePart179.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2931.     WedgePart179.Position = Vector3.new(-16.8098984, 8.70064831, 31.5546684)
  2932.     WedgePart179.Orientation = Vector3.new(-89.7599945, 51.1199989, 67.9000015)
  2933.     WedgePart179.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2934.     SpecialMesh180.Parent = WedgePart179
  2935.     SpecialMesh180.MeshType = Enum.MeshType.Wedge
  2936.     WedgePart181.Parent = Model0
  2937.     WedgePart181.Material = Enum.Material.Metal
  2938.     WedgePart181.BrickColor = BrickColor.new("Grime")
  2939.     WedgePart181.Rotation = Vector3.new(90, 0, 180)
  2940.     WedgePart181.CanCollide = false
  2941.     WedgePart181.FormFactor = Enum.FormFactor.Custom
  2942.     WedgePart181.Size = Vector3.new(0.200000003, 0.400000006, 3)
  2943.     WedgePart181.CFrame = CFrame.new(-19.6100655, 8.90089989, 31.2546997, -1, -6.24609311e-05, -9.12487758e-06, 9.82918027e-06, -1.84945038e-05, -0.99999088, 7.66956946e-05, -1.00000012, 8.43711314e-06)
  2944.     WedgePart181.BackSurface = Enum.SurfaceType.Weld
  2945.     WedgePart181.BottomSurface = Enum.SurfaceType.Weld
  2946.     WedgePart181.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2947.     WedgePart181.Position = Vector3.new(-19.6100655, 8.90089989, 31.2546997)
  2948.     WedgePart181.Orientation = Vector3.new(89.7599945, -47.2399979, 152.009995)
  2949.     WedgePart181.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2950.     SpecialMesh182.Parent = WedgePart181
  2951.     SpecialMesh182.MeshType = Enum.MeshType.Wedge
  2952.     WedgePart183.Parent = Model0
  2953.     WedgePart183.Material = Enum.Material.Metal
  2954.     WedgePart183.BrickColor = BrickColor.new("Grime")
  2955.     WedgePart183.Rotation = Vector3.new(90, 0, 180)
  2956.     WedgePart183.CanCollide = false
  2957.     WedgePart183.FormFactor = Enum.FormFactor.Custom
  2958.     WedgePart183.Size = Vector3.new(0.400000006, 0.400000006, 3)
  2959.     WedgePart183.CFrame = CFrame.new(-22.7099266, 8.90095329, 31.255022, -1, -6.28153575e-05, -9.15679993e-06, 9.860717e-06, -1.23528207e-05, -0.999991715, 7.70501429e-05, -1.00000143, 2.44396688e-06)
  2960.     WedgePart183.BackSurface = Enum.SurfaceType.Weld
  2961.     WedgePart183.BottomSurface = Enum.SurfaceType.Weld
  2962.     WedgePart183.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2963.     WedgePart183.Position = Vector3.new(-22.7099266, 8.90095329, 31.255022)
  2964.     WedgePart183.Orientation = Vector3.new(89.7699966, -75.0599976, 141.399994)
  2965.     WedgePart183.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2966.     SpecialMesh184.Parent = WedgePart183
  2967.     SpecialMesh184.MeshType = Enum.MeshType.Wedge
  2968.     WedgePart185.Parent = Model0
  2969.     WedgePart185.Material = Enum.Material.Metal
  2970.     WedgePart185.BrickColor = BrickColor.new("Grime")
  2971.     WedgePart185.Rotation = Vector3.new(-90, 0, 0)
  2972.     WedgePart185.CanCollide = false
  2973.     WedgePart185.FormFactor = Enum.FormFactor.Custom
  2974.     WedgePart185.Size = Vector3.new(0.400000006, 0.200000003, 2.60000014)
  2975.     WedgePart185.CFrame = CFrame.new(-25.7090588, 8.70090199, 46.1605759, 1, -7.75331137e-05, 9.84157032e-06, -1.01347641e-05, 5.37735141e-05, 1, -8.35282772e-05, -1, 5.7992067e-05)
  2976.     WedgePart185.BackSurface = Enum.SurfaceType.Weld
  2977.     WedgePart185.BottomSurface = Enum.SurfaceType.Weld
  2978.     WedgePart185.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2979.     WedgePart185.Position = Vector3.new(-25.7090588, 8.70090199, 46.1605759)
  2980.     WedgePart185.Orientation = Vector3.new(-90, 0, 0)
  2981.     WedgePart185.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2982.     SpecialMesh186.Parent = WedgePart185
  2983.     SpecialMesh186.MeshType = Enum.MeshType.Wedge
  2984.     WedgePart187.Parent = Model0
  2985.     WedgePart187.Material = Enum.Material.Metal
  2986.     WedgePart187.BrickColor = BrickColor.new("Grime")
  2987.     WedgePart187.Rotation = Vector3.new(-90, 0, -180)
  2988.     WedgePart187.CanCollide = false
  2989.     WedgePart187.FormFactor = Enum.FormFactor.Custom
  2990.     WedgePart187.Size = Vector3.new(0.200000003, 0.200000003, 2.60000014)
  2991.     WedgePart187.CFrame = CFrame.new(-19.6096992, 8.70069408, 31.5548515, -1, 2.96698472e-05, 7.61610727e-06, 8.31959642e-06, 1.10488836e-05, 0.99999088, 4.39046744e-05, 1.00000012, -9.91035904e-07)
  2992.     WedgePart187.BackSurface = Enum.SurfaceType.Weld
  2993.     WedgePart187.BottomSurface = Enum.SurfaceType.Weld
  2994.     WedgePart187.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2995.     WedgePart187.Position = Vector3.new(-19.6096992, 8.70069408, 31.5548515)
  2996.     WedgePart187.Orientation = Vector3.new(-89.7599945, 97.409996, 36.9799995)
  2997.     WedgePart187.Color = Color3.new(0.498039, 0.556863, 0.392157)
  2998.     SpecialMesh188.Parent = WedgePart187
  2999.     SpecialMesh188.MeshType = Enum.MeshType.Wedge
  3000.     WedgePart189.Parent = Model0
  3001.     WedgePart189.Material = Enum.Material.Metal
  3002.     WedgePart189.BrickColor = BrickColor.new("Grime")
  3003.     WedgePart189.Rotation = Vector3.new(-90, 0, -180)
  3004.     WedgePart189.CanCollide = false
  3005.     WedgePart189.FormFactor = Enum.FormFactor.Custom
  3006.     WedgePart189.Size = Vector3.new(0.400000006, 0.200000003, 2.60000014)
  3007.     WedgePart189.CFrame = CFrame.new(-22.7095509, 8.70071697, 31.5549793, -1, 2.9757899e-05, 7.61660112e-06, 8.32005298e-06, 1.00073721e-05, 0.999991715, 4.39926589e-05, 1.00000143, -9.81024186e-08)
  3008.     WedgePart189.BackSurface = Enum.SurfaceType.Weld
  3009.     WedgePart189.BottomSurface = Enum.SurfaceType.Weld
  3010.     WedgePart189.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3011.     WedgePart189.Position = Vector3.new(-22.7095509, 8.70071697, 31.5549793)
  3012.     WedgePart189.Orientation = Vector3.new(-89.7699966, 90.7399979, 39.7399979)
  3013.     WedgePart189.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3014.     SpecialMesh190.Parent = WedgePart189
  3015.     SpecialMesh190.MeshType = Enum.MeshType.Wedge
  3016.     WedgePart191.Parent = Model0
  3017.     WedgePart191.Material = Enum.Material.Metal
  3018.     WedgePart191.BrickColor = BrickColor.new("Grime")
  3019.     WedgePart191.Rotation = Vector3.new(90, 0, 180)
  3020.     WedgePart191.CanCollide = false
  3021.     WedgePart191.FormFactor = Enum.FormFactor.Custom
  3022.     WedgePart191.Size = Vector3.new(0.200000003, 0.400000006, 3)
  3023.     WedgePart191.CFrame = CFrame.new(-16.810257, 8.90075588, 31.25453, -1, -6.24630338e-05, -9.1277625e-06, 9.83149221e-06, -9.34280797e-06, -0.999991119, 7.66978701e-05, -1.00000048, -6.85276063e-07)
  3024.     WedgePart191.BackSurface = Enum.SurfaceType.Weld
  3025.     WedgePart191.BottomSurface = Enum.SurfaceType.Weld
  3026.     WedgePart191.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3027.     WedgePart191.Position = Vector3.new(-16.810257, 8.90075588, 31.25453)
  3028.     WedgePart191.Orientation = Vector3.new(89.7599945, -94.2900009, 133.539993)
  3029.     WedgePart191.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3030.     SpecialMesh192.Parent = WedgePart191
  3031.     SpecialMesh192.MeshType = Enum.MeshType.Wedge
  3032.     Model193.Name = "Braces"
  3033.     Model193.Parent = Model0
  3034.     Part194.Name = "SideSupporters"
  3035.     Part194.Parent = Model193
  3036.     Part194.Material = Enum.Material.DiamondPlate
  3037.     Part194.BrickColor = BrickColor.new("Dark stone grey")
  3038.     Part194.Rotation = Vector3.new(-0.00999999978, -0.00999999978, -90)
  3039.     Part194.CanCollide = false
  3040.     Part194.FormFactor = Enum.FormFactor.Custom
  3041.     Part194.Size = Vector3.new(0.800000012, 38.6000023, 0.599999905)
  3042.     Part194.CFrame = CFrame.new(4.88875008, 11.701334, 42.4607582, -1.26398409e-05, 1, -0.000139337557, -1, -1.35639984e-05, 0.000109516797, 9.60821344e-05, 0.000120227873, 1)
  3043.     Part194.BackSurface = Enum.SurfaceType.Weld
  3044.     Part194.BottomSurface = Enum.SurfaceType.Weld
  3045.     Part194.FrontSurface = Enum.SurfaceType.Weld
  3046.     Part194.LeftSurface = Enum.SurfaceType.Weld
  3047.     Part194.RightSurface = Enum.SurfaceType.Weld
  3048.     Part194.TopSurface = Enum.SurfaceType.Weld
  3049.     Part194.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3050.     Part194.Position = Vector3.new(4.88875008, 11.701334, 42.4607582)
  3051.     Part194.Orientation = Vector3.new(-0.00999999978, -0.00999999978, -90)
  3052.     Part194.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3053.     CylinderMesh195.Parent = Part194
  3054.     CylinderMesh195.Offset = Vector3.new(0.699999988, 0, -0.5)
  3055.     Part196.Name = "SideSupporters"
  3056.     Part196.Parent = Model193
  3057.     Part196.Material = Enum.Material.DiamondPlate
  3058.     Part196.BrickColor = BrickColor.new("Dark stone grey")
  3059.     Part196.Rotation = Vector3.new(0, 0, -90)
  3060.     Part196.CanCollide = false
  3061.     Part196.FormFactor = Enum.FormFactor.Custom
  3062.     Part196.Size = Vector3.new(0.800000012, 38.6000023, 0.599999905)
  3063.     Part196.CFrame = CFrame.new(4.89028549, 11.7001047, 35.459919, -3.96238374e-06, 1, -1.33412796e-05, -1, -4.90152115e-06, 2.09537357e-05, 7.52074175e-06, -5.76958473e-06, 1)
  3064.     Part196.BackSurface = Enum.SurfaceType.Weld
  3065.     Part196.BottomSurface = Enum.SurfaceType.Weld
  3066.     Part196.FrontSurface = Enum.SurfaceType.Weld
  3067.     Part196.LeftSurface = Enum.SurfaceType.Weld
  3068.     Part196.RightSurface = Enum.SurfaceType.Weld
  3069.     Part196.TopSurface = Enum.SurfaceType.Weld
  3070.     Part196.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3071.     Part196.Position = Vector3.new(4.89028549, 11.7001047, 35.459919)
  3072.     Part196.Orientation = Vector3.new(0, 0, -90)
  3073.     Part196.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3074.     CylinderMesh197.Parent = Part196
  3075.     CylinderMesh197.Offset = Vector3.new(0.699999988, 0, 0.5)
  3076.     Part198.Name = "SideSupporters"
  3077.     Part198.Parent = Model193
  3078.     Part198.Material = Enum.Material.DiamondPlate
  3079.     Part198.BrickColor = BrickColor.new("Dark stone grey")
  3080.     Part198.Transparency = 1
  3081.     Part198.Rotation = Vector3.new(-90, 90, 0)
  3082.     Part198.CanCollide = false
  3083.     Part198.FormFactor = Enum.FormFactor.Custom
  3084.     Part198.Size = Vector3.new(0.399999976, 3.200001, 0.599999905)
  3085.     Part198.CFrame = CFrame.new(12.6886978, 12.3010302, 41.0611801, -1.00123516e-05, 0.000133011898, 1, -1, -8.2736733e-05, -1.09407647e-05, 6.93024485e-05, -1, 0.000113901697)
  3086.     Part198.BackSurface = Enum.SurfaceType.Weld
  3087.     Part198.BottomSurface = Enum.SurfaceType.Weld
  3088.     Part198.FrontSurface = Enum.SurfaceType.Weld
  3089.     Part198.LeftSurface = Enum.SurfaceType.Weld
  3090.     Part198.RightSurface = Enum.SurfaceType.Weld
  3091.     Part198.TopSurface = Enum.SurfaceType.Weld
  3092.     Part198.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3093.     Part198.Position = Vector3.new(12.6886978, 12.3010302, 41.0611801)
  3094.     Part198.Orientation = Vector3.new(0, 89.9899979, -90)
  3095.     Part198.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3096.     CylinderMesh199.Parent = Part198
  3097.     CylinderMesh199.Offset = Vector3.new(0.699999988, 0, 0.5)
  3098.     Part200.Name = "SideSupporters"
  3099.     Part200.Parent = Model193
  3100.     Part200.Material = Enum.Material.DiamondPlate
  3101.     Part200.BrickColor = BrickColor.new("Dark stone grey")
  3102.     Part200.Transparency = 1
  3103.     Part200.Rotation = Vector3.new(-90, 90, 0)
  3104.     Part200.CanCollide = false
  3105.     Part200.FormFactor = Enum.FormFactor.Custom
  3106.     Part200.Size = Vector3.new(0.399999976, 3.200001, 0.599999905)
  3107.     Part200.CFrame = CFrame.new(12.6900082, 12.3000383, 36.8591309, -2.95247196e-06, -2.58682812e-05, 1, -1, 2.89400232e-05, -3.89114075e-06, -4.23728707e-05, -1, -4.49793006e-05)
  3108.     Part200.BackSurface = Enum.SurfaceType.Weld
  3109.     Part200.BottomSurface = Enum.SurfaceType.Weld
  3110.     Part200.FrontSurface = Enum.SurfaceType.Weld
  3111.     Part200.LeftSurface = Enum.SurfaceType.Weld
  3112.     Part200.RightSurface = Enum.SurfaceType.Weld
  3113.     Part200.TopSurface = Enum.SurfaceType.Weld
  3114.     Part200.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3115.     Part200.Position = Vector3.new(12.6900082, 12.3000383, 36.8591309)
  3116.     Part200.Orientation = Vector3.new(0, 90, -90)
  3117.     Part200.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3118.     CylinderMesh201.Parent = Part200
  3119.     CylinderMesh201.Offset = Vector3.new(0.699999988, 0, 0.5)
  3120.     Part202.Name = "Emblem"
  3121.     Part202.Parent = Model0
  3122.     Part202.Material = Enum.Material.Metal
  3123.     Part202.BrickColor = BrickColor.new("Grime")
  3124.     Part202.CanCollide = false
  3125.     Part202.FormFactor = Enum.FormFactor.Custom
  3126.     Part202.Size = Vector3.new(3.60000014, 3.39999962, 0.200000003)
  3127.     Part202.CFrame = CFrame.new(-20.5100327, 5.70076609, 30.9600067, 1, 7.46798696e-06, 2.7385162e-05, -7.62826676e-06, 0.999991715, -1.72890504e-05, -3.06962465e-05, 1.95087814e-05, 1.00000143)
  3128.     Part202.BackSurface = Enum.SurfaceType.Weld
  3129.     Part202.BottomSurface = Enum.SurfaceType.Weld
  3130.     Part202.FrontSurface = Enum.SurfaceType.Weld
  3131.     Part202.LeftSurface = Enum.SurfaceType.Weld
  3132.     Part202.RightSurface = Enum.SurfaceType.Weld
  3133.     Part202.TopSurface = Enum.SurfaceType.Weld
  3134.     Part202.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3135.     Part202.Position = Vector3.new(-20.5100327, 5.70076609, 30.9600067)
  3136.     Part202.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3137.     BlockMesh203.Parent = Part202
  3138.     BlockMesh203.Offset = Vector3.new(0, 0, 0.200000003)
  3139.     Part204.Parent = Model0
  3140.     Part204.Material = Enum.Material.Metal
  3141.     Part204.BrickColor = BrickColor.new("Grime")
  3142.     Part204.Rotation = Vector3.new(-180, 0, -180)
  3143.     Part204.FormFactor = Enum.FormFactor.Custom
  3144.     Part204.Size = Vector3.new(6.19999933, 2.20000005, 2.60000038)
  3145.     Part204.CFrame = CFrame.new(14.9899111, 9.90013885, 32.9597321, -1, 8.86935595e-06, -5.40786423e-05, 8.96597521e-06, 1, 8.80265179e-06, 5.60541885e-05, 1.01906853e-05, -1)
  3146.     Part204.BackSurface = Enum.SurfaceType.Weld
  3147.     Part204.BottomSurface = Enum.SurfaceType.Weld
  3148.     Part204.FrontSurface = Enum.SurfaceType.Weld
  3149.     Part204.LeftSurface = Enum.SurfaceType.Weld
  3150.     Part204.RightSurface = Enum.SurfaceType.Weld
  3151.     Part204.TopSurface = Enum.SurfaceType.Weld
  3152.     Part204.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3153.     Part204.Position = Vector3.new(14.9899111, 9.90013885, 32.9597321)
  3154.     Part204.Orientation = Vector3.new(0, -180, 0)
  3155.     Part204.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3156.     BlockMesh205.Parent = Part204
  3157.     Part206.Parent = Model0
  3158.     Part206.Material = Enum.Material.Metal
  3159.     Part206.BrickColor = BrickColor.new("Grime")
  3160.     Part206.Rotation = Vector3.new(180, 0, -180)
  3161.     Part206.FormFactor = Enum.FormFactor.Custom
  3162.     Part206.Size = Vector3.new(5.19999933, 1.19999993, 4.00000048)
  3163.     Part206.CFrame = CFrame.new(8.89008808, 8.60011578, 33.6598549, -1, 6.99085149e-06, -1.63561654e-05, 7.1075865e-06, 1, -6.3724741e-08, 1.87311598e-05, 1.60550485e-06, -1)
  3164.     Part206.BackSurface = Enum.SurfaceType.Weld
  3165.     Part206.BottomSurface = Enum.SurfaceType.Weld
  3166.     Part206.FrontSurface = Enum.SurfaceType.Weld
  3167.     Part206.LeftSurface = Enum.SurfaceType.Weld
  3168.     Part206.RightSurface = Enum.SurfaceType.Weld
  3169.     Part206.TopSurface = Enum.SurfaceType.Weld
  3170.     Part206.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3171.     Part206.Position = Vector3.new(8.89008808, 8.60011578, 33.6598549)
  3172.     Part206.Orientation = Vector3.new(0, -180, 0)
  3173.     Part206.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3174.     BlockMesh207.Parent = Part206
  3175.     Part208.Parent = Model0
  3176.     Part208.Material = Enum.Material.Metal
  3177.     Part208.BrickColor = BrickColor.new("Grime")
  3178.     Part208.Rotation = Vector3.new(-180, 0, -180)
  3179.     Part208.CanCollide = false
  3180.     Part208.FormFactor = Enum.FormFactor.Custom
  3181.     Part208.Size = Vector3.new(11.8000002, 4.19999981, 4.60000038)
  3182.     Part208.CFrame = CFrame.new(-10.8099661, 8.10049725, 33.9599152, -1, 7.14305224e-06, -2.03425952e-05, 7.16210434e-06, 1, 1.88869399e-06, 2.07310459e-05, 2.16157287e-06, -1)
  3183.     Part208.BackSurface = Enum.SurfaceType.Weld
  3184.     Part208.BottomSurface = Enum.SurfaceType.Weld
  3185.     Part208.FrontSurface = Enum.SurfaceType.Weld
  3186.     Part208.LeftSurface = Enum.SurfaceType.Weld
  3187.     Part208.RightSurface = Enum.SurfaceType.Weld
  3188.     Part208.TopSurface = Enum.SurfaceType.Weld
  3189.     Part208.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3190.     Part208.Position = Vector3.new(-10.8099661, 8.10049725, 33.9599152)
  3191.     Part208.Orientation = Vector3.new(0, -180, 0)
  3192.     Part208.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3193.     BlockMesh209.Parent = Part208
  3194.     Part210.Name = "Emblem"
  3195.     Part210.Parent = Model0
  3196.     Part210.Material = Enum.Material.Metal
  3197.     Part210.BrickColor = BrickColor.new("Grime")
  3198.     Part210.Rotation = Vector3.new(-180, 0, -180)
  3199.     Part210.CanCollide = false
  3200.     Part210.FormFactor = Enum.FormFactor.Custom
  3201.     Part210.Size = Vector3.new(3.60000014, 3.39999962, 0.200000003)
  3202.     Part210.CFrame = CFrame.new(-20.5099678, 5.70037603, 46.760025, -1, 6.35870629e-06, -2.10810867e-06, 6.65713014e-06, 1, 1.4320929e-05, 8.12503458e-06, 1.85558729e-05, -1)
  3203.     Part210.BackSurface = Enum.SurfaceType.Weld
  3204.     Part210.BottomSurface = Enum.SurfaceType.Weld
  3205.     Part210.FrontSurface = Enum.SurfaceType.Weld
  3206.     Part210.LeftSurface = Enum.SurfaceType.Weld
  3207.     Part210.RightSurface = Enum.SurfaceType.Weld
  3208.     Part210.TopSurface = Enum.SurfaceType.Weld
  3209.     Part210.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3210.     Part210.Position = Vector3.new(-20.5099678, 5.70037603, 46.760025)
  3211.     Part210.Orientation = Vector3.new(0, -180, 0)
  3212.     Part210.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3213.     BlockMesh211.Parent = Part210
  3214.     BlockMesh211.Offset = Vector3.new(0, 0, 0.200000003)
  3215.     Part212.Parent = Model0
  3216.     Part212.Material = Enum.Material.Metal
  3217.     Part212.BrickColor = BrickColor.new("Grime")
  3218.     Part212.Rotation = Vector3.new(180, 0, -180)
  3219.     Part212.CanCollide = false
  3220.     Part212.FormFactor = Enum.FormFactor.Custom
  3221.     Part212.Size = Vector3.new(3, 3, 5.19999981)
  3222.     Part212.CFrame = CFrame.new(3.79019642, 8.70022011, 44.0599136, -1, 6.32772435e-06, -3.98295379e-06, 6.47945944e-06, 1, -8.76483864e-06, 7.04126296e-06, -6.61228023e-06, -1)
  3223.     Part212.BackSurface = Enum.SurfaceType.Weld
  3224.     Part212.BottomSurface = Enum.SurfaceType.Weld
  3225.     Part212.FrontSurface = Enum.SurfaceType.Weld
  3226.     Part212.LeftSurface = Enum.SurfaceType.Weld
  3227.     Part212.RightSurface = Enum.SurfaceType.Weld
  3228.     Part212.TopSurface = Enum.SurfaceType.Weld
  3229.     Part212.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3230.     Part212.Position = Vector3.new(3.79019642, 8.70022011, 44.0599136)
  3231.     Part212.Orientation = Vector3.new(0, -180, 0)
  3232.     Part212.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3233.     BlockMesh213.Parent = Part212
  3234.     Part214.Parent = Model0
  3235.     Part214.Material = Enum.Material.Metal
  3236.     Part214.BrickColor = BrickColor.new("Grime")
  3237.     Part214.Rotation = Vector3.new(-180, 0, -180)
  3238.     Part214.CanCollide = false
  3239.     Part214.FormFactor = Enum.FormFactor.Custom
  3240.     Part214.Size = Vector3.new(10.1999998, 0.999999881, 2.79999995)
  3241.     Part214.CFrame = CFrame.new(0.190334558, 10.7001324, 43.6596947, -1, 8.83405392e-06, -5.33534985e-05, 9.60729267e-06, 0.99999088, 3.31501396e-05, 6.89792505e-05, 4.41338598e-05, -1.00000012)
  3242.     Part214.BackSurface = Enum.SurfaceType.Weld
  3243.     Part214.BottomSurface = Enum.SurfaceType.Weld
  3244.     Part214.FrontSurface = Enum.SurfaceType.Weld
  3245.     Part214.LeftSurface = Enum.SurfaceType.Weld
  3246.     Part214.RightSurface = Enum.SurfaceType.Weld
  3247.     Part214.TopSurface = Enum.SurfaceType.Weld
  3248.     Part214.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3249.     Part214.Position = Vector3.new(0.190334558, 10.7001324, 43.6596947)
  3250.     Part214.Orientation = Vector3.new(0, -180, 0)
  3251.     Part214.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3252.     BlockMesh215.Parent = Part214
  3253.     Part216.Parent = Model0
  3254.     Part216.Material = Enum.Material.Metal
  3255.     Part216.BrickColor = BrickColor.new("Grime")
  3256.     Part216.Rotation = Vector3.new(180, 0, -180)
  3257.     Part216.CanCollide = false
  3258.     Part216.FormFactor = Enum.FormFactor.Custom
  3259.     Part216.Size = Vector3.new(11.8000002, 0.399999976, 0.200000003)
  3260.     Part216.CFrame = CFrame.new(-10.8095398, 6.20018864, 31.1600113, -1, 6.19986486e-06, -4.70125087e-07, 6.56853854e-06, 0.99999088, -1.11185163e-05, 7.90813283e-06, -5.89815954e-06, -1.00000012)
  3261.     Part216.BackSurface = Enum.SurfaceType.Weld
  3262.     Part216.BottomSurface = Enum.SurfaceType.Weld
  3263.     Part216.FrontSurface = Enum.SurfaceType.Weld
  3264.     Part216.LeftSurface = Enum.SurfaceType.Weld
  3265.     Part216.RightSurface = Enum.SurfaceType.Weld
  3266.     Part216.TopSurface = Enum.SurfaceType.Weld
  3267.     Part216.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3268.     Part216.Position = Vector3.new(-10.8095398, 6.20018864, 31.1600113)
  3269.     Part216.Orientation = Vector3.new(0, -180, 0)
  3270.     Part216.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3271.     BlockMesh217.Parent = Part216
  3272.     Part218.Parent = Model0
  3273.     Part218.Material = Enum.Material.Metal
  3274.     Part218.BrickColor = BrickColor.new("Grime")
  3275.     Part218.Rotation = Vector3.new(-180, 0, -180)
  3276.     Part218.CanCollide = false
  3277.     Part218.FormFactor = Enum.FormFactor.Custom
  3278.     Part218.Size = Vector3.new(11.8000002, 4.19999981, 4.60000038)
  3279.     Part218.CFrame = CFrame.new(-10.8097363, 8.10028648, 43.7601395, -1, 7.16859677e-06, -2.04153348e-05, 7.45285433e-06, 1, 2.7828346e-06, 2.61436471e-05, 6.81482152e-06, -1)
  3280.     Part218.BackSurface = Enum.SurfaceType.Weld
  3281.     Part218.BottomSurface = Enum.SurfaceType.Weld
  3282.     Part218.FrontSurface = Enum.SurfaceType.Weld
  3283.     Part218.LeftSurface = Enum.SurfaceType.Weld
  3284.     Part218.RightSurface = Enum.SurfaceType.Weld
  3285.     Part218.TopSurface = Enum.SurfaceType.Weld
  3286.     Part218.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3287.     Part218.Position = Vector3.new(-10.8097363, 8.10028648, 43.7601395)
  3288.     Part218.Orientation = Vector3.new(0, -180, 0)
  3289.     Part218.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3290.     BlockMesh219.Parent = Part218
  3291.     Part220.Parent = Model0
  3292.     Part220.Material = Enum.Material.Metal
  3293.     Part220.BrickColor = BrickColor.new("Grime")
  3294.     Part220.Rotation = Vector3.new(-180, 0, -180)
  3295.     Part220.CanCollide = false
  3296.     Part220.FormFactor = Enum.FormFactor.Custom
  3297.     Part220.Size = Vector3.new(3, 3, 5.19999981)
  3298.     Part220.CFrame = CFrame.new(3.79002571, 8.70051765, 33.6592712, -1, 8.50772994e-06, -4.85191158e-05, 8.51756067e-06, 1, 1.09945977e-05, 4.87300749e-05, 1.11423969e-05, -1)
  3299.     Part220.BackSurface = Enum.SurfaceType.Weld
  3300.     Part220.BottomSurface = Enum.SurfaceType.Weld
  3301.     Part220.FrontSurface = Enum.SurfaceType.Weld
  3302.     Part220.LeftSurface = Enum.SurfaceType.Weld
  3303.     Part220.RightSurface = Enum.SurfaceType.Weld
  3304.     Part220.TopSurface = Enum.SurfaceType.Weld
  3305.     Part220.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3306.     Part220.Position = Vector3.new(3.79002571, 8.70051765, 33.6592712)
  3307.     Part220.Orientation = Vector3.new(0, -180, 0)
  3308.     Part220.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3309.     BlockMesh221.Parent = Part220
  3310.     Part222.Parent = Model0
  3311.     Part222.Material = Enum.Material.Metal
  3312.     Part222.BrickColor = BrickColor.new("Grime")
  3313.     Part222.Rotation = Vector3.new(180, 0, -180)
  3314.     Part222.CanCollide = false
  3315.     Part222.FormFactor = Enum.FormFactor.Custom
  3316.     Part222.Size = Vector3.new(22, 0.799999714, 0.600000441)
  3317.     Part222.CFrame = CFrame.new(-5.70979691, 8.60026169, 36.5600357, -1, 6.81412985e-06, -1.27640888e-05, 7.56088548e-06, 0.999981761, -9.83839709e-06, 2.78288353e-05, 7.34849891e-07, -1.00000024)
  3318.     Part222.BackSurface = Enum.SurfaceType.Weld
  3319.     Part222.BottomSurface = Enum.SurfaceType.Weld
  3320.     Part222.FrontSurface = Enum.SurfaceType.Weld
  3321.     Part222.LeftSurface = Enum.SurfaceType.Weld
  3322.     Part222.RightSurface = Enum.SurfaceType.Weld
  3323.     Part222.TopSurface = Enum.SurfaceType.Weld
  3324.     Part222.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3325.     Part222.Position = Vector3.new(-5.70979691, 8.60026169, 36.5600357)
  3326.     Part222.Orientation = Vector3.new(0, -180, 0)
  3327.     Part222.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3328.     BlockMesh223.Parent = Part222
  3329.     Part224.Parent = Model0
  3330.     Part224.Material = Enum.Material.Metal
  3331.     Part224.BrickColor = BrickColor.new("Grime")
  3332.     Part224.Rotation = Vector3.new(180, 0, -180)
  3333.     Part224.CanCollide = false
  3334.     Part224.FormFactor = Enum.FormFactor.Custom
  3335.     Part224.Size = Vector3.new(11.8000002, 1.39999998, 0.400000006)
  3336.     Part224.CFrame = CFrame.new(-10.8097229, 6.70026398, 46.2599983, -1, 6.7584383e-06, -1.16997562e-05, 7.04279182e-06, 1, -3.34411698e-06, 1.74280249e-05, 6.87942702e-07, -1)
  3337.     Part224.BackSurface = Enum.SurfaceType.Weld
  3338.     Part224.BottomSurface = Enum.SurfaceType.Weld
  3339.     Part224.FrontSurface = Enum.SurfaceType.Weld
  3340.     Part224.LeftSurface = Enum.SurfaceType.Weld
  3341.     Part224.RightSurface = Enum.SurfaceType.Weld
  3342.     Part224.TopSurface = Enum.SurfaceType.Weld
  3343.     Part224.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3344.     Part224.Position = Vector3.new(-10.8097229, 6.70026398, 46.2599983)
  3345.     Part224.Orientation = Vector3.new(0, -180, 0)
  3346.     Part224.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3347.     BlockMesh225.Parent = Part224
  3348.     Part226.Parent = Model0
  3349.     Part226.Material = Enum.Material.Metal
  3350.     Part226.BrickColor = BrickColor.new("Grime")
  3351.     Part226.Rotation = Vector3.new(-180, 0, -180)
  3352.     Part226.CanCollide = false
  3353.     Part226.FormFactor = Enum.FormFactor.Custom
  3354.     Part226.Size = Vector3.new(7.19999981, 5, 5.19999981)
  3355.     Part226.CFrame = CFrame.new(-1.30967951, 7.70056057, 33.659565, -1, 7.81613926e-06, -3.46217457e-05, 8.18463377e-06, 0.99999088, 4.60983938e-06, 4.20598662e-05, 9.83004793e-06, -1.00000012)
  3356.     Part226.BackSurface = Enum.SurfaceType.Weld
  3357.     Part226.BottomSurface = Enum.SurfaceType.Weld
  3358.     Part226.FrontSurface = Enum.SurfaceType.Weld
  3359.     Part226.LeftSurface = Enum.SurfaceType.Weld
  3360.     Part226.RightSurface = Enum.SurfaceType.Weld
  3361.     Part226.TopSurface = Enum.SurfaceType.Weld
  3362.     Part226.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3363.     Part226.Position = Vector3.new(-1.30967951, 7.70056057, 33.659565)
  3364.     Part226.Orientation = Vector3.new(0, -180, 0)
  3365.     Part226.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3366.     BlockMesh227.Parent = Part226
  3367.     Part228.Parent = Model0
  3368.     Part228.Material = Enum.Material.Metal
  3369.     Part228.BrickColor = BrickColor.new("Grime")
  3370.     Part228.Rotation = Vector3.new(-180, 0, -180)
  3371.     Part228.CanCollide = false
  3372.     Part228.FormFactor = Enum.FormFactor.Custom
  3373.     Part228.Size = Vector3.new(11.8000002, 1.39999998, 0.400000006)
  3374.     Part228.CFrame = CFrame.new(-10.8100386, 6.70071936, 31.4599133, -1, 7.03509431e-06, -1.81622581e-05, 7.05417779e-06, 1, 3.9548047e-07, 1.85506979e-05, 6.6837697e-07, -1)
  3375.     Part228.BackSurface = Enum.SurfaceType.Weld
  3376.     Part228.BottomSurface = Enum.SurfaceType.Weld
  3377.     Part228.FrontSurface = Enum.SurfaceType.Weld
  3378.     Part228.LeftSurface = Enum.SurfaceType.Weld
  3379.     Part228.RightSurface = Enum.SurfaceType.Weld
  3380.     Part228.TopSurface = Enum.SurfaceType.Weld
  3381.     Part228.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3382.     Part228.Position = Vector3.new(-10.8100386, 6.70071936, 31.4599133)
  3383.     Part228.Orientation = Vector3.new(0, -180, 0)
  3384.     Part228.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3385.     BlockMesh229.Parent = Part228
  3386.     Part230.Parent = Model0
  3387.     Part230.Material = Enum.Material.Metal
  3388.     Part230.BrickColor = BrickColor.new("Grime")
  3389.     Part230.Rotation = Vector3.new(-180, 0, -180)
  3390.     Part230.CanCollide = false
  3391.     Part230.FormFactor = Enum.FormFactor.Custom
  3392.     Part230.Size = Vector3.new(7.19999981, 5, 5.19999981)
  3393.     Part230.CFrame = CFrame.new(-1.30968046, 7.70014811, 44.0596848, -1, 9.28767258e-06, -6.2477724e-05, 9.65974232e-06, 0.99999088, 3.24114408e-05, 7.00270903e-05, 3.77095821e-05, -1.00000012)
  3394.     Part230.BackSurface = Enum.SurfaceType.Weld
  3395.     Part230.BottomSurface = Enum.SurfaceType.Weld
  3396.     Part230.FrontSurface = Enum.SurfaceType.Weld
  3397.     Part230.LeftSurface = Enum.SurfaceType.Weld
  3398.     Part230.RightSurface = Enum.SurfaceType.Weld
  3399.     Part230.TopSurface = Enum.SurfaceType.Weld
  3400.     Part230.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3401.     Part230.Position = Vector3.new(-1.30968046, 7.70014811, 44.0596848)
  3402.     Part230.Orientation = Vector3.new(0, -180, 0)
  3403.     Part230.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3404.     BlockMesh231.Parent = Part230
  3405.     Part232.Parent = Model0
  3406.     Part232.Material = Enum.Material.Metal
  3407.     Part232.BrickColor = BrickColor.new("Grime")
  3408.     Part232.Rotation = Vector3.new(-180, -0.00999999978, -180)
  3409.     Part232.CanCollide = false
  3410.     Part232.FormFactor = Enum.FormFactor.Custom
  3411.     Part232.Size = Vector3.new(4, 3.60000014, 0.400000006)
  3412.     Part232.CFrame = CFrame.new(-23.5095253, 6.40087748, 41.6604347, -1, 1.09171879e-05, -9.79027827e-05, 1.12118551e-05, 1, 2.75443344e-05, 0.000103897743, 3.17625672e-05, -1)
  3413.     Part232.BackSurface = Enum.SurfaceType.Weld
  3414.     Part232.BottomSurface = Enum.SurfaceType.Weld
  3415.     Part232.FrontSurface = Enum.SurfaceType.Weld
  3416.     Part232.LeftSurface = Enum.SurfaceType.Weld
  3417.     Part232.RightSurface = Enum.SurfaceType.Weld
  3418.     Part232.TopSurface = Enum.SurfaceType.Weld
  3419.     Part232.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3420.     Part232.Position = Vector3.new(-23.5095253, 6.40087748, 41.6604347)
  3421.     Part232.Orientation = Vector3.new(0, -179.98999, 0)
  3422.     Part232.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3423.     BlockMesh233.Parent = Part232
  3424.     Part234.Parent = Model0
  3425.     Part234.Material = Enum.Material.Metal
  3426.     Part234.BrickColor = BrickColor.new("Grime")
  3427.     Part234.Rotation = Vector3.new(180, 0, -180)
  3428.     Part234.CanCollide = false
  3429.     Part234.FormFactor = Enum.FormFactor.Custom
  3430.     Part234.Size = Vector3.new(0.200000003, 4.19999981, 4.4000001)
  3431.     Part234.CFrame = CFrame.new(-16.8097973, 8.10076141, 33.6598473, -1, 8.92862408e-06, -5.77830069e-05, 8.94776349e-06, 1, -8.51531922e-07, 5.81714412e-05, -5.790248e-07, -1)
  3432.     Part234.BackSurface = Enum.SurfaceType.Weld
  3433.     Part234.BottomSurface = Enum.SurfaceType.Weld
  3434.     Part234.FrontSurface = Enum.SurfaceType.Weld
  3435.     Part234.LeftSurface = Enum.SurfaceType.Weld
  3436.     Part234.RightSurface = Enum.SurfaceType.Weld
  3437.     Part234.TopSurface = Enum.SurfaceType.Weld
  3438.     Part234.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3439.     Part234.Position = Vector3.new(-16.8097973, 8.10076141, 33.6598473)
  3440.     Part234.Orientation = Vector3.new(0, -180, 0)
  3441.     Part234.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3442.     BlockMesh235.Parent = Part234
  3443.     Part236.Parent = Model0
  3444.     Part236.Material = Enum.Material.Ice
  3445.     Part236.BrickColor = BrickColor.new("Dark stone grey")
  3446.     Part236.Transparency = 0.5
  3447.     Part236.Rotation = Vector3.new(172.399994, 0, -180)
  3448.     Part236.CanCollide = false
  3449.     Part236.FormFactor = Enum.FormFactor.Custom
  3450.     Part236.Size = Vector3.new(3, 2.5999999, 0.200000003)
  3451.     Part236.CFrame = CFrame.new(-24.2096062, 8.73111153, 46.5839996, -1, 1.03770833e-06, -6.15868048e-05, 1.03748134e-05, 0.991209269, -0.132304236, 8.50215365e-05, -0.132287398, -0.991211414)
  3452.     Part236.BackSurface = Enum.SurfaceType.Weld
  3453.     Part236.BottomSurface = Enum.SurfaceType.Weld
  3454.     Part236.FrontSurface = Enum.SurfaceType.Weld
  3455.     Part236.LeftSurface = Enum.SurfaceType.Weld
  3456.     Part236.RightSurface = Enum.SurfaceType.Weld
  3457.     Part236.TopSurface = Enum.SurfaceType.Weld
  3458.     Part236.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3459.     Part236.Position = Vector3.new(-24.2096062, 8.73111153, 46.5839996)
  3460.     Part236.Orientation = Vector3.new(7.5999999, -180, 0)
  3461.     Part236.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3462.     BlockMesh237.Parent = Part236
  3463.     BlockMesh237.Offset = Vector3.new(0, 0, 0.200000003)
  3464.     BlockMesh237.Scale = Vector3.new(1, 1.14999998, 0.5)
  3465.     BlockMesh237.Scale = Vector3.new(1, 1.14999998, 0.5)
  3466.     Part238.Parent = Model0
  3467.     Part238.Material = Enum.Material.Metal
  3468.     Part238.BrickColor = BrickColor.new("Grime")
  3469.     Part238.Rotation = Vector3.new(180, 0, -180)
  3470.     Part238.CanCollide = false
  3471.     Part238.FormFactor = Enum.FormFactor.Custom
  3472.     Part238.Size = Vector3.new(22, 0.799999714, 0.600000441)
  3473.     Part238.CFrame = CFrame.new(-5.70983505, 8.60029507, 41.1600647, -1, 6.14293958e-06, -2.86971044e-07, 6.52252311e-06, 0.99999088, -2.05128945e-05, 7.94687185e-06, -1.51366112e-05, -1.00000012)
  3474.     Part238.BackSurface = Enum.SurfaceType.Weld
  3475.     Part238.BottomSurface = Enum.SurfaceType.Weld
  3476.     Part238.FrontSurface = Enum.SurfaceType.Weld
  3477.     Part238.LeftSurface = Enum.SurfaceType.Weld
  3478.     Part238.RightSurface = Enum.SurfaceType.Weld
  3479.     Part238.TopSurface = Enum.SurfaceType.Weld
  3480.     Part238.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3481.     Part238.Position = Vector3.new(-5.70983505, 8.60029507, 41.1600647)
  3482.     Part238.Orientation = Vector3.new(0, -180, 0)
  3483.     Part238.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3484.     BlockMesh239.Parent = Part238
  3485.     Part240.Parent = Model0
  3486.     Part240.Material = Enum.Material.Metal
  3487.     Part240.BrickColor = BrickColor.new("Grime")
  3488.     Part240.Rotation = Vector3.new(-180, 0, -180)
  3489.     Part240.CanCollide = false
  3490.     Part240.FormFactor = Enum.FormFactor.Custom
  3491.     Part240.Size = Vector3.new(1.59999919, 0.799999952, 5.19999981)
  3492.     Part240.CFrame = CFrame.new(3.09039879, 6.80017376, 33.6598129, -1, 7.68635618e-06, -3.03721881e-05, 7.69642338e-06, 1, 9.77274976e-06, 3.05831309e-05, 9.92072819e-06, -1)
  3493.     Part240.BackSurface = Enum.SurfaceType.Weld
  3494.     Part240.BottomSurface = Enum.SurfaceType.Weld
  3495.     Part240.FrontSurface = Enum.SurfaceType.Weld
  3496.     Part240.LeftSurface = Enum.SurfaceType.Weld
  3497.     Part240.RightSurface = Enum.SurfaceType.Weld
  3498.     Part240.TopSurface = Enum.SurfaceType.Weld
  3499.     Part240.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3500.     Part240.Position = Vector3.new(3.09039879, 6.80017376, 33.6598129)
  3501.     Part240.Orientation = Vector3.new(0, -180, 0)
  3502.     Part240.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3503.     BlockMesh241.Parent = Part240
  3504.     Part242.Parent = Model0
  3505.     Part242.Material = Enum.Material.Ice
  3506.     Part242.BrickColor = BrickColor.new("Dark stone grey")
  3507.     Part242.Transparency = 0.5
  3508.     Part242.Rotation = Vector3.new(172.399994, -0.00999999978, 180)
  3509.     Part242.CanCollide = false
  3510.     Part242.FormFactor = Enum.FormFactor.Custom
  3511.     Part242.Size = Vector3.new(6, 2, 0.200000003)
  3512.     Part242.CFrame = CFrame.new(-19.709465, 8.82992744, 46.5701866, -1, -7.48528237e-06, -0.000163338729, 1.53728633e-05, 0.991222322, -0.132206306, 0.000187008089, -0.132189468, -0.991224468)
  3513.     Part242.BackSurface = Enum.SurfaceType.Weld
  3514.     Part242.BottomSurface = Enum.SurfaceType.Weld
  3515.     Part242.FrontSurface = Enum.SurfaceType.Weld
  3516.     Part242.LeftSurface = Enum.SurfaceType.Weld
  3517.     Part242.RightSurface = Enum.SurfaceType.Weld
  3518.     Part242.TopSurface = Enum.SurfaceType.Weld
  3519.     Part242.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3520.     Part242.Position = Vector3.new(-19.709465, 8.82992744, 46.5701866)
  3521.     Part242.Orientation = Vector3.new(7.5999999, -179.98999, 0)
  3522.     Part242.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3523.     BlockMesh243.Parent = Part242
  3524.     BlockMesh243.Offset = Vector3.new(0, 0, 0.200000003)
  3525.     BlockMesh243.Scale = Vector3.new(1, 1.14999998, 0.5)
  3526.     BlockMesh243.Scale = Vector3.new(1, 1.14999998, 0.5)
  3527.     Part244.Parent = Model0
  3528.     Part244.Material = Enum.Material.Metal
  3529.     Part244.BrickColor = BrickColor.new("Grime")
  3530.     Part244.Rotation = Vector3.new(-180, 0, -180)
  3531.     Part244.CanCollide = false
  3532.     Part244.FormFactor = Enum.FormFactor.Custom
  3533.     Part244.Size = Vector3.new(22, 0.200000003, 5.20000029)
  3534.     Part244.CFrame = CFrame.new(-5.70976353, 8.10029221, 38.8601913, -1, 7.18417186e-06, -2.02370084e-05, 7.56368945e-06, 0.99999088, 2.50288394e-06, 2.78970601e-05, 7.87922181e-06, -1.00000012)
  3535.     Part244.BackSurface = Enum.SurfaceType.Weld
  3536.     Part244.BottomSurface = Enum.SurfaceType.Weld
  3537.     Part244.FrontSurface = Enum.SurfaceType.Weld
  3538.     Part244.LeftSurface = Enum.SurfaceType.Weld
  3539.     Part244.RightSurface = Enum.SurfaceType.Weld
  3540.     Part244.TopSurface = Enum.SurfaceType.Weld
  3541.     Part244.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3542.     Part244.Position = Vector3.new(-5.70976353, 8.10029221, 38.8601913)
  3543.     Part244.Orientation = Vector3.new(0, -180, 0)
  3544.     Part244.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3545.     BlockMesh245.Parent = Part244
  3546.     Part246.Parent = Model0
  3547.     Part246.Material = Enum.Material.Metal
  3548.     Part246.BrickColor = BrickColor.new("Grime")
  3549.     Part246.Rotation = Vector3.new(180, 0, -180)
  3550.     Part246.CanCollide = false
  3551.     Part246.FormFactor = Enum.FormFactor.Custom
  3552.     Part246.Size = Vector3.new(0.799999237, 4.20000029, 0.400000006)
  3553.     Part246.CFrame = CFrame.new(-17.109623, 8.10075474, 36.0598869, -1, 8.79787513e-06, -5.50586119e-05, 8.82257518e-06, 1, -2.83478767e-06, 5.55580045e-05, -2.48424249e-06, -1)
  3554.     Part246.BackSurface = Enum.SurfaceType.Weld
  3555.     Part246.BottomSurface = Enum.SurfaceType.Weld
  3556.     Part246.FrontSurface = Enum.SurfaceType.Weld
  3557.     Part246.LeftSurface = Enum.SurfaceType.Weld
  3558.     Part246.RightSurface = Enum.SurfaceType.Weld
  3559.     Part246.TopSurface = Enum.SurfaceType.Weld
  3560.     Part246.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3561.     Part246.Position = Vector3.new(-17.109623, 8.10075474, 36.0598869)
  3562.     Part246.Orientation = Vector3.new(0, -180, 0)
  3563.     Part246.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3564.     BlockMesh247.Parent = Part246
  3565.     Part248.Name = "wheel"
  3566.     Part248.Parent = Model0
  3567.     Part248.Material = Enum.Material.Metal
  3568.     Part248.BrickColor = BrickColor.new("Grime")
  3569.     Part248.Transparency = 1
  3570.     Part248.Rotation = Vector3.new(90, 90, 0)
  3571.     Part248.FormFactor = Enum.FormFactor.Symmetric
  3572.     Part248.Friction = 1
  3573.     Part248.Shape = Enum.PartType.Ball
  3574.     Part248.Size = Vector3.new(5, 5, 5)
  3575.     Part248.CFrame = CFrame.new(-22.5099754, 2.99934292, 28.5597458, 1.68583483e-05, 9.94351055e-08, 1, 1, 4.67716745e-08, -1.68586612e-05, -3.92897164e-08, 1, -1.10534181e-07)
  3576.     Part248.BottomSurface = Enum.SurfaceType.Smooth
  3577.     Part248.TopSurface = Enum.SurfaceType.Hinge
  3578.     Part248.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3579.     Part248.Position = Vector3.new(-22.5099754, 2.99934292, 28.5597458)
  3580.     Part248.Orientation = Vector3.new(0, 90, 90)
  3581.     Part248.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3582.     CylinderMesh249.Parent = Part248
  3583.     CylinderMesh249.Offset = Vector3.new(0, -1.10000002, 0)
  3584.     CylinderMesh249.Scale = Vector3.new(1, 0.600000024, 1)
  3585.     CylinderMesh249.Scale = Vector3.new(1, 0.600000024, 1)
  3586.     Part250.Parent = Model0
  3587.     Part250.Material = Enum.Material.Metal
  3588.     Part250.BrickColor = BrickColor.new("Grime")
  3589.     Part250.Rotation = Vector3.new(180, 0, -180)
  3590.     Part250.FormFactor = Enum.FormFactor.Custom
  3591.     Part250.Size = Vector3.new(22.7999992, 3.99999976, 5.20000029)
  3592.     Part250.CFrame = CFrame.new(-6.10987282, 6.00021553, 38.8599777, -1, 6.44594638e-06, -5.42557655e-06, 6.45635237e-06, 1, -7.76254092e-06, 5.63639105e-06, -7.6143624e-06, -1)
  3593.     Part250.BottomSurface = Enum.SurfaceType.Weld
  3594.     Part250.LeftSurface = Enum.SurfaceType.Weld
  3595.     Part250.RightSurface = Enum.SurfaceType.Weld
  3596.     Part250.TopSurface = Enum.SurfaceType.Weld
  3597.     Part250.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3598.     Part250.Position = Vector3.new(-6.10987282, 6.00021553, 38.8599777)
  3599.     Part250.Orientation = Vector3.new(0, -180, 0)
  3600.     Part250.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3601.     BlockMesh251.Parent = Part250
  3602.     Part252.Parent = Model0
  3603.     Part252.Material = Enum.Material.Metal
  3604.     Part252.BrickColor = BrickColor.new("Grime")
  3605.     Part252.Rotation = Vector3.new(-180, 0, -180)
  3606.     Part252.FormFactor = Enum.FormFactor.Custom
  3607.     Part252.Size = Vector3.new(9.00000095, 0.800000072, 5.20000029)
  3608.     Part252.CFrame = CFrame.new(-22.0095825, 4.40028095, 38.8602219, -1, 7.54429402e-06, -2.79332871e-05, 7.55442079e-06, 1, 8.47021511e-06, 2.81442171e-05, 8.61821627e-06, -1)
  3609.     Part252.BackSurface = Enum.SurfaceType.Weld
  3610.     Part252.BottomSurface = Enum.SurfaceType.Weld
  3611.     Part252.FrontSurface = Enum.SurfaceType.Weld
  3612.     Part252.LeftSurface = Enum.SurfaceType.Weld
  3613.     Part252.RightSurface = Enum.SurfaceType.Weld
  3614.     Part252.TopSurface = Enum.SurfaceType.Weld
  3615.     Part252.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3616.     Part252.Position = Vector3.new(-22.0095825, 4.40028095, 38.8602219)
  3617.     Part252.Orientation = Vector3.new(0, -180, 0)
  3618.     Part252.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3619.     BlockMesh253.Parent = Part252
  3620.     Part254.Parent = Model0
  3621.     Part254.Material = Enum.Material.Metal
  3622.     Part254.BrickColor = BrickColor.new("Grime")
  3623.     Part254.Rotation = Vector3.new(-180, 0, -180)
  3624.     Part254.CanCollide = false
  3625.     Part254.FormFactor = Enum.FormFactor.Custom
  3626.     Part254.Size = Vector3.new(8, 2.79999995, 0.400000006)
  3627.     Part254.CFrame = CFrame.new(-21.5101471, 6.00087833, 31.2600803, -1, 6.5851641e-06, -8.26637188e-06, 6.74582452e-06, 0.999991715, 1.20076311e-05, 1.15773773e-05, 1.42274675e-05, -1.00000143)
  3628.     Part254.BottomSurface = Enum.SurfaceType.Weld
  3629.     Part254.FrontSurface = Enum.SurfaceType.Weld
  3630.     Part254.LeftSurface = Enum.SurfaceType.Weld
  3631.     Part254.RightSurface = Enum.SurfaceType.Weld
  3632.     Part254.TopSurface = Enum.SurfaceType.Weld
  3633.     Part254.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3634.     Part254.Position = Vector3.new(-21.5101471, 6.00087833, 31.2600803)
  3635.     Part254.Orientation = Vector3.new(0, -180, 0)
  3636.     Part254.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3637.     BlockMesh255.Parent = Part254
  3638.     Part256.Parent = Model0
  3639.     Part256.Material = Enum.Material.Metal
  3640.     Part256.BrickColor = BrickColor.new("Grime")
  3641.     Part256.Rotation = Vector3.new(180, 0, -180)
  3642.     Part256.FormFactor = Enum.FormFactor.Custom
  3643.     Part256.Size = Vector3.new(8, 1.20000005, 5.19999981)
  3644.     Part256.CFrame = CFrame.new(-21.5099373, 3.40028739, 33.6600609, -1, 6.41632732e-06, -4.81871075e-06, 6.4790911e-06, 1, -8.07724973e-06, 6.09494327e-06, -7.18019601e-06, -1)
  3645.     Part256.BottomSurface = Enum.SurfaceType.Weld
  3646.     Part256.LeftSurface = Enum.SurfaceType.Weld
  3647.     Part256.RightSurface = Enum.SurfaceType.Weld
  3648.     Part256.TopSurface = Enum.SurfaceType.Weld
  3649.     Part256.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3650.     Part256.Position = Vector3.new(-21.5099373, 3.40028739, 33.6600609)
  3651.     Part256.Orientation = Vector3.new(0, -180, 0)
  3652.     Part256.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3653.     BlockMesh257.Parent = Part256
  3654.     Part258.Parent = Model0
  3655.     Part258.Material = Enum.Material.Metal
  3656.     Part258.BrickColor = BrickColor.new("Grime")
  3657.     Part258.Rotation = Vector3.new(180, 0, -180)
  3658.     Part258.CanCollide = false
  3659.     Part258.FormFactor = Enum.FormFactor.Custom
  3660.     Part258.Size = Vector3.new(8, 2.79999995, 0.400000006)
  3661.     Part258.CFrame = CFrame.new(-21.509985, 6.00044394, 46.4600868, -1, 8.28853172e-06, -4.09939275e-05, 8.58829844e-06, 1, -3.20226973e-05, 4.70105078e-05, -2.77881045e-05, -1)
  3662.     Part258.BackSurface = Enum.SurfaceType.Weld
  3663.     Part258.BottomSurface = Enum.SurfaceType.Weld
  3664.     Part258.LeftSurface = Enum.SurfaceType.Weld
  3665.     Part258.RightSurface = Enum.SurfaceType.Weld
  3666.     Part258.TopSurface = Enum.SurfaceType.Weld
  3667.     Part258.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3668.     Part258.Position = Vector3.new(-21.509985, 6.00044394, 46.4600868)
  3669.     Part258.Orientation = Vector3.new(0, -180, 0)
  3670.     Part258.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3671.     BlockMesh259.Parent = Part258
  3672.     Part260.Parent = Model0
  3673.     Part260.Material = Enum.Material.Metal
  3674.     Part260.BrickColor = BrickColor.new("Grime")
  3675.     Part260.Rotation = Vector3.new(-180, 0, -180)
  3676.     Part260.FormFactor = Enum.FormFactor.Custom
  3677.     Part260.Size = Vector3.new(8, 0.600000083, 5.19999981)
  3678.     Part260.CFrame = CFrame.new(-21.509903, 4.3003602, 44.0600548, -1, 5.38951872e-06, 1.67202743e-05, 5.68799487e-06, 1, 1.31562274e-06, -1.07034357e-05, 5.55068073e-06, -1)
  3679.     Part260.BackSurface = Enum.SurfaceType.Weld
  3680.     Part260.BottomSurface = Enum.SurfaceType.Weld
  3681.     Part260.LeftSurface = Enum.SurfaceType.Weld
  3682.     Part260.RightSurface = Enum.SurfaceType.Weld
  3683.     Part260.TopSurface = Enum.SurfaceType.Weld
  3684.     Part260.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3685.     Part260.Position = Vector3.new(-21.509903, 4.3003602, 44.0600548)
  3686.     Part260.Orientation = Vector3.new(0, 180, 0)
  3687.     Part260.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3688.     BlockMesh261.Parent = Part260
  3689.     Part262.Parent = Model0
  3690.     Part262.Material = Enum.Material.Metal
  3691.     Part262.BrickColor = BrickColor.new("Grime")
  3692.     Part262.Rotation = Vector3.new(172.399994, 0, -180)
  3693.     Part262.CanCollide = false
  3694.     Part262.FormFactor = Enum.FormFactor.Custom
  3695.     Part262.Size = Vector3.new(6, 0.400000036, 0.200000003)
  3696.     Part262.CFrame = CFrame.new(-19.7101326, 7.64007092, 46.7289124, -1, 7.62399668e-06, 1.59960618e-05, 6.63972241e-06, 0.991217554, -0.132242054, 7.24958954e-06, -0.132225215, -0.991219759)
  3697.     Part262.BackSurface = Enum.SurfaceType.Weld
  3698.     Part262.BottomSurface = Enum.SurfaceType.Weld
  3699.     Part262.FrontSurface = Enum.SurfaceType.Weld
  3700.     Part262.LeftSurface = Enum.SurfaceType.Weld
  3701.     Part262.RightSurface = Enum.SurfaceType.Weld
  3702.     Part262.TopSurface = Enum.SurfaceType.Weld
  3703.     Part262.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3704.     Part262.Position = Vector3.new(-19.7101326, 7.64007092, 46.7289124)
  3705.     Part262.Orientation = Vector3.new(7.5999999, 180, 0)
  3706.     Part262.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3707.     BlockMesh263.Parent = Part262
  3708.     BlockMesh263.Offset = Vector3.new(0, 0, 0.200000003)
  3709.     BlockMesh263.Scale = Vector3.new(1, 1.14999998, 1)
  3710.     BlockMesh263.Scale = Vector3.new(1, 1.14999998, 1)
  3711.     Part264.Parent = Model0
  3712.     Part264.Material = Enum.Material.Metal
  3713.     Part264.BrickColor = BrickColor.new("Grime")
  3714.     Part264.Rotation = Vector3.new(-180, 0, -180)
  3715.     Part264.CanCollide = false
  3716.     Part264.FormFactor = Enum.FormFactor.Custom
  3717.     Part264.Size = Vector3.new(4.79999924, 4.20000029, 0.400000006)
  3718.     Part264.CFrame = CFrame.new(-19.1095543, 8.10087967, 41.6602554, -1, 1.00066009e-05, -7.96175955e-05, 1.02973845e-05, 1, 1.46885304e-05, 8.55014368e-05, 1.88290433e-05, -1)
  3719.     Part264.BackSurface = Enum.SurfaceType.Weld
  3720.     Part264.BottomSurface = Enum.SurfaceType.Weld
  3721.     Part264.FrontSurface = Enum.SurfaceType.Weld
  3722.     Part264.LeftSurface = Enum.SurfaceType.Weld
  3723.     Part264.RightSurface = Enum.SurfaceType.Weld
  3724.     Part264.TopSurface = Enum.SurfaceType.Weld
  3725.     Part264.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3726.     Part264.Position = Vector3.new(-19.1095543, 8.10087967, 41.6602554)
  3727.     Part264.Orientation = Vector3.new(0, -180, 0)
  3728.     Part264.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3729.     BlockMesh265.Parent = Part264
  3730.     Part266.Parent = Model0
  3731.     Part266.Material = Enum.Material.Metal
  3732.     Part266.BrickColor = BrickColor.new("Grime")
  3733.     Part266.Rotation = Vector3.new(-180, 0, -180)
  3734.     Part266.CanCollide = false
  3735.     Part266.FormFactor = Enum.FormFactor.Custom
  3736.     Part266.Size = Vector3.new(3.99999928, 5.60000038, 0.400000006)
  3737.     Part266.CFrame = CFrame.new(-19.5095768, 7.40064335, 36.0599785, -1, 9.13069925e-06, -6.21806248e-05, 9.83368318e-06, 0.99999088, 2.60451998e-06, 7.64155848e-05, 1.2662108e-05, -1.00000012)
  3738.     Part266.BackSurface = Enum.SurfaceType.Weld
  3739.     Part266.BottomSurface = Enum.SurfaceType.Weld
  3740.     Part266.FrontSurface = Enum.SurfaceType.Weld
  3741.     Part266.LeftSurface = Enum.SurfaceType.Weld
  3742.     Part266.RightSurface = Enum.SurfaceType.Weld
  3743.     Part266.TopSurface = Enum.SurfaceType.Weld
  3744.     Part266.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3745.     Part266.Position = Vector3.new(-19.5095768, 7.40064335, 36.0599785)
  3746.     Part266.Orientation = Vector3.new(0, -180, 0)
  3747.     Part266.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3748.     BlockMesh267.Parent = Part266
  3749.     Part268.Parent = Model0
  3750.     Part268.Material = Enum.Material.Metal
  3751.     Part268.BrickColor = BrickColor.new("Grime")
  3752.     Part268.Rotation = Vector3.new(-180, 0, -180)
  3753.     Part268.CanCollide = false
  3754.     Part268.FormFactor = Enum.FormFactor.Custom
  3755.     Part268.Size = Vector3.new(3.99999928, 1.40000033, 0.400000006)
  3756.     Part268.CFrame = CFrame.new(-19.5098534, 5.30032063, 41.6600571, -1, 7.29569683e-06, -2.24659452e-05, 7.88762736e-06, 1, 4.21738878e-06, 3.43997672e-05, 1.26169134e-05, -1)
  3757.     Part268.BackSurface = Enum.SurfaceType.Weld
  3758.     Part268.BottomSurface = Enum.SurfaceType.Weld
  3759.     Part268.FrontSurface = Enum.SurfaceType.Weld
  3760.     Part268.LeftSurface = Enum.SurfaceType.Weld
  3761.     Part268.RightSurface = Enum.SurfaceType.Weld
  3762.     Part268.TopSurface = Enum.SurfaceType.Weld
  3763.     Part268.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3764.     Part268.Position = Vector3.new(-19.5098534, 5.30032063, 41.6600571)
  3765.     Part268.Orientation = Vector3.new(0, -180, 0)
  3766.     Part268.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3767.     BlockMesh269.Parent = Part268
  3768.     Part270.Parent = Model0
  3769.     Part270.Material = Enum.Material.Metal
  3770.     Part270.BrickColor = BrickColor.new("Grime")
  3771.     Part270.Rotation = Vector3.new(-180, 0, -180)
  3772.     Part270.FormFactor = Enum.FormFactor.Custom
  3773.     Part270.Size = Vector3.new(8, 0.600000083, 5.19999981)
  3774.     Part270.CFrame = CFrame.new(-21.5100098, 4.30057859, 33.6601372, -1, 6.76650234e-06, -2.10475282e-05, 6.92721051e-06, 0.999991715, 2.39840938e-06, 2.43584891e-05, 4.61806076e-06, -1.00000143)
  3775.     Part270.BottomSurface = Enum.SurfaceType.Weld
  3776.     Part270.FrontSurface = Enum.SurfaceType.Weld
  3777.     Part270.LeftSurface = Enum.SurfaceType.Weld
  3778.     Part270.RightSurface = Enum.SurfaceType.Weld
  3779.     Part270.TopSurface = Enum.SurfaceType.Weld
  3780.     Part270.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3781.     Part270.Position = Vector3.new(-21.5100098, 4.30057859, 33.6601372)
  3782.     Part270.Orientation = Vector3.new(0, -180, 0)
  3783.     Part270.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3784.     BlockMesh271.Parent = Part270
  3785.     Part272.Parent = Model0
  3786.     Part272.Material = Enum.Material.Metal
  3787.     Part272.BrickColor = BrickColor.new("Grime")
  3788.     Part272.Rotation = Vector3.new(180, 0, -180)
  3789.     Part272.FormFactor = Enum.FormFactor.Custom
  3790.     Part272.Size = Vector3.new(9.40000057, 3.19999981, 5.20000029)
  3791.     Part272.CFrame = CFrame.new(-22.2094765, 6.40075827, 38.8604355, -1, 7.93084837e-06, -3.66540953e-05, 8.22882612e-06, 1, -1.67581202e-05, 4.26486076e-05, -1.25390716e-05, -1)
  3792.     Part272.BackSurface = Enum.SurfaceType.Weld
  3793.     Part272.BottomSurface = Enum.SurfaceType.Weld
  3794.     Part272.FrontSurface = Enum.SurfaceType.Weld
  3795.     Part272.LeftSurface = Enum.SurfaceType.Weld
  3796.     Part272.RightSurface = Enum.SurfaceType.Weld
  3797.     Part272.TopSurface = Enum.SurfaceType.Weld
  3798.     Part272.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3799.     Part272.Position = Vector3.new(-22.2094765, 6.40075827, 38.8604355)
  3800.     Part272.Orientation = Vector3.new(0, -180, 0)
  3801.     Part272.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3802.     BlockMesh273.Parent = Part272
  3803.     Part274.Parent = Model0
  3804.     Part274.Material = Enum.Material.Metal
  3805.     Part274.BrickColor = BrickColor.new("Grime")
  3806.     Part274.Rotation = Vector3.new(-180, -0.00999999978, -180)
  3807.     Part274.CanCollide = false
  3808.     Part274.FormFactor = Enum.FormFactor.Custom
  3809.     Part274.Size = Vector3.new(0.200000003, 4.19999981, 4.4000001)
  3810.     Part274.CFrame = CFrame.new(-16.8093033, 8.10082817, 44.0597496, -1, 1.14173636e-05, -0.000108378299, 1.16978508e-05, 1, 3.53243195e-05, 0.00011410701, 3.93551636e-05, -1)
  3811.     Part274.BackSurface = Enum.SurfaceType.Weld
  3812.     Part274.BottomSurface = Enum.SurfaceType.Weld
  3813.     Part274.FrontSurface = Enum.SurfaceType.Weld
  3814.     Part274.LeftSurface = Enum.SurfaceType.Weld
  3815.     Part274.RightSurface = Enum.SurfaceType.Weld
  3816.     Part274.TopSurface = Enum.SurfaceType.Weld
  3817.     Part274.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3818.     Part274.Position = Vector3.new(-16.8093033, 8.10082817, 44.0597496)
  3819.     Part274.Orientation = Vector3.new(0, -179.98999, 0)
  3820.     Part274.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3821.     BlockMesh275.Parent = Part274
  3822.     Part276.Parent = Model0
  3823.     Part276.Material = Enum.Material.Metal
  3824.     Part276.BrickColor = BrickColor.new("Grime")
  3825.     Part276.Rotation = Vector3.new(-180, 0, -180)
  3826.     Part276.CanCollide = false
  3827.     Part276.FormFactor = Enum.FormFactor.Custom
  3828.     Part276.Size = Vector3.new(0.799999237, 1.40000033, 0.400000006)
  3829.     Part276.CFrame = CFrame.new(-17.1096954, 6.70062399, 31.2602272, -1, 7.63167918e-06, -3.04036766e-05, 7.79194579e-06, 0.999991715, 1.59272313e-05, 3.37147576e-05, 1.81469222e-05, -1.00000143)
  3830.     Part276.BackSurface = Enum.SurfaceType.Weld
  3831.     Part276.BottomSurface = Enum.SurfaceType.Weld
  3832.     Part276.FrontSurface = Enum.SurfaceType.Weld
  3833.     Part276.LeftSurface = Enum.SurfaceType.Weld
  3834.     Part276.RightSurface = Enum.SurfaceType.Weld
  3835.     Part276.TopSurface = Enum.SurfaceType.Weld
  3836.     Part276.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3837.     Part276.Position = Vector3.new(-17.1096954, 6.70062399, 31.2602272)
  3838.     Part276.Orientation = Vector3.new(0, -180, 0)
  3839.     Part276.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3840.     BlockMesh277.Parent = Part276
  3841.     Part278.Parent = Model0
  3842.     Part278.Material = Enum.Material.Metal
  3843.     Part278.BrickColor = BrickColor.new("Grime")
  3844.     Part278.Rotation = Vector3.new(180, 0, -180)
  3845.     Part278.CanCollide = false
  3846.     Part278.FormFactor = Enum.FormFactor.Custom
  3847.     Part278.Size = Vector3.new(0.799999714, 1.39999998, 0.400000006)
  3848.     Part278.CFrame = CFrame.new(-17.1098671, 6.70034742, 46.4597092, -1, 9.67943106e-06, -6.97521682e-05, 9.97899224e-06, 1, -1.5873462e-05, 7.57688613e-05, -1.16392221e-05, -1)
  3849.     Part278.BackSurface = Enum.SurfaceType.Weld
  3850.     Part278.BottomSurface = Enum.SurfaceType.Weld
  3851.     Part278.FrontSurface = Enum.SurfaceType.Weld
  3852.     Part278.LeftSurface = Enum.SurfaceType.Weld
  3853.     Part278.RightSurface = Enum.SurfaceType.Weld
  3854.     Part278.TopSurface = Enum.SurfaceType.Weld
  3855.     Part278.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3856.     Part278.Position = Vector3.new(-17.1098671, 6.70034742, 46.4597092)
  3857.     Part278.Orientation = Vector3.new(0, -180, 0)
  3858.     Part278.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3859.     BlockMesh279.Parent = Part278
  3860.     Part280.Parent = Model0
  3861.     Part280.Material = Enum.Material.Metal
  3862.     Part280.BrickColor = BrickColor.new("Grime")
  3863.     Part280.Rotation = Vector3.new(180, 0, -180)
  3864.     Part280.CanCollide = false
  3865.     Part280.FormFactor = Enum.FormFactor.Custom
  3866.     Part280.Size = Vector3.new(4, 3.60000014, 0.400000006)
  3867.     Part280.CFrame = CFrame.new(-23.5096321, 6.40070248, 36.0604095, -1, 7.78029607e-06, -3.33969365e-05, 8.37296375e-06, 1, -1.92508596e-05, 4.53305838e-05, -1.08514441e-05, -1)
  3868.     Part280.BackSurface = Enum.SurfaceType.Weld
  3869.     Part280.BottomSurface = Enum.SurfaceType.Weld
  3870.     Part280.FrontSurface = Enum.SurfaceType.Weld
  3871.     Part280.LeftSurface = Enum.SurfaceType.Weld
  3872.     Part280.RightSurface = Enum.SurfaceType.Weld
  3873.     Part280.TopSurface = Enum.SurfaceType.Weld
  3874.     Part280.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3875.     Part280.Position = Vector3.new(-23.5096321, 6.40070248, 36.0604095)
  3876.     Part280.Orientation = Vector3.new(0, -180, 0)
  3877.     Part280.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3878.     BlockMesh281.Parent = Part280
  3879.     Part282.Parent = Model0
  3880.     Part282.Material = Enum.Material.Metal
  3881.     Part282.BrickColor = BrickColor.new("Grime")
  3882.     Part282.Rotation = Vector3.new(-180, 0, -180)
  3883.     Part282.CanCollide = false
  3884.     Part282.FormFactor = Enum.FormFactor.Custom
  3885.     Part282.Size = Vector3.new(1.00000012, 2.20000005, 5.19999981)
  3886.     Part282.CFrame = CFrame.new(-26.0093632, 6.30065203, 33.6606827, -1, 9.146097e-06, -6.23015076e-05, 9.88777356e-06, 0.999991715, 1.19247252e-05, 7.7335586e-05, 2.23954721e-05, -1.00000143)
  3887.     Part282.BackSurface = Enum.SurfaceType.Weld
  3888.     Part282.BottomSurface = Enum.SurfaceType.Weld
  3889.     Part282.FrontSurface = Enum.SurfaceType.Weld
  3890.     Part282.LeftSurface = Enum.SurfaceType.Weld
  3891.     Part282.RightSurface = Enum.SurfaceType.Weld
  3892.     Part282.TopSurface = Enum.SurfaceType.Weld
  3893.     Part282.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3894.     Part282.Position = Vector3.new(-26.0093632, 6.30065203, 33.6606827)
  3895.     Part282.Orientation = Vector3.new(0, -180, 0)
  3896.     Part282.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3897.     BlockMesh283.Parent = Part282
  3898.     Part284.Parent = Model0
  3899.     Part284.Material = Enum.Material.Metal
  3900.     Part284.BrickColor = BrickColor.new("Grime")
  3901.     Part284.Rotation = Vector3.new(-180, 0, -180)
  3902.     Part284.FormFactor = Enum.FormFactor.Custom
  3903.     Part284.Size = Vector3.new(0.400000095, 0.800000072, 5.19999981)
  3904.     Part284.CFrame = CFrame.new(-26.7099648, 4.40034389, 38.8601379, -1, 6.28535236e-06, -2.60919842e-06, 6.58271165e-06, 1, 1.62551987e-06, 8.60384898e-06, 5.84486224e-06, -1)
  3905.     Part284.BackSurface = Enum.SurfaceType.Weld
  3906.     Part284.BottomSurface = Enum.SurfaceType.Weld
  3907.     Part284.FrontSurface = Enum.SurfaceType.Weld
  3908.     Part284.LeftSurface = Enum.SurfaceType.Weld
  3909.     Part284.RightSurface = Enum.SurfaceType.Weld
  3910.     Part284.TopSurface = Enum.SurfaceType.Weld
  3911.     Part284.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3912.     Part284.Position = Vector3.new(-26.7099648, 4.40034389, 38.8601379)
  3913.     Part284.Orientation = Vector3.new(0, -180, 0)
  3914.     Part284.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3915.     BlockMesh285.Parent = Part284
  3916.     Part286.Parent = Model0
  3917.     Part286.Material = Enum.Material.Metal
  3918.     Part286.BrickColor = BrickColor.new("Grime")
  3919.     Part286.Rotation = Vector3.new(-180, -0.00999999978, -180)
  3920.     Part286.CanCollide = false
  3921.     Part286.FormFactor = Enum.FormFactor.Custom
  3922.     Part286.Size = Vector3.new(1.00000012, 2.20000005, 5.19999981)
  3923.     Part286.CFrame = CFrame.new(-26.0095215, 6.30111074, 44.0606766, -1, 9.61294518e-06, -0.000103726969, 9.90486296e-06, 1, 5.2497966e-05, 0.000109722117, 5.67162788e-05, -1)
  3924.     Part286.BackSurface = Enum.SurfaceType.Weld
  3925.     Part286.BottomSurface = Enum.SurfaceType.Weld
  3926.     Part286.FrontSurface = Enum.SurfaceType.Weld
  3927.     Part286.LeftSurface = Enum.SurfaceType.Weld
  3928.     Part286.RightSurface = Enum.SurfaceType.Weld
  3929.     Part286.TopSurface = Enum.SurfaceType.Weld
  3930.     Part286.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3931.     Part286.Position = Vector3.new(-26.0095215, 6.30111074, 44.0606766)
  3932.     Part286.Orientation = Vector3.new(0, -179.98999, 0)
  3933.     Part286.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3934.     BlockMesh287.Parent = Part286
  3935.     Part288.Name = "Brick"
  3936.     Part288.Parent = Model0
  3937.     Part288.Material = Enum.Material.Metal
  3938.     Part288.BrickColor = BrickColor.new("Grime")
  3939.     Part288.Transparency = 1
  3940.     Part288.Rotation = Vector3.new(-98.1199951, 0, -180)
  3941.     Part288.CanCollide = false
  3942.     Part288.FormFactor = Enum.FormFactor.Custom
  3943.     Part288.Size = Vector3.new(2, 0.200000003, 1.19999993)
  3944.     Part288.CFrame = CFrame.new(-15.1093197, 9.22394657, 46.3002548, -1, 2.23412426e-05, -2.27283726e-06, 1.46798811e-06, 0.141308457, 0.989965618, 3.3739394e-05, 0.98996681, -0.141300574)
  3945.     Part288.BackSurface = Enum.SurfaceType.Weld
  3946.     Part288.BottomSurface = Enum.SurfaceType.Weld
  3947.     Part288.FrontSurface = Enum.SurfaceType.Weld
  3948.     Part288.LeftSurface = Enum.SurfaceType.Weld
  3949.     Part288.RightSurface = Enum.SurfaceType.Weld
  3950.     Part288.TopSurface = Enum.SurfaceType.Weld
  3951.     Part288.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3952.     Part288.Position = Vector3.new(-15.1093197, 9.22394657, 46.3002548)
  3953.     Part288.Orientation = Vector3.new(-81.8799973, -180, 0)
  3954.     Part288.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3955.     BlockMesh289.Parent = Part288
  3956.     BlockMesh289.Offset = Vector3.new(0, -0.189999998, 0)
  3957.     Part290.Parent = Model0
  3958.     Part290.Material = Enum.Material.Metal
  3959.     Part290.BrickColor = BrickColor.new("Grime")
  3960.     Part290.Rotation = Vector3.new(180, 0, -180)
  3961.     Part290.FormFactor = Enum.FormFactor.Custom
  3962.     Part290.Size = Vector3.new(0.400000095, 1.20000005, 5.19999981)
  3963.     Part290.CFrame = CFrame.new(-26.709795, 4.60025549, 33.6601105, -1, 6.28825137e-06, -2.67255018e-06, 6.58563977e-06, 1, -9.30688202e-06, 8.66713162e-06, -5.08754056e-06, -1)
  3964.     Part290.BackSurface = Enum.SurfaceType.Weld
  3965.     Part290.BottomSurface = Enum.SurfaceType.Weld
  3966.     Part290.FrontSurface = Enum.SurfaceType.Weld
  3967.     Part290.LeftSurface = Enum.SurfaceType.Weld
  3968.     Part290.RightSurface = Enum.SurfaceType.Weld
  3969.     Part290.TopSurface = Enum.SurfaceType.Weld
  3970.     Part290.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3971.     Part290.Position = Vector3.new(-26.709795, 4.60025549, 33.6601105)
  3972.     Part290.Orientation = Vector3.new(0, -180, 0)
  3973.     Part290.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3974.     BlockMesh291.Parent = Part290
  3975.     Part292.Parent = Model0
  3976.     Part292.Material = Enum.Material.Metal
  3977.     Part292.BrickColor = BrickColor.new("Grime")
  3978.     Part292.Rotation = Vector3.new(180, 0, -180)
  3979.     Part292.FormFactor = Enum.FormFactor.Custom
  3980.     Part292.Size = Vector3.new(0.400000095, 1.20000005, 5.19999981)
  3981.     Part292.CFrame = CFrame.new(-26.7098675, 4.60042572, 44.0601082, -1, 6.28825137e-06, -2.67255018e-06, 6.58563977e-06, 1, -9.30688202e-06, 8.66713162e-06, -5.08754056e-06, -1)
  3982.     Part292.BackSurface = Enum.SurfaceType.Weld
  3983.     Part292.BottomSurface = Enum.SurfaceType.Weld
  3984.     Part292.FrontSurface = Enum.SurfaceType.Weld
  3985.     Part292.LeftSurface = Enum.SurfaceType.Weld
  3986.     Part292.RightSurface = Enum.SurfaceType.Weld
  3987.     Part292.TopSurface = Enum.SurfaceType.Weld
  3988.     Part292.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3989.     Part292.Position = Vector3.new(-26.7098675, 4.60042572, 44.0601082)
  3990.     Part292.Orientation = Vector3.new(0, -180, 0)
  3991.     Part292.Color = Color3.new(0.498039, 0.556863, 0.392157)
  3992.     BlockMesh293.Parent = Part292
  3993.     WedgePart294.Parent = Model0
  3994.     WedgePart294.Material = Enum.Material.Metal
  3995.     WedgePart294.BrickColor = BrickColor.new("Grime")
  3996.     WedgePart294.Rotation = Vector3.new(90, 0, -180)
  3997.     WedgePart294.FormFactor = Enum.FormFactor.Custom
  3998.     WedgePart294.Size = Vector3.new(22, 1.80000019, 0.800000131)
  3999.     WedgePart294.CFrame = CFrame.new(-5.71021032, 8.60006523, 39.9598465, -1, 1.67611997e-05, -5.35971367e-06, 5.73934039e-06, 2.4999847e-06, -0.99999088, -9.10116614e-06, -1.00000012, -7.8765861e-06)
  4000.     WedgePart294.BackSurface = Enum.SurfaceType.Weld
  4001.     WedgePart294.BottomSurface = Enum.SurfaceType.Weld
  4002.     WedgePart294.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4003.     WedgePart294.Position = Vector3.new(-5.71021032, 8.60006523, 39.9598465)
  4004.     WedgePart294.Orientation = Vector3.new(89.7599945, -145.770004, 66.4599991)
  4005.     WedgePart294.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4006.     SpecialMesh295.Parent = WedgePart294
  4007.     SpecialMesh295.MeshType = Enum.MeshType.Wedge
  4008.     WedgePart296.Parent = Model0
  4009.     WedgePart296.Material = Enum.Material.Metal
  4010.     WedgePart296.BrickColor = BrickColor.new("Grime")
  4011.     WedgePart296.Rotation = Vector3.new(90, 0, 0)
  4012.     WedgePart296.CanCollide = false
  4013.     WedgePart296.FormFactor = Enum.FormFactor.Custom
  4014.     WedgePart296.Size = Vector3.new(11.8000002, 0.400000006, 2.79999995)
  4015.     WedgePart296.CFrame = CFrame.new(-10.8102522, 8.80012226, 46.259758, 1, 6.12342228e-06, -6.47552679e-06, -7.03663818e-06, 1.60052878e-05, -1, -1.74245251e-05, 1, 8.05025593e-06)
  4016.     WedgePart296.BackSurface = Enum.SurfaceType.Weld
  4017.     WedgePart296.BottomSurface = Enum.SurfaceType.Weld
  4018.     WedgePart296.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4019.     WedgePart296.Position = Vector3.new(-10.8102522, 8.80012226, 46.259758)
  4020.     WedgePart296.Orientation = Vector3.new(90, 0, 0)
  4021.     WedgePart296.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4022.     SpecialMesh297.Parent = WedgePart296
  4023.     SpecialMesh297.MeshType = Enum.MeshType.Wedge
  4024.     WedgePart298.Parent = Model0
  4025.     WedgePart298.Material = Enum.Material.Metal
  4026.     WedgePart298.BrickColor = BrickColor.new("Grime")
  4027.     WedgePart298.Rotation = Vector3.new(90, 0, 180)
  4028.     WedgePart298.FormFactor = Enum.FormFactor.Custom
  4029.     WedgePart298.Size = Vector3.new(10.1999998, 0.800000131, 1.00000012)
  4030.     WedgePart298.CFrame = CFrame.new(0.190846562, 10.6997681, 41.8599472, -1, -1.71460924e-05, -7.07122672e-06, 7.44470481e-06, 3.71252099e-05, -0.99999088, 2.46954078e-05, -1.00000012, -4.24238897e-05)
  4031.     WedgePart298.BackSurface = Enum.SurfaceType.Weld
  4032.     WedgePart298.BottomSurface = Enum.SurfaceType.Weld
  4033.     WedgePart298.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4034.     WedgePart298.Position = Vector3.new(0.190846562, 10.6997681, 41.8599472)
  4035.     WedgePart298.Orientation = Vector3.new(89.7599945, -170.539993, 11.3400002)
  4036.     WedgePart298.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4037.     SpecialMesh299.Parent = WedgePart298
  4038.     SpecialMesh299.MeshType = Enum.MeshType.Wedge
  4039.     WedgePart300.Parent = Model0
  4040.     WedgePart300.Material = Enum.Material.Metal
  4041.     WedgePart300.BrickColor = BrickColor.new("Grime")
  4042.     WedgePart300.Rotation = Vector3.new(90, 0, 0)
  4043.     WedgePart300.FormFactor = Enum.FormFactor.Custom
  4044.     WedgePart300.Size = Vector3.new(22, 1.80000019, 0.800000131)
  4045.     WedgePart300.CFrame = CFrame.new(-5.70992708, 8.6002655, 37.7604523, 1, -1.69808973e-05, -5.3198155e-06, -5.6994445e-06, -2.58807654e-06, -0.99999088, 9.32086368e-06, 1.00000012, -7.96467884e-06)
  4046.     WedgePart300.BackSurface = Enum.SurfaceType.Weld
  4047.     WedgePart300.BottomSurface = Enum.SurfaceType.Weld
  4048.     WedgePart300.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4049.     WedgePart300.Position = Vector3.new(-5.70992708, 8.6002655, 37.7604523)
  4050.     WedgePart300.Orientation = Vector3.new(89.7599945, -146.259995, -114.419998)
  4051.     WedgePart300.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4052.     SpecialMesh301.Parent = WedgePart300
  4053.     SpecialMesh301.MeshType = Enum.MeshType.Wedge
  4054.     VehicleSeat302.Parent = Model0
  4055.     VehicleSeat302.Material = Enum.Material.Metal
  4056.     VehicleSeat302.BrickColor = BrickColor.new("Grime")
  4057.     VehicleSeat302.Rotation = Vector3.new(0, 90, 0)
  4058.     VehicleSeat302.Size = Vector3.new(2, 0.400000006, 2)
  4059.     VehicleSeat302.CFrame = CFrame.new(-23.1098289, 4.8003788, 44.0599022, 1.1589701e-05, 5.60266608e-06, 1, -1.12916023e-05, 1, -6.19946923e-06, -1, -2.82160863e-06, -4.43901627e-07)
  4060.     VehicleSeat302.TopSurface = Enum.SurfaceType.Weld
  4061.     VehicleSeat302.HeadsUpDisplay = false
  4062.     VehicleSeat302.MaxSpeed = 35
  4063.     VehicleSeat302.Torque = 150
  4064.     VehicleSeat302.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4065.     VehicleSeat302.Position = Vector3.new(-23.1098289, 4.8003788, 44.0599022)
  4066.     VehicleSeat302.Orientation = Vector3.new(0, 90, 0)
  4067.     VehicleSeat302.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4068.     WedgePart303.Parent = Model0
  4069.     WedgePart303.Material = Enum.Material.Metal
  4070.     WedgePart303.BrickColor = BrickColor.new("Grime")
  4071.     WedgePart303.Rotation = Vector3.new(90, 0, -90)
  4072.     WedgePart303.FormFactor = Enum.FormFactor.Custom
  4073.     WedgePart303.Size = Vector3.new(5.19999933, 1, 1.20000005)
  4074.     WedgePart303.CFrame = CFrame.new(-26.0089417, 4.60056925, 33.6610794, 1.45538397e-05, 1, -7.47078047e-06, -2.20777802e-05, -7.76782235e-06, -1, -1, 8.55936014e-06, 1.78583141e-05)
  4075.     WedgePart303.BackSurface = Enum.SurfaceType.Weld
  4076.     WedgePart303.BottomSurface = Enum.SurfaceType.Weld
  4077.     WedgePart303.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4078.     WedgePart303.Position = Vector3.new(-26.0089417, 4.60056925, 33.6610794)
  4079.     WedgePart303.Orientation = Vector3.new(90, 90, 0)
  4080.     WedgePart303.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4081.     SpecialMesh304.Parent = WedgePart303
  4082.     SpecialMesh304.MeshType = Enum.MeshType.Wedge
  4083.     WedgePart305.Parent = Model0
  4084.     WedgePart305.Material = Enum.Material.Metal
  4085.     WedgePart305.BrickColor = BrickColor.new("Grime")
  4086.     WedgePart305.Rotation = Vector3.new(90, 0, -180)
  4087.     WedgePart305.FormFactor = Enum.FormFactor.Custom
  4088.     WedgePart305.Size = Vector3.new(22, 0.600000143, 1.20000017)
  4089.     WedgePart305.CFrame = CFrame.new(-5.71064138, 9.599576, 41.1605301, -1, 1.17034815e-05, -5.56241639e-06, 5.84649752e-06, -1.99384122e-05, -1, -5.97530743e-06, -1, 1.59061947e-05)
  4090.     WedgePart305.BackSurface = Enum.SurfaceType.Weld
  4091.     WedgePart305.BottomSurface = Enum.SurfaceType.Weld
  4092.     WedgePart305.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4093.     WedgePart305.Position = Vector3.new(-5.71064138, 9.599576, 41.1605301)
  4094.     WedgePart305.Orientation = Vector3.new(90, 180, 0)
  4095.     WedgePart305.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4096.     SpecialMesh306.Parent = WedgePart305
  4097.     SpecialMesh306.MeshType = Enum.MeshType.Wedge
  4098.     WedgePart307.Parent = Model0
  4099.     WedgePart307.Material = Enum.Material.Metal
  4100.     WedgePart307.BrickColor = BrickColor.new("Grime")
  4101.     WedgePart307.Rotation = Vector3.new(90, 0, 0)
  4102.     WedgePart307.FormFactor = Enum.FormFactor.Custom
  4103.     WedgePart307.Size = Vector3.new(22, 0.600000143, 1.20000017)
  4104.     WedgePart307.CFrame = CFrame.new(-5.70935583, 9.60018349, 36.559742, 1, 5.02686817e-06, -6.43432486e-06, -6.48410469e-06, 8.01372698e-06, -1, -6.03618901e-06, 1, 7.30400461e-06)
  4105.     WedgePart307.BackSurface = Enum.SurfaceType.Weld
  4106.     WedgePart307.BottomSurface = Enum.SurfaceType.Weld
  4107.     WedgePart307.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4108.     WedgePart307.Position = Vector3.new(-5.70935583, 9.60018349, 36.559742)
  4109.     WedgePart307.Orientation = Vector3.new(90, 0, 0)
  4110.     WedgePart307.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4111.     SpecialMesh308.Parent = WedgePart307
  4112.     SpecialMesh308.MeshType = Enum.MeshType.Wedge
  4113.     WedgePart309.Parent = Model0
  4114.     WedgePart309.Material = Enum.Material.Metal
  4115.     WedgePart309.BrickColor = BrickColor.new("Grime")
  4116.     WedgePart309.Rotation = Vector3.new(90, 0, 0)
  4117.     WedgePart309.FormFactor = Enum.FormFactor.Custom
  4118.     WedgePart309.Size = Vector3.new(10.1999998, 0.800000131, 1.00000012)
  4119.     WedgePart309.CFrame = CFrame.new(0.190338731, 10.7001028, 35.8596039, 1, 1.73247045e-05, -6.91621926e-06, -7.28482382e-06, -3.32206264e-06, -0.99999088, -2.47628068e-05, 1.00000012, -8.54242353e-06)
  4120.     WedgePart309.BackSurface = Enum.SurfaceType.Weld
  4121.     WedgePart309.BottomSurface = Enum.SurfaceType.Weld
  4122.     WedgePart309.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4123.     WedgePart309.Position = Vector3.new(0.190338731, 10.7001028, 35.8596039)
  4124.     WedgePart309.Orientation = Vector3.new(89.7599945, -141.009995, -114.509995)
  4125.     WedgePart309.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4126.     SpecialMesh310.Parent = WedgePart309
  4127.     SpecialMesh310.MeshType = Enum.MeshType.Wedge
  4128.     WedgePart311.Parent = Model0
  4129.     WedgePart311.Material = Enum.Material.Metal
  4130.     WedgePart311.BrickColor = BrickColor.new("Grime")
  4131.     WedgePart311.Rotation = Vector3.new(-90, 0, 90)
  4132.     WedgePart311.FormFactor = Enum.FormFactor.Custom
  4133.     WedgePart311.Size = Vector3.new(5.19999981, 1.39999998, 1.19999993)
  4134.     WedgePart311.CFrame = CFrame.new(-26.2100182, 3.40037513, 33.6596451, -3.40397423e-06, -1, 6.33939817e-06, -9.03184537e-06, 6.52432982e-06, 1, -1, 7.16618433e-06, -6.38741267e-06)
  4135.     WedgePart311.BackSurface = Enum.SurfaceType.Weld
  4136.     WedgePart311.BottomSurface = Enum.SurfaceType.Weld
  4137.     WedgePart311.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4138.     WedgePart311.Position = Vector3.new(-26.2100182, 3.40037513, 33.6596451)
  4139.     WedgePart311.Orientation = Vector3.new(-90, 90, 0)
  4140.     WedgePart311.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4141.     SpecialMesh312.Parent = WedgePart311
  4142.     SpecialMesh312.MeshType = Enum.MeshType.Wedge
  4143.     WedgePart313.Parent = Model0
  4144.     WedgePart313.Material = Enum.Material.Metal
  4145.     WedgePart313.BrickColor = BrickColor.new("Grime")
  4146.     WedgePart313.Rotation = Vector3.new(90, 0, 0)
  4147.     WedgePart313.FormFactor = Enum.FormFactor.Custom
  4148.     WedgePart313.Size = Vector3.new(10.1999998, 1.60000014, 1.00000012)
  4149.     WedgePart313.CFrame = CFrame.new(0.190321803, 10.6997337, 45.8596458, 1, 1.71271968e-05, -7.04050763e-06, -7.41398344e-06, -3.73043003e-05, -0.99999088, -2.46765048e-05, 1.00000012, -4.26029837e-05)
  4150.     WedgePart313.BackSurface = Enum.SurfaceType.Weld
  4151.     WedgePart313.BottomSurface = Enum.SurfaceType.Weld
  4152.     WedgePart313.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4153.     WedgePart313.Position = Vector3.new(0.190321803, 10.6997337, 45.8596458)
  4154.     WedgePart313.Orientation = Vector3.new(89.7599945, -170.619995, -168.759995)
  4155.     WedgePart313.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4156.     SpecialMesh314.Parent = WedgePart313
  4157.     SpecialMesh314.MeshType = Enum.MeshType.Wedge
  4158.     WedgePart315.Parent = Model0
  4159.     WedgePart315.Material = Enum.Material.Metal
  4160.     WedgePart315.BrickColor = BrickColor.new("Grime")
  4161.     WedgePart315.Rotation = Vector3.new(-90, 0, 90)
  4162.     WedgePart315.FormFactor = Enum.FormFactor.Custom
  4163.     WedgePart315.Size = Vector3.new(5.19999981, 1.39999998, 1.19999993)
  4164.     WedgePart315.CFrame = CFrame.new(-26.2097702, 3.40055323, 44.0597954, 3.44685832e-05, -1, 5.8018918e-06, -6.04491834e-06, 5.80168262e-06, 1, -1, -3.44686086e-05, -6.04471643e-06)
  4165.     WedgePart315.BackSurface = Enum.SurfaceType.Weld
  4166.     WedgePart315.BottomSurface = Enum.SurfaceType.Weld
  4167.     WedgePart315.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4168.     WedgePart315.Position = Vector3.new(-26.2097702, 3.40055323, 44.0597954)
  4169.     WedgePart315.Orientation = Vector3.new(-90, 90, 0)
  4170.     WedgePart315.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4171.     SpecialMesh316.Parent = WedgePart315
  4172.     SpecialMesh316.MeshType = Enum.MeshType.Wedge
  4173.     WedgePart317.Parent = Model0
  4174.     WedgePart317.Material = Enum.Material.Metal
  4175.     WedgePart317.BrickColor = BrickColor.new("Grime")
  4176.     WedgePart317.Rotation = Vector3.new(180, 90, 0)
  4177.     WedgePart317.FormFactor = Enum.FormFactor.Custom
  4178.     WedgePart317.Size = Vector3.new(5.19999933, 1.20000005, 1)
  4179.     WedgePart317.CFrame = CFrame.new(-26.0099239, 4.60073233, 33.6602364, -1.36232084e-05, -5.66421386e-06, 1, 2.05360793e-05, -1, -5.96129712e-06, 1, 1.63166333e-05, 7.62868513e-06)
  4180.     WedgePart317.BottomSurface = Enum.SurfaceType.Weld
  4181.     WedgePart317.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4182.     WedgePart317.Position = Vector3.new(-26.0099239, 4.60073233, 33.6602364)
  4183.     WedgePart317.Orientation = Vector3.new(0, 90, 180)
  4184.     WedgePart317.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4185.     SpecialMesh318.Parent = WedgePart317
  4186.     SpecialMesh318.MeshType = Enum.MeshType.Wedge
  4187.     WedgePart319.Parent = Model0
  4188.     WedgePart319.Material = Enum.Material.Metal
  4189.     WedgePart319.BrickColor = BrickColor.new("Grime")
  4190.     WedgePart319.Rotation = Vector3.new(90, 0, -0.00999999978)
  4191.     WedgePart319.CanCollide = false
  4192.     WedgePart319.FormFactor = Enum.FormFactor.Custom
  4193.     WedgePart319.Size = Vector3.new(0.400000006, 0.400000006, 3)
  4194.     WedgePart319.CFrame = CFrame.new(-22.7094574, 8.90267277, 46.4604378, 1, 0.000103821971, -1.11975369e-05, -1.19384558e-05, -2.19714639e-06, -1, -0.000118742879, 1, -1.27009662e-05)
  4195.     WedgePart319.BackSurface = Enum.SurfaceType.Weld
  4196.     WedgePart319.BottomSurface = Enum.SurfaceType.Weld
  4197.     WedgePart319.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4198.     WedgePart319.Position = Vector3.new(-22.7094574, 8.90267277, 46.4604378)
  4199.     WedgePart319.Orientation = Vector3.new(90, 0.00999999978, 0)
  4200.     WedgePart319.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4201.     SpecialMesh320.Parent = WedgePart319
  4202.     SpecialMesh320.MeshType = Enum.MeshType.Wedge
  4203.     WedgePart321.Parent = Model0
  4204.     WedgePart321.Material = Enum.Material.Metal
  4205.     WedgePart321.BrickColor = BrickColor.new("Grime")
  4206.     WedgePart321.Rotation = Vector3.new(90, 0, 0)
  4207.     WedgePart321.CanCollide = false
  4208.     WedgePart321.FormFactor = Enum.FormFactor.Custom
  4209.     WedgePart321.Size = Vector3.new(0.400000006, 1.20000005, 0.999999821)
  4210.     WedgePart321.CFrame = CFrame.new(-25.7095184, 7.90136623, 42.4608383, 1, 7.70654951e-05, -9.90780518e-06, -1.02004242e-05, -6.15640529e-05, -1, -8.3060746e-05, 1, -6.57826022e-05)
  4211.     WedgePart321.BackSurface = Enum.SurfaceType.Weld
  4212.     WedgePart321.BottomSurface = Enum.SurfaceType.Weld
  4213.     WedgePart321.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4214.     WedgePart321.Position = Vector3.new(-25.7095184, 7.90136623, 42.4608383)
  4215.     WedgePart321.Orientation = Vector3.new(90, 0, 0)
  4216.     WedgePart321.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4217.     SpecialMesh322.Parent = WedgePart321
  4218.     SpecialMesh322.MeshType = Enum.MeshType.Wedge
  4219.     WedgePart323.Parent = Model0
  4220.     WedgePart323.Material = Enum.Material.Metal
  4221.     WedgePart323.BrickColor = BrickColor.new("Grime")
  4222.     WedgePart323.Rotation = Vector3.new(90, 0, -90)
  4223.     WedgePart323.FormFactor = Enum.FormFactor.Custom
  4224.     WedgePart323.Size = Vector3.new(5.19999933, 1, 1.20000005)
  4225.     WedgePart323.CFrame = CFrame.new(-26.0092163, 4.60065508, 44.0591469, 1.43750112e-05, 1, -7.43051987e-06, -2.22713134e-05, -7.72756266e-06, -1, -1, 8.38053529e-06, 1.80518491e-05)
  4226.     WedgePart323.BackSurface = Enum.SurfaceType.Weld
  4227.     WedgePart323.BottomSurface = Enum.SurfaceType.Weld
  4228.     WedgePart323.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4229.     WedgePart323.Position = Vector3.new(-26.0092163, 4.60065508, 44.0591469)
  4230.     WedgePart323.Orientation = Vector3.new(90, 90, 0)
  4231.     WedgePart323.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4232.     SpecialMesh324.Parent = WedgePart323
  4233.     SpecialMesh324.MeshType = Enum.MeshType.Wedge
  4234.     WedgePart325.Parent = Model0
  4235.     WedgePart325.Material = Enum.Material.Metal
  4236.     WedgePart325.BrickColor = BrickColor.new("Grime")
  4237.     WedgePart325.Rotation = Vector3.new(-90, 0, 0)
  4238.     WedgePart325.CanCollide = false
  4239.     WedgePart325.FormFactor = Enum.FormFactor.Custom
  4240.     WedgePart325.Size = Vector3.new(0.200000003, 0.200000003, 2.60000014)
  4241.     WedgePart325.CFrame = CFrame.new(-16.8097363, 8.70052814, 46.1599655, 1, -2.12305386e-05, 7.18997535e-06, -8.38811684e-06, -4.9342907e-06, 1, -4.53438988e-05, -1, 1.20436125e-05)
  4242.     WedgePart325.BackSurface = Enum.SurfaceType.Weld
  4243.     WedgePart325.BottomSurface = Enum.SurfaceType.Weld
  4244.     WedgePart325.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4245.     WedgePart325.Position = Vector3.new(-16.8097363, 8.70052814, 46.1599655)
  4246.     WedgePart325.Orientation = Vector3.new(-90, 0, 0)
  4247.     WedgePart325.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4248.     SpecialMesh326.Parent = WedgePart325
  4249.     SpecialMesh326.MeshType = Enum.MeshType.Wedge
  4250.     WedgePart327.Parent = Model0
  4251.     WedgePart327.Material = Enum.Material.Metal
  4252.     WedgePart327.BrickColor = BrickColor.new("Grime")
  4253.     WedgePart327.Rotation = Vector3.new(-90, 0, 0)
  4254.     WedgePart327.CanCollide = false
  4255.     WedgePart327.FormFactor = Enum.FormFactor.Custom
  4256.     WedgePart327.Size = Vector3.new(0.200000003, 0.200000003, 2.60000014)
  4257.     WedgePart327.CFrame = CFrame.new(-19.6100292, 8.70045471, 46.1600151, 1, -2.11709685e-05, 7.23711082e-06, -8.43528869e-06, -6.71051566e-06, 1, -4.52843196e-05, -1, 1.02673966e-05)
  4258.     WedgePart327.BackSurface = Enum.SurfaceType.Weld
  4259.     WedgePart327.BottomSurface = Enum.SurfaceType.Weld
  4260.     WedgePart327.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4261.     WedgePart327.Position = Vector3.new(-19.6100292, 8.70045471, 46.1600151)
  4262.     WedgePart327.Orientation = Vector3.new(-90, 0, 0)
  4263.     WedgePart327.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4264.     SpecialMesh328.Parent = WedgePart327
  4265.     SpecialMesh328.MeshType = Enum.MeshType.Wedge
  4266.     WedgePart329.Parent = Model0
  4267.     WedgePart329.Material = Enum.Material.Metal
  4268.     WedgePart329.BrickColor = BrickColor.new("Grime")
  4269.     WedgePart329.Rotation = Vector3.new(90, 0, -0.00999999978)
  4270.     WedgePart329.CanCollide = false
  4271.     WedgePart329.FormFactor = Enum.FormFactor.Custom
  4272.     WedgePart329.Size = Vector3.new(0.200000003, 0.400000006, 3)
  4273.     WedgePart329.CFrame = CFrame.new(-16.8093224, 8.90175629, 46.4594421, 1, 9.91064226e-05, -1.10202109e-05, -1.22203146e-05, 2.08557285e-05, -1, -0.000123219652, 1, 3.87895125e-06)
  4274.     WedgePart329.BackSurface = Enum.SurfaceType.Weld
  4275.     WedgePart329.BottomSurface = Enum.SurfaceType.Weld
  4276.     WedgePart329.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4277.     WedgePart329.Position = Vector3.new(-16.8093224, 8.90175629, 46.4594421)
  4278.     WedgePart329.Orientation = Vector3.new(90, 0.00999999978, 0)
  4279.     WedgePart329.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4280.     SpecialMesh330.Parent = WedgePart329
  4281.     SpecialMesh330.MeshType = Enum.MeshType.Wedge
  4282.     WedgePart331.Parent = Model0
  4283.     WedgePart331.Material = Enum.Material.Metal
  4284.     WedgePart331.BrickColor = BrickColor.new("Grime")
  4285.     WedgePart331.Rotation = Vector3.new(180, -90, 0)
  4286.     WedgePart331.FormFactor = Enum.FormFactor.Custom
  4287.     WedgePart331.Size = Vector3.new(5.19999886, 2, 1.79999995)
  4288.     WedgePart331.CFrame = CFrame.new(-16.609787, 5.0004549, 33.6600304, -4.89594822e-06, -6.62594812e-06, -1, -8.07483866e-06, -0.999996543, 6.68015446e-06, -1, 7.30284228e-06, 5.9940694e-06)
  4289.     WedgePart331.BottomSurface = Enum.SurfaceType.Smooth
  4290.     WedgePart331.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4291.     WedgePart331.Position = Vector3.new(-16.609787, 5.0004549, 33.6600304)
  4292.     WedgePart331.Orientation = Vector3.new(0, -90, -180)
  4293.     WedgePart331.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4294.     SpecialMesh332.Parent = WedgePart331
  4295.     SpecialMesh332.MeshType = Enum.MeshType.Wedge
  4296.     WedgePart333.Parent = Model0
  4297.     WedgePart333.Material = Enum.Material.Metal
  4298.     WedgePart333.BrickColor = BrickColor.new("Grime")
  4299.     WedgePart333.Rotation = Vector3.new(180, 90, 0)
  4300.     WedgePart333.FormFactor = Enum.FormFactor.Custom
  4301.     WedgePart333.Size = Vector3.new(5.19999933, 1.20000005, 1)
  4302.     WedgePart333.CFrame = CFrame.new(-26.00951, 4.60169315, 44.0594978, -7.2284929e-06, -6.09822428e-06, 1, 1.73822391e-05, -1, -6.69012343e-06, 1, 8.98247345e-06, -4.70518717e-06)
  4303.     WedgePart333.BottomSurface = Enum.SurfaceType.Weld
  4304.     WedgePart333.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4305.     WedgePart333.Position = Vector3.new(-26.00951, 4.60169315, 44.0594978)
  4306.     WedgePart333.Orientation = Vector3.new(0, 90, 180)
  4307.     WedgePart333.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4308.     SpecialMesh334.Parent = WedgePart333
  4309.     SpecialMesh334.MeshType = Enum.MeshType.Wedge
  4310.     WedgePart335.Parent = Model0
  4311.     WedgePart335.Material = Enum.Material.Metal
  4312.     WedgePart335.BrickColor = BrickColor.new("Grime")
  4313.     WedgePart335.Rotation = Vector3.new(-90, 0, 0)
  4314.     WedgePart335.CanCollide = false
  4315.     WedgePart335.FormFactor = Enum.FormFactor.Custom
  4316.     WedgePart335.Size = Vector3.new(0.400000006, 0.200000003, 2.60000014)
  4317.     WedgePart335.CFrame = CFrame.new(-22.7096386, 8.70049095, 46.1598549, 1, 1.37711768e-05, 5.43959368e-06, -6.180333e-06, -2.95906248e-05, 1, -1.14948455e-06, -1, -1.90853934e-05)
  4318.     WedgePart335.BackSurface = Enum.SurfaceType.Weld
  4319.     WedgePart335.BottomSurface = Enum.SurfaceType.Weld
  4320.     WedgePart335.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4321.     WedgePart335.Position = Vector3.new(-22.7096386, 8.70049095, 46.1598549)
  4322.     WedgePart335.Orientation = Vector3.new(-90, 0, 0)
  4323.     WedgePart335.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4324.     SpecialMesh336.Parent = WedgePart335
  4325.     SpecialMesh336.MeshType = Enum.MeshType.Wedge
  4326.     WedgePart337.Parent = Model0
  4327.     WedgePart337.Material = Enum.Material.Metal
  4328.     WedgePart337.BrickColor = BrickColor.new("Grime")
  4329.     WedgePart337.Rotation = Vector3.new(90, 0, -0.00999999978)
  4330.     WedgePart337.CanCollide = false
  4331.     WedgePart337.FormFactor = Enum.FormFactor.Custom
  4332.     WedgePart337.Size = Vector3.new(0.200000003, 0.400000006, 3)
  4333.     WedgePart337.CFrame = CFrame.new(-19.6093693, 8.90126038, 46.4600639, 1, 9.91061097e-05, -1.10227156e-05, -1.22186893e-05, -2.08033562e-05, -1, -0.000123219797, 1, -3.77801443e-05)
  4334.     WedgePart337.BackSurface = Enum.SurfaceType.Weld
  4335.     WedgePart337.BottomSurface = Enum.SurfaceType.Weld
  4336.     WedgePart337.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4337.     WedgePart337.Position = Vector3.new(-19.6093693, 8.90126038, 46.4600639)
  4338.     WedgePart337.Orientation = Vector3.new(90, 0.00999999978, 0)
  4339.     WedgePart337.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4340.     SpecialMesh338.Parent = WedgePart337
  4341.     SpecialMesh338.MeshType = Enum.MeshType.Wedge
  4342.     Part339.Parent = Model0
  4343.     Part339.Material = Enum.Material.Metal
  4344.     Part339.BrickColor = BrickColor.new("Grime")
  4345.     Part339.Rotation = Vector3.new(-180, 0, -180)
  4346.     Part339.FormFactor = Enum.FormFactor.Custom
  4347.     Part339.Size = Vector3.new(5.59999943, 0.799999952, 1.80000031)
  4348.     Part339.CFrame = CFrame.new(14.889924, 8.40013981, 32.9597015, -1, 8.84130441e-06, -5.35144209e-05, 8.93794913e-06, 1, 8.40500434e-06, 5.54899634e-05, 9.79304605e-06, -1)
  4349.     Part339.BackSurface = Enum.SurfaceType.Weld
  4350.     Part339.BottomSurface = Enum.SurfaceType.Weld
  4351.     Part339.FrontSurface = Enum.SurfaceType.Weld
  4352.     Part339.LeftSurface = Enum.SurfaceType.Weld
  4353.     Part339.RightSurface = Enum.SurfaceType.Weld
  4354.     Part339.TopSurface = Enum.SurfaceType.Weld
  4355.     Part339.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4356.     Part339.Position = Vector3.new(14.889924, 8.40013981, 32.9597015)
  4357.     Part339.Orientation = Vector3.new(0, -180, 0)
  4358.     Part339.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4359.     BlockMesh340.Parent = Part339
  4360.     Part341.Parent = Model0
  4361.     Part341.Material = Enum.Material.Metal
  4362.     Part341.BrickColor = BrickColor.new("Grime")
  4363.     Part341.Rotation = Vector3.new(-180, 0, -180)
  4364.     Part341.CanCollide = false
  4365.     Part341.FormFactor = Enum.FormFactor.Custom
  4366.     Part341.Size = Vector3.new(0.399999231, 0.799999893, 5.19999981)
  4367.     Part341.CFrame = CFrame.new(-4.109828, 4.80027628, 44.0599098, -1, 6.43371504e-06, -5.15642932e-06, 6.81323763e-06, 0.99999088, 1.01975102e-05, 1.28165175e-05, 1.5574049e-05, -1.00000012)
  4368.     Part341.BackSurface = Enum.SurfaceType.Weld
  4369.     Part341.BottomSurface = Enum.SurfaceType.Weld
  4370.     Part341.FrontSurface = Enum.SurfaceType.Weld
  4371.     Part341.LeftSurface = Enum.SurfaceType.Weld
  4372.     Part341.RightSurface = Enum.SurfaceType.Weld
  4373.     Part341.TopSurface = Enum.SurfaceType.Weld
  4374.     Part341.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4375.     Part341.Position = Vector3.new(-4.109828, 4.80027628, 44.0599098)
  4376.     Part341.Orientation = Vector3.new(0, -180, 0)
  4377.     Part341.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4378.     BlockMesh342.Parent = Part341
  4379.     Part343.Parent = Model0
  4380.     Part343.Material = Enum.Material.Metal
  4381.     Part343.BrickColor = BrickColor.new("Grime")
  4382.     Part343.Rotation = Vector3.new(180, 0, -180)
  4383.     Part343.CanCollide = false
  4384.     Part343.FormFactor = Enum.FormFactor.Custom
  4385.     Part343.Size = Vector3.new(11.8000002, 0.799999952, 5.20000029)
  4386.     Part343.CFrame = CFrame.new(11.190012, 7.60010147, 33.6598129, -1, 6.97483983e-06, -1.60322234e-05, 7.09157848e-06, 1, -2.91726792e-07, 1.8407216e-05, 1.37750521e-06, -1)
  4387.     Part343.BackSurface = Enum.SurfaceType.Weld
  4388.     Part343.BottomSurface = Enum.SurfaceType.Weld
  4389.     Part343.FrontSurface = Enum.SurfaceType.Weld
  4390.     Part343.LeftSurface = Enum.SurfaceType.Weld
  4391.     Part343.RightSurface = Enum.SurfaceType.Weld
  4392.     Part343.TopSurface = Enum.SurfaceType.Weld
  4393.     Part343.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4394.     Part343.Position = Vector3.new(11.190012, 7.60010147, 33.6598129)
  4395.     Part343.Orientation = Vector3.new(0, -180, 0)
  4396.     Part343.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4397.     BlockMesh344.Parent = Part343
  4398.     Part345.Parent = Model0
  4399.     Part345.Material = Enum.Material.Metal
  4400.     Part345.BrickColor = BrickColor.new("Grime")
  4401.     Part345.Rotation = Vector3.new(180, 0, -180)
  4402.     Part345.CanCollide = false
  4403.     Part345.FormFactor = Enum.FormFactor.Custom
  4404.     Part345.Size = Vector3.new(1.79999959, 0.799999952, 5.20000029)
  4405.     Part345.CFrame = CFrame.new(16.189827, 7.60006905, 38.8596954, -1, 6.02205955e-06, 3.12409975e-06, 6.11911082e-06, 1, -1.37809102e-05, -1.14872091e-06, -1.23923655e-05, -1)
  4406.     Part345.BackSurface = Enum.SurfaceType.Weld
  4407.     Part345.BottomSurface = Enum.SurfaceType.Weld
  4408.     Part345.FrontSurface = Enum.SurfaceType.Weld
  4409.     Part345.LeftSurface = Enum.SurfaceType.Weld
  4410.     Part345.RightSurface = Enum.SurfaceType.Weld
  4411.     Part345.TopSurface = Enum.SurfaceType.Weld
  4412.     Part345.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4413.     Part345.Position = Vector3.new(16.189827, 7.60006905, 38.8596954)
  4414.     Part345.Orientation = Vector3.new(0, 180, 0)
  4415.     Part345.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4416.     BlockMesh346.Parent = Part345
  4417.     Part347.Parent = Model0
  4418.     Part347.Material = Enum.Material.Metal
  4419.     Part347.BrickColor = BrickColor.new("Grime")
  4420.     Part347.Rotation = Vector3.new(180, 0, -180)
  4421.     Part347.FormFactor = Enum.FormFactor.Custom
  4422.     Part347.Size = Vector3.new(13.1999998, 1.59999967, 3.60000038)
  4423.     Part347.CFrame = CFrame.new(-10.9098253, 3.60021257, 34.460022, -1, 6.43994736e-06, -5.3034978e-06, 6.4623523e-06, 1, -7.84834992e-06, 5.75847071e-06, -7.52855431e-06, -1)
  4424.     Part347.BackSurface = Enum.SurfaceType.Weld
  4425.     Part347.BottomSurface = Enum.SurfaceType.Weld
  4426.     Part347.FrontSurface = Enum.SurfaceType.Weld
  4427.     Part347.LeftSurface = Enum.SurfaceType.Weld
  4428.     Part347.RightSurface = Enum.SurfaceType.Weld
  4429.     Part347.TopSurface = Enum.SurfaceType.Weld
  4430.     Part347.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4431.     Part347.Position = Vector3.new(-10.9098253, 3.60021257, 34.460022)
  4432.     Part347.Orientation = Vector3.new(0, -180, 0)
  4433.     Part347.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4434.     BlockMesh348.Parent = Part347
  4435.     BlockMesh348.Offset = Vector3.new(0, 0.800000012, 0)
  4436.     BlockMesh348.Scale = Vector3.new(1.10000002, 2, 1)
  4437.     BlockMesh348.Scale = Vector3.new(1.10000002, 2, 1)
  4438.     Part349.Parent = Model0
  4439.     Part349.Material = Enum.Material.Metal
  4440.     Part349.BrickColor = BrickColor.new("Grime")
  4441.     Part349.Rotation = Vector3.new(-180, 0, -180)
  4442.     Part349.CanCollide = false
  4443.     Part349.FormFactor = Enum.FormFactor.Custom
  4444.     Part349.Size = Vector3.new(0.800000191, 1.40000021, 5.19999981)
  4445.     Part349.CFrame = CFrame.new(16.6903687, 6.50005674, 33.6597786, -1, 7.3178353e-06, -2.29274719e-05, 7.57607449e-06, 1, 1.38828382e-05, 2.81880748e-05, 1.75801961e-05, -1)
  4446.     Part349.BackSurface = Enum.SurfaceType.Weld
  4447.     Part349.BottomSurface = Enum.SurfaceType.Weld
  4448.     Part349.FrontSurface = Enum.SurfaceType.Weld
  4449.     Part349.LeftSurface = Enum.SurfaceType.Weld
  4450.     Part349.RightSurface = Enum.SurfaceType.Weld
  4451.     Part349.TopSurface = Enum.SurfaceType.Weld
  4452.     Part349.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4453.     Part349.Position = Vector3.new(16.6903687, 6.50005674, 33.6597786)
  4454.     Part349.Orientation = Vector3.new(0, -180, 0)
  4455.     Part349.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4456.     BlockMesh350.Parent = Part349
  4457.     Part351.Parent = Model0
  4458.     Part351.Material = Enum.Material.Metal
  4459.     Part351.BrickColor = BrickColor.new("Grime")
  4460.     Part351.Rotation = Vector3.new(180, 0, -180)
  4461.     Part351.FormFactor = Enum.FormFactor.Custom
  4462.     Part351.Size = Vector3.new(11.8000002, 3.20000005, 5.20000029)
  4463.     Part351.CFrame = CFrame.new(11.1901808, 5.60010195, 38.8599014, -1, 6.43885596e-06, -5.28130158e-06, 6.4634437e-06, 1, -7.86395231e-06, 5.78066692e-06, -7.51295283e-06, -1)
  4464.     Part351.BottomSurface = Enum.SurfaceType.Weld
  4465.     Part351.LeftSurface = Enum.SurfaceType.Weld
  4466.     Part351.RightSurface = Enum.SurfaceType.Weld
  4467.     Part351.TopSurface = Enum.SurfaceType.Weld
  4468.     Part351.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4469.     Part351.Position = Vector3.new(11.1901808, 5.60010195, 38.8599014)
  4470.     Part351.Orientation = Vector3.new(0, -180, 0)
  4471.     Part351.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4472.     BlockMesh352.Parent = Part351
  4473.     Part353.Parent = Model0
  4474.     Part353.Material = Enum.Material.Metal
  4475.     Part353.BrickColor = BrickColor.new("Grime")
  4476.     Part353.Rotation = Vector3.new(-180, 0, -180)
  4477.     Part353.FormFactor = Enum.FormFactor.Custom
  4478.     Part353.Size = Vector3.new(13.1999998, 1.59999967, 3.60000038)
  4479.     Part353.CFrame = CFrame.new(-10.909873, 3.60028696, 43.2598724, -1, 6.40441704e-06, -4.601201e-06, 6.40441613e-06, 1, 1.49602386e-07, 4.60120282e-06, 1.49572926e-07, -1)
  4480.     Part353.BottomSurface = Enum.SurfaceType.Weld
  4481.     Part353.LeftSurface = Enum.SurfaceType.Weld
  4482.     Part353.RightSurface = Enum.SurfaceType.Weld
  4483.     Part353.TopSurface = Enum.SurfaceType.Weld
  4484.     Part353.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4485.     Part353.Position = Vector3.new(-10.909873, 3.60028696, 43.2598724)
  4486.     Part353.Orientation = Vector3.new(0, -180, 0)
  4487.     Part353.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4488.     BlockMesh354.Parent = Part353
  4489.     BlockMesh354.Offset = Vector3.new(0, 0.800000012, 0)
  4490.     BlockMesh354.Scale = Vector3.new(1.10000002, 2, 1)
  4491.     BlockMesh354.Scale = Vector3.new(1.10000002, 2, 1)
  4492.     Part355.Parent = Model0
  4493.     Part355.Material = Enum.Material.Metal
  4494.     Part355.BrickColor = BrickColor.new("Grime")
  4495.     Part355.Rotation = Vector3.new(-180, 0, -180)
  4496.     Part355.CanCollide = false
  4497.     Part355.FormFactor = Enum.FormFactor.Custom
  4498.     Part355.Size = Vector3.new(11.8000002, 0.399999976, 0.200000003)
  4499.     Part355.CFrame = CFrame.new(-10.8097591, 6.2003026, 46.5602341, -1, 7.40343285e-06, -2.46297823e-05, 7.77740297e-06, 0.99999088, 5.76178718e-06, 3.21788757e-05, 1.10601068e-05, -1.00000012)
  4500.     Part355.BackSurface = Enum.SurfaceType.Weld
  4501.     Part355.BottomSurface = Enum.SurfaceType.Weld
  4502.     Part355.FrontSurface = Enum.SurfaceType.Weld
  4503.     Part355.LeftSurface = Enum.SurfaceType.Weld
  4504.     Part355.RightSurface = Enum.SurfaceType.Weld
  4505.     Part355.TopSurface = Enum.SurfaceType.Weld
  4506.     Part355.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4507.     Part355.Position = Vector3.new(-10.8097591, 6.2003026, 46.5602341)
  4508.     Part355.Orientation = Vector3.new(0, -180, 0)
  4509.     Part355.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4510.     BlockMesh356.Parent = Part355
  4511.     Part357.Parent = Model0
  4512.     Part357.Material = Enum.Material.Metal
  4513.     Part357.BrickColor = BrickColor.new("Grime")
  4514.     Part357.Rotation = Vector3.new(180, 0, -180)
  4515.     Part357.FormFactor = Enum.FormFactor.Custom
  4516.     Part357.Size = Vector3.new(5.59999943, 0.799999952, 1.80000031)
  4517.     Part357.CFrame = CFrame.new(14.8900795, 8.40018654, 44.7598724, -1, 6.8830459e-06, -1.4202913e-05, 7.07082381e-06, 1, -9.31228442e-06, 1.80205971e-05, -6.62894672e-06, -1)
  4518.     Part357.BackSurface = Enum.SurfaceType.Weld
  4519.     Part357.BottomSurface = Enum.SurfaceType.Weld
  4520.     Part357.FrontSurface = Enum.SurfaceType.Weld
  4521.     Part357.LeftSurface = Enum.SurfaceType.Weld
  4522.     Part357.RightSurface = Enum.SurfaceType.Weld
  4523.     Part357.TopSurface = Enum.SurfaceType.Weld
  4524.     Part357.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4525.     Part357.Position = Vector3.new(14.8900795, 8.40018654, 44.7598724)
  4526.     Part357.Orientation = Vector3.new(0, -180, 0)
  4527.     Part357.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4528.     BlockMesh358.Parent = Part357
  4529.     Part359.Parent = Model0
  4530.     Part359.Material = Enum.Material.Metal
  4531.     Part359.BrickColor = BrickColor.new("Grime")
  4532.     Part359.Rotation = Vector3.new(-180, 0, -180)
  4533.     Part359.CanCollide = false
  4534.     Part359.FormFactor = Enum.FormFactor.Custom
  4535.     Part359.Size = Vector3.new(0.799999356, 1.19999981, 5.19999981)
  4536.     Part359.CFrame = CFrame.new(2.69019699, 5.80022383, 44.0595703, -1, 7.91060938e-06, -3.4820343e-05, 8.28971952e-06, 0.99999088, 1.29368718e-05, 4.24804894e-05, 1.83131688e-05, -1.00000012)
  4537.     Part359.BackSurface = Enum.SurfaceType.Weld
  4538.     Part359.BottomSurface = Enum.SurfaceType.Weld
  4539.     Part359.FrontSurface = Enum.SurfaceType.Weld
  4540.     Part359.LeftSurface = Enum.SurfaceType.Weld
  4541.     Part359.RightSurface = Enum.SurfaceType.Weld
  4542.     Part359.TopSurface = Enum.SurfaceType.Weld
  4543.     Part359.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4544.     Part359.Position = Vector3.new(2.69019699, 5.80022383, 44.0595703)
  4545.     Part359.Orientation = Vector3.new(0, -180, 0)
  4546.     Part359.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4547.     BlockMesh360.Parent = Part359
  4548.     Part361.Parent = Model0
  4549.     Part361.Material = Enum.Material.Metal
  4550.     Part361.BrickColor = BrickColor.new("Grime")
  4551.     Part361.Rotation = Vector3.new(180, 0, -180)
  4552.     Part361.CanCollide = false
  4553.     Part361.FormFactor = Enum.FormFactor.Custom
  4554.     Part361.Size = Vector3.new(0.799999356, 1.19999981, 5.19999981)
  4555.     Part361.CFrame = CFrame.new(2.69034576, 5.80008698, 33.6597061, -1, 6.692429e-06, -1.03765615e-05, 7.06659148e-06, 0.99999088, -4.27647774e-06, 1.79255858e-05, 1.02187551e-06, -1.00000012)
  4556.     Part361.BackSurface = Enum.SurfaceType.Weld
  4557.     Part361.BottomSurface = Enum.SurfaceType.Weld
  4558.     Part361.FrontSurface = Enum.SurfaceType.Weld
  4559.     Part361.LeftSurface = Enum.SurfaceType.Weld
  4560.     Part361.RightSurface = Enum.SurfaceType.Weld
  4561.     Part361.TopSurface = Enum.SurfaceType.Weld
  4562.     Part361.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4563.     Part361.Position = Vector3.new(2.69034576, 5.80008698, 33.6597061)
  4564.     Part361.Orientation = Vector3.new(0, -180, 0)
  4565.     Part361.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4566.     BlockMesh362.Parent = Part361
  4567.     Part363.Parent = Model0
  4568.     Part363.Material = Enum.Material.Metal
  4569.     Part363.BrickColor = BrickColor.new("Grime")
  4570.     Part363.Rotation = Vector3.new(180, 0, -180)
  4571.     Part363.FormFactor = Enum.FormFactor.Custom
  4572.     Part363.Size = Vector3.new(5.19999933, 1.19999993, 4.00000048)
  4573.     Part363.CFrame = CFrame.new(8.89022923, 8.60020256, 44.0598717, -1, 6.46254784e-06, -5.67977986e-06, 7.01250519e-06, 1, -1.47377223e-05, 1.68665701e-05, -6.87466036e-06, -1)
  4574.     Part363.BackSurface = Enum.SurfaceType.Weld
  4575.     Part363.BottomSurface = Enum.SurfaceType.Weld
  4576.     Part363.FrontSurface = Enum.SurfaceType.Weld
  4577.     Part363.LeftSurface = Enum.SurfaceType.Weld
  4578.     Part363.RightSurface = Enum.SurfaceType.Weld
  4579.     Part363.TopSurface = Enum.SurfaceType.Weld
  4580.     Part363.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4581.     Part363.Position = Vector3.new(8.89022923, 8.60020256, 44.0598717)
  4582.     Part363.Orientation = Vector3.new(0, -180, 0)
  4583.     Part363.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4584.     BlockMesh364.Parent = Part363
  4585.     Part365.Parent = Model0
  4586.     Part365.Material = Enum.Material.Metal
  4587.     Part365.BrickColor = BrickColor.new("Grime")
  4588.     Part365.Rotation = Vector3.new(180, 0, -180)
  4589.     Part365.FormFactor = Enum.FormFactor.Custom
  4590.     Part365.Size = Vector3.new(6.19999933, 2.20000005, 2.60000038)
  4591.     Part365.CFrame = CFrame.new(14.9901371, 9.90013123, 44.7598419, -1, 6.21868867e-06, -8.11329301e-07, 6.58744511e-06, 1, -2.47506978e-06, 8.31362831e-06, 2.79819596e-06, -1)
  4592.     Part365.BackSurface = Enum.SurfaceType.Weld
  4593.     Part365.BottomSurface = Enum.SurfaceType.Weld
  4594.     Part365.FrontSurface = Enum.SurfaceType.Weld
  4595.     Part365.LeftSurface = Enum.SurfaceType.Weld
  4596.     Part365.RightSurface = Enum.SurfaceType.Weld
  4597.     Part365.TopSurface = Enum.SurfaceType.Weld
  4598.     Part365.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4599.     Part365.Position = Vector3.new(14.9901371, 9.90013123, 44.7598419)
  4600.     Part365.Orientation = Vector3.new(0, -180, 0)
  4601.     Part365.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4602.     BlockMesh366.Parent = Part365
  4603.     Part367.Parent = Model0
  4604.     Part367.Material = Enum.Material.Metal
  4605.     Part367.BrickColor = BrickColor.new("Grime")
  4606.     Part367.Rotation = Vector3.new(180, 0, -180)
  4607.     Part367.FormFactor = Enum.FormFactor.Custom
  4608.     Part367.Size = Vector3.new(11.8000002, 0.799999952, 5.20000029)
  4609.     Part367.CFrame = CFrame.new(11.190093, 7.60022306, 44.059761, -1, 4.3787395e-06, 3.62749852e-05, 4.74697981e-06, 1, -1.41841037e-05, -2.87727416e-05, -8.91064337e-06, -1)
  4610.     Part367.BackSurface = Enum.SurfaceType.Weld
  4611.     Part367.BottomSurface = Enum.SurfaceType.Weld
  4612.     Part367.FrontSurface = Enum.SurfaceType.Weld
  4613.     Part367.LeftSurface = Enum.SurfaceType.Weld
  4614.     Part367.RightSurface = Enum.SurfaceType.Weld
  4615.     Part367.TopSurface = Enum.SurfaceType.Weld
  4616.     Part367.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4617.     Part367.Position = Vector3.new(11.190093, 7.60022306, 44.059761)
  4618.     Part367.Orientation = Vector3.new(0, 180, 0)
  4619.     Part367.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4620.     BlockMesh368.Parent = Part367
  4621.     Part369.Parent = Model0
  4622.     Part369.Material = Enum.Material.Metal
  4623.     Part369.BrickColor = BrickColor.new("Grime")
  4624.     Part369.Rotation = Vector3.new(180, 0, -180)
  4625.     Part369.CanCollide = false
  4626.     Part369.FormFactor = Enum.FormFactor.Custom
  4627.     Part369.Size = Vector3.new(3.39999962, 0.799999893, 5.20000029)
  4628.     Part369.CFrame = CFrame.new(6.99010181, 7.6001296, 38.8598747, -1, 6.44049305e-06, -5.31459591e-06, 6.46180661e-06, 1, -7.84054919e-06, 5.74737214e-06, -7.53635504e-06, -1)
  4629.     Part369.BackSurface = Enum.SurfaceType.Weld
  4630.     Part369.BottomSurface = Enum.SurfaceType.Weld
  4631.     Part369.FrontSurface = Enum.SurfaceType.Weld
  4632.     Part369.LeftSurface = Enum.SurfaceType.Weld
  4633.     Part369.RightSurface = Enum.SurfaceType.Weld
  4634.     Part369.TopSurface = Enum.SurfaceType.Weld
  4635.     Part369.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4636.     Part369.Position = Vector3.new(6.99010181, 7.6001296, 38.8598747)
  4637.     Part369.Orientation = Vector3.new(0, -180, 0)
  4638.     Part369.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4639.     BlockMesh370.Parent = Part369
  4640.     Part371.Parent = Model0
  4641.     Part371.Material = Enum.Material.Metal
  4642.     Part371.BrickColor = BrickColor.new("Really black")
  4643.     Part371.Rotation = Vector3.new(-90, 90, 0)
  4644.     Part371.CanCollide = false
  4645.     Part371.FormFactor = Enum.FormFactor.Custom
  4646.     Part371.Size = Vector3.new(5.5999999, 1.79999995, 5.60000038)
  4647.     Part371.CFrame = CFrame.new(-7.3100009, 2.80016303, 31.7599716, -6.42304258e-06, -4.95945733e-06, 1, -1, -8.09017456e-06, -6.47926254e-06, 7.28673149e-06, -1, -6.10251254e-06)
  4648.     Part371.BottomSurface = Enum.SurfaceType.Weld
  4649.     Part371.FrontSurface = Enum.SurfaceType.Weld
  4650.     Part371.LeftSurface = Enum.SurfaceType.Weld
  4651.     Part371.RightSurface = Enum.SurfaceType.Weld
  4652.     Part371.TopSurface = Enum.SurfaceType.Weld
  4653.     Part371.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4654.     Part371.Position = Vector3.new(-7.3100009, 2.80016303, 31.7599716)
  4655.     Part371.Orientation = Vector3.new(0, 90, -90)
  4656.     Part371.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4657.     CylinderMesh372.Parent = Part371
  4658.     Part373.Parent = Model0
  4659.     Part373.Material = Enum.Material.Metal
  4660.     Part373.BrickColor = BrickColor.new("Grime")
  4661.     Part373.Rotation = Vector3.new(-180, 0, -180)
  4662.     Part373.CanCollide = false
  4663.     Part373.FormFactor = Enum.FormFactor.Custom
  4664.     Part373.Size = Vector3.new(1.59999919, 0.799999952, 5.19999981)
  4665.     Part373.CFrame = CFrame.new(3.09007359, 6.80019569, 44.0596123, -1, 6.8204281e-06, -1.29195741e-05, 7.19992431e-06, 0.99999088, 5.89834963e-06, 2.05796405e-05, 1.12747821e-05, -1.00000012)
  4666.     Part373.BackSurface = Enum.SurfaceType.Weld
  4667.     Part373.BottomSurface = Enum.SurfaceType.Weld
  4668.     Part373.FrontSurface = Enum.SurfaceType.Weld
  4669.     Part373.LeftSurface = Enum.SurfaceType.Weld
  4670.     Part373.RightSurface = Enum.SurfaceType.Weld
  4671.     Part373.TopSurface = Enum.SurfaceType.Weld
  4672.     Part373.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4673.     Part373.Position = Vector3.new(3.09007359, 6.80019569, 44.0596123)
  4674.     Part373.Orientation = Vector3.new(0, -180, 0)
  4675.     Part373.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4676.     BlockMesh374.Parent = Part373
  4677.     Part375.Parent = Model0
  4678.     Part375.Material = Enum.Material.Metal
  4679.     Part375.BrickColor = BrickColor.new("Grime")
  4680.     Part375.Rotation = Vector3.new(-180, 0, -180)
  4681.     Part375.FormFactor = Enum.FormFactor.Custom
  4682.     Part375.Size = Vector3.new(8, 1.20000005, 5.19999981)
  4683.     Part375.CFrame = CFrame.new(-21.5098934, 3.4003644, 44.0600357, -1, 7.54534176e-06, -2.77179206e-05, 7.54488246e-06, 1, 1.65513575e-05, 2.77180479e-05, 1.65511501e-05, -1)
  4684.     Part375.BackSurface = Enum.SurfaceType.Weld
  4685.     Part375.BottomSurface = Enum.SurfaceType.Weld
  4686.     Part375.LeftSurface = Enum.SurfaceType.Weld
  4687.     Part375.RightSurface = Enum.SurfaceType.Weld
  4688.     Part375.TopSurface = Enum.SurfaceType.Weld
  4689.     Part375.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4690.     Part375.Position = Vector3.new(-21.5098934, 3.4003644, 44.0600357)
  4691.     Part375.Orientation = Vector3.new(0, -180, 0)
  4692.     Part375.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4693.     BlockMesh376.Parent = Part375
  4694.     Part377.Parent = Model0
  4695.     Part377.Material = Enum.Material.Metal
  4696.     Part377.BrickColor = BrickColor.new("Grime")
  4697.     Part377.Rotation = Vector3.new(180, 0, -180)
  4698.     Part377.CanCollide = false
  4699.     Part377.FormFactor = Enum.FormFactor.Custom
  4700.     Part377.Size = Vector3.new(6.19999981, 2.39999986, 5.19999981)
  4701.     Part377.CFrame = CFrame.new(-0.809634686, 4.00016212, 33.659977, -1, 5.6025101e-06, 1.15597104e-05, 5.61264596e-06, 1, -1.9705436e-05, -1.1348955e-05, -1.95571592e-05, -1)
  4702.     Part377.BackSurface = Enum.SurfaceType.Weld
  4703.     Part377.BottomSurface = Enum.SurfaceType.Weld
  4704.     Part377.FrontSurface = Enum.SurfaceType.Weld
  4705.     Part377.LeftSurface = Enum.SurfaceType.Weld
  4706.     Part377.RightSurface = Enum.SurfaceType.Weld
  4707.     Part377.TopSurface = Enum.SurfaceType.Weld
  4708.     Part377.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4709.     Part377.Position = Vector3.new(-0.809634686, 4.00016212, 33.659977)
  4710.     Part377.Orientation = Vector3.new(0, 180, 0)
  4711.     Part377.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4712.     BlockMesh378.Parent = Part377
  4713.     Part379.Parent = Model0
  4714.     Part379.Material = Enum.Material.Metal
  4715.     Part379.BrickColor = BrickColor.new("Grime")
  4716.     Part379.Rotation = Vector3.new(180, 0, -180)
  4717.     Part379.CanCollide = false
  4718.     Part379.FormFactor = Enum.FormFactor.Custom
  4719.     Part379.Size = Vector3.new(0.399999231, 0.799999893, 5.19999981)
  4720.     Part379.CFrame = CFrame.new(-4.10968304, 4.80014801, 33.6599922, -1, 5.95867459e-06, 4.37692006e-06, 5.96897416e-06, 1, -1.46642387e-05, -4.16614375e-06, -1.45159993e-05, -1)
  4721.     Part379.BackSurface = Enum.SurfaceType.Weld
  4722.     Part379.BottomSurface = Enum.SurfaceType.Weld
  4723.     Part379.FrontSurface = Enum.SurfaceType.Weld
  4724.     Part379.LeftSurface = Enum.SurfaceType.Weld
  4725.     Part379.RightSurface = Enum.SurfaceType.Weld
  4726.     Part379.TopSurface = Enum.SurfaceType.Weld
  4727.     Part379.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4728.     Part379.Position = Vector3.new(-4.10968304, 4.80014801, 33.6599922)
  4729.     Part379.Orientation = Vector3.new(0, 180, 0)
  4730.     Part379.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4731.     BlockMesh380.Parent = Part379
  4732.     Part381.Name = "wheel"
  4733.     Part381.Parent = Model0
  4734.     Part381.Material = Enum.Material.Metal
  4735.     Part381.BrickColor = BrickColor.new("Grime")
  4736.     Part381.Transparency = 1
  4737.     Part381.Rotation = Vector3.new(-90, -90, 0)
  4738.     Part381.FormFactor = Enum.FormFactor.Symmetric
  4739.     Part381.Friction = 1
  4740.     Part381.Shape = Enum.PartType.Ball
  4741.     Part381.Size = Vector3.new(5, 5, 5)
  4742.     Part381.CFrame = CFrame.new(-22.5099869, 2.99934506, 49.1596909, -1.68524257e-05, -5.57238771e-08, -1, 1, -4.68407961e-08, -1.6852111e-05, -3.93574737e-08, -1, 6.68240361e-08)
  4743.     Part381.BottomSurface = Enum.SurfaceType.Smooth
  4744.     Part381.TopSurface = Enum.SurfaceType.Hinge
  4745.     Part381.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4746.     Part381.Position = Vector3.new(-22.5099869, 2.99934506, 49.1596909)
  4747.     Part381.Orientation = Vector3.new(0, -90, 90)
  4748.     Part381.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4749.     CylinderMesh382.Parent = Part381
  4750.     CylinderMesh382.Offset = Vector3.new(0, -1.10000002, 0)
  4751.     CylinderMesh382.Scale = Vector3.new(1, 0.600000024, 1)
  4752.     CylinderMesh382.Scale = Vector3.new(1, 0.600000024, 1)
  4753.     Part383.Parent = Model0
  4754.     Part383.Material = Enum.Material.Metal
  4755.     Part383.BrickColor = BrickColor.new("Really black")
  4756.     Part383.Rotation = Vector3.new(-90, 90, 0)
  4757.     Part383.CanCollide = false
  4758.     Part383.FormFactor = Enum.FormFactor.Custom
  4759.     Part383.Size = Vector3.new(5.5999999, 1.79999995, 5.60000038)
  4760.     Part383.CFrame = CFrame.new(-13.909976, 2.80021191, 31.7600212, -6.42304258e-06, -4.95945733e-06, 1, -1, -8.09017456e-06, -6.47926254e-06, 7.28673149e-06, -1, -6.10251254e-06)
  4761.     Part383.BottomSurface = Enum.SurfaceType.Weld
  4762.     Part383.FrontSurface = Enum.SurfaceType.Weld
  4763.     Part383.LeftSurface = Enum.SurfaceType.Weld
  4764.     Part383.RightSurface = Enum.SurfaceType.Weld
  4765.     Part383.TopSurface = Enum.SurfaceType.Weld
  4766.     Part383.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4767.     Part383.Position = Vector3.new(-13.909976, 2.80021191, 31.7600212)
  4768.     Part383.Orientation = Vector3.new(0, 90, -90)
  4769.     Part383.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4770.     CylinderMesh384.Parent = Part383
  4771.     Part385.Parent = Model0
  4772.     Part385.Material = Enum.Material.Metal
  4773.     Part385.BrickColor = BrickColor.new("Really black")
  4774.     Part385.Rotation = Vector3.new(90, -90, 0)
  4775.     Part385.CanCollide = false
  4776.     Part385.FormFactor = Enum.FormFactor.Custom
  4777.     Part385.Size = Vector3.new(5.5999999, 1.79999995, 5.60000038)
  4778.     Part385.CFrame = CFrame.new(-13.9099016, 2.80034089, 45.9599915, -5.31013347e-06, -1.75913701e-05, -1, -1, 8.41797737e-06, 5.30998523e-06, 8.4178846e-06, 1, -1.75914138e-05)
  4779.     Part385.BottomSurface = Enum.SurfaceType.Weld
  4780.     Part385.FrontSurface = Enum.SurfaceType.Weld
  4781.     Part385.LeftSurface = Enum.SurfaceType.Weld
  4782.     Part385.RightSurface = Enum.SurfaceType.Weld
  4783.     Part385.TopSurface = Enum.SurfaceType.Weld
  4784.     Part385.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4785.     Part385.Position = Vector3.new(-13.9099016, 2.80034089, 45.9599915)
  4786.     Part385.Orientation = Vector3.new(0, -90, -90)
  4787.     Part385.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  4788.     CylinderMesh386.Parent = Part385
  4789.     WedgePart387.Parent = Model0
  4790.     WedgePart387.Material = Enum.Material.Metal
  4791.     WedgePart387.BrickColor = BrickColor.new("Grime")
  4792.     WedgePart387.Rotation = Vector3.new(-180, -90, 0)
  4793.     WedgePart387.FormFactor = Enum.FormFactor.Custom
  4794.     WedgePart387.Size = Vector3.new(5.19999981, 1.20000005, 0.800000072)
  4795.     WedgePart387.CFrame = CFrame.new(3.49014544, 5.80042076, 33.6599541, -5.22691334e-06, -6.46520948e-06, -1, 5.58827878e-06, -1, 6.48099831e-06, -1, -5.81446511e-06, 5.54879989e-06)
  4796.     WedgePart387.BottomSurface = Enum.SurfaceType.Weld
  4797.     WedgePart387.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4798.     WedgePart387.Position = Vector3.new(3.49014544, 5.80042076, 33.6599541)
  4799.     WedgePart387.Orientation = Vector3.new(0, -90, 180)
  4800.     WedgePart387.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4801.     SpecialMesh388.Parent = WedgePart387
  4802.     SpecialMesh388.MeshType = Enum.MeshType.Wedge
  4803.     WedgePart389.Parent = Model0
  4804.     WedgePart389.Material = Enum.Material.Metal
  4805.     WedgePart389.BrickColor = BrickColor.new("Grime")
  4806.     WedgePart389.Rotation = Vector3.new(180, 90, 0)
  4807.     WedgePart389.CanCollide = false
  4808.     WedgePart389.FormFactor = Enum.FormFactor.Custom
  4809.     WedgePart389.Size = Vector3.new(5.19999981, 1.60000014, 0.400000006)
  4810.     WedgePart389.CFrame = CFrame.new(-4.10981941, 3.60051203, 33.6600952, 5.08384437e-06, -6.67719132e-06, 1, 8.03388048e-06, -0.999993205, -6.73167688e-06, 1, 7.2622679e-06, -6.18094418e-06)
  4811.     WedgePart389.BottomSurface = Enum.SurfaceType.Weld
  4812.     WedgePart389.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4813.     WedgePart389.Position = Vector3.new(-4.10981941, 3.60051203, 33.6600952)
  4814.     WedgePart389.Orientation = Vector3.new(0, 90, 180)
  4815.     WedgePart389.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4816.     SpecialMesh390.Parent = WedgePart389
  4817.     SpecialMesh390.MeshType = Enum.MeshType.Wedge
  4818.     WedgePart391.Parent = Model0
  4819.     WedgePart391.Material = Enum.Material.Metal
  4820.     WedgePart391.BrickColor = BrickColor.new("Grime")
  4821.     WedgePart391.Rotation = Vector3.new(-180, 90, 0)
  4822.     WedgePart391.CanCollide = false
  4823.     WedgePart391.FormFactor = Enum.FormFactor.Custom
  4824.     WedgePart391.Size = Vector3.new(5.19999981, 0.800000072, 0.600000024)
  4825.     WedgePart391.CFrame = CFrame.new(-4.60982037, 4.80040455, 44.0597725, 1.23189566e-05, -7.03911064e-06, 1, -4.74273656e-06, -0.999981761, -7.78240428e-06, 1.00000024, -1.52694429e-05, -2.73172082e-05)
  4826.     WedgePart391.BottomSurface = Enum.SurfaceType.Weld
  4827.     WedgePart391.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4828.     WedgePart391.Position = Vector3.new(-4.60982037, 4.80040455, 44.0597725)
  4829.     WedgePart391.Orientation = Vector3.new(0, 90, -180)
  4830.     WedgePart391.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4831.     SpecialMesh392.Parent = WedgePart391
  4832.     SpecialMesh392.MeshType = Enum.MeshType.Wedge
  4833.     WedgePart393.Parent = Model0
  4834.     WedgePart393.Material = Enum.Material.Metal
  4835.     WedgePart393.BrickColor = BrickColor.new("Grime")
  4836.     WedgePart393.Rotation = Vector3.new(180, -90, 0)
  4837.     WedgePart393.FormFactor = Enum.FormFactor.Custom
  4838.     WedgePart393.Size = Vector3.new(5.19999981, 0.800000072, 1.4000001)
  4839.     WedgePart393.CFrame = CFrame.new(4.59036112, 6.80025482, 44.0597649, -1.38457381e-07, -6.21204481e-06, -1, -1.1573351e-05, -0.999996543, 6.72009583e-06, -1, 3.97761823e-06, 1.09616794e-05)
  4840.     WedgePart393.BottomSurface = Enum.SurfaceType.Weld
  4841.     WedgePart393.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4842.     WedgePart393.Position = Vector3.new(4.59036112, 6.80025482, 44.0597649)
  4843.     WedgePart393.Orientation = Vector3.new(0, -90, -180)
  4844.     WedgePart393.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4845.     SpecialMesh394.Parent = WedgePart393
  4846.     SpecialMesh394.MeshType = Enum.MeshType.Wedge
  4847.     WedgePart395.Parent = Model0
  4848.     WedgePart395.Material = Enum.Material.Metal
  4849.     WedgePart395.BrickColor = BrickColor.new("Grime")
  4850.     WedgePart395.Rotation = Vector3.new(180, -90, 0)
  4851.     WedgePart395.FormFactor = Enum.FormFactor.Custom
  4852.     WedgePart395.Size = Vector3.new(5.19999981, 0.800000072, 1.4000001)
  4853.     WedgePart395.CFrame = CFrame.new(4.59042549, 6.80014467, 33.6591415, 5.75830927e-06, -5.91780463e-06, -1, -1.57273789e-05, -1, 6.3936277e-06, -1, 8.98918006e-06, 3.81148857e-06)
  4854.     WedgePart395.BottomSurface = Enum.SurfaceType.Weld
  4855.     WedgePart395.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4856.     WedgePart395.Position = Vector3.new(4.59042549, 6.80014467, 33.6591415)
  4857.     WedgePart395.Orientation = Vector3.new(0, -90, -180)
  4858.     WedgePart395.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4859.     SpecialMesh396.Parent = WedgePart395
  4860.     SpecialMesh396.MeshType = Enum.MeshType.Wedge
  4861.     WedgePart397.Parent = Model0
  4862.     WedgePart397.Material = Enum.Material.Metal
  4863.     WedgePart397.BrickColor = BrickColor.new("Grime")
  4864.     WedgePart397.Rotation = Vector3.new(180, 90, 0)
  4865.     WedgePart397.CanCollide = false
  4866.     WedgePart397.FormFactor = Enum.FormFactor.Custom
  4867.     WedgePart397.Size = Vector3.new(5.19999981, 1.60000014, 0.400000006)
  4868.     WedgePart397.CFrame = CFrame.new(-4.10966873, 3.60070205, 44.0600739, -1.83692464e-05, -5.51331595e-06, 1, 1.6215803e-05, -0.99999088, -5.89260162e-06, 1.00000012, 1.0839356e-05, 1.07093201e-05)
  4869.     WedgePart397.BottomSurface = Enum.SurfaceType.Weld
  4870.     WedgePart397.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4871.     WedgePart397.Position = Vector3.new(-4.10966873, 3.60070205, 44.0600739)
  4872.     WedgePart397.Orientation = Vector3.new(0, 90, 180)
  4873.     WedgePart397.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4874.     SpecialMesh398.Parent = WedgePart397
  4875.     SpecialMesh398.MeshType = Enum.MeshType.Wedge
  4876.     WedgePart399.Parent = Model0
  4877.     WedgePart399.Material = Enum.Material.Metal
  4878.     WedgePart399.BrickColor = BrickColor.new("Grime")
  4879.     WedgePart399.Rotation = Vector3.new(-180, -90, 0)
  4880.     WedgePart399.FormFactor = Enum.FormFactor.Custom
  4881.     WedgePart399.Size = Vector3.new(5.19999981, 1.20000005, 0.800000072)
  4882.     WedgePart399.CFrame = CFrame.new(3.49025035, 5.80047512, 44.0598679, 1.49187254e-05, -5.46336423e-06, -1, 1.28550873e-05, -0.99999088, 5.84314057e-06, -1.00000012, -1.82317744e-05, -7.25863902e-06)
  4883.     WedgePart399.BottomSurface = Enum.SurfaceType.Weld
  4884.     WedgePart399.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4885.     WedgePart399.Position = Vector3.new(3.49025035, 5.80047512, 44.0598679)
  4886.     WedgePart399.Orientation = Vector3.new(0, -90, 180)
  4887.     WedgePart399.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4888.     SpecialMesh400.Parent = WedgePart399
  4889.     SpecialMesh400.MeshType = Enum.MeshType.Wedge
  4890.     WedgePart401.Parent = Model0
  4891.     WedgePart401.Material = Enum.Material.Metal
  4892.     WedgePart401.BrickColor = BrickColor.new("Grime")
  4893.     WedgePart401.Rotation = Vector3.new(-180, -90, 0)
  4894.     WedgePart401.FormFactor = Enum.FormFactor.Custom
  4895.     WedgePart401.Size = Vector3.new(5.19999981, 2.4000001, 0.800000072)
  4896.     WedgePart401.CFrame = CFrame.new(2.69040108, 4.00057888, 33.659893, -1.2307155e-05, -6.81548408e-06, -1, 4.87608668e-06, -1, 6.82578775e-06, -1, -5.02421426e-06, 1.25180559e-05)
  4897.     WedgePart401.BottomSurface = Enum.SurfaceType.Weld
  4898.     WedgePart401.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4899.     WedgePart401.Position = Vector3.new(2.69040108, 4.00057888, 33.659893)
  4900.     WedgePart401.Orientation = Vector3.new(0, -90, 180)
  4901.     WedgePart401.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4902.     SpecialMesh402.Parent = WedgePart401
  4903.     SpecialMesh402.MeshType = Enum.MeshType.Wedge
  4904.     WedgePart403.Parent = Model0
  4905.     WedgePart403.Material = Enum.Material.Metal
  4906.     WedgePart403.BrickColor = BrickColor.new("Grime")
  4907.     WedgePart403.Rotation = Vector3.new(180, 90, 0)
  4908.     WedgePart403.FormFactor = Enum.FormFactor.Custom
  4909.     WedgePart403.Size = Vector3.new(5.19999981, 1.4000001, 1.80000007)
  4910.     WedgePart403.CFrame = CFrame.new(15.3911648, 6.50011253, 33.6598206, -5.57357816e-06, -6.14820556e-06, 1, 6.22643574e-06, -1, -6.27145073e-06, 1, 4.4634462e-06, 3.06545007e-06)
  4911.     WedgePart403.BottomSurface = Enum.SurfaceType.Weld
  4912.     WedgePart403.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4913.     WedgePart403.Position = Vector3.new(15.3911648, 6.50011253, 33.6598206)
  4914.     WedgePart403.Orientation = Vector3.new(0, 90, 180)
  4915.     WedgePart403.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4916.     SpecialMesh404.Parent = WedgePart403
  4917.     SpecialMesh404.MeshType = Enum.MeshType.Wedge
  4918.     WedgePart405.Parent = Model0
  4919.     WedgePart405.Material = Enum.Material.Metal
  4920.     WedgePart405.BrickColor = BrickColor.new("Grime")
  4921.     WedgePart405.Rotation = Vector3.new(180, 90, 0)
  4922.     WedgePart405.CanCollide = false
  4923.     WedgePart405.FormFactor = Enum.FormFactor.Custom
  4924.     WedgePart405.Size = Vector3.new(5.19999981, 0.800000072, 0.600000024)
  4925.     WedgePart405.CFrame = CFrame.new(-4.60990286, 4.80025768, 33.6599922, -1.13140413e-05, -5.86295255e-06, 1, 1.95633838e-05, -0.999981761, -6.5924678e-06, 1.00000024, 9.23195239e-06, -3.40660699e-06)
  4926.     WedgePart405.BottomSurface = Enum.SurfaceType.Weld
  4927.     WedgePart405.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4928.     WedgePart405.Position = Vector3.new(-4.60990286, 4.80025768, 33.6599922)
  4929.     WedgePart405.Orientation = Vector3.new(0, 90, 180)
  4930.     WedgePart405.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4931.     SpecialMesh406.Parent = WedgePart405
  4932.     SpecialMesh406.MeshType = Enum.MeshType.Wedge
  4933.     WedgePart407.Parent = Model0
  4934.     WedgePart407.Material = Enum.Material.Metal
  4935.     WedgePart407.BrickColor = BrickColor.new("Grime")
  4936.     WedgePart407.Rotation = Vector3.new(180, -90, 0)
  4937.     WedgePart407.FormFactor = Enum.FormFactor.Custom
  4938.     WedgePart407.Size = Vector3.new(1.59999871, 2, 1.79999995)
  4939.     WedgePart407.CFrame = CFrame.new(-16.609375, 5.00049973, 45.8597336, 6.52338531e-06, -6.1213882e-06, -1, -1.60775817e-05, -1, 6.68229768e-06, -1, 8.12245889e-06, 4.77771937e-06)
  4940.     WedgePart407.BottomSurface = Enum.SurfaceType.Smooth
  4941.     WedgePart407.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4942.     WedgePart407.Position = Vector3.new(-16.609375, 5.00049973, 45.8597336)
  4943.     WedgePart407.Orientation = Vector3.new(0, -90, -180)
  4944.     WedgePart407.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4945.     SpecialMesh408.Parent = WedgePart407
  4946.     SpecialMesh408.MeshType = Enum.MeshType.Wedge
  4947.     Part409.Parent = Model0
  4948.     Part409.Material = Enum.Material.Metal
  4949.     Part409.BrickColor = BrickColor.new("Grime")
  4950.     Part409.Rotation = Vector3.new(180, 0, -180)
  4951.     Part409.FormFactor = Enum.FormFactor.Custom
  4952.     Part409.Size = Vector3.new(1.19999981, 1.20000005, 15.999999)
  4953.     Part409.CFrame = CFrame.new(18.0901623, 3.40006208, 38.8598328, -1, 6.87710462e-06, -1.40845405e-05, 7.06488026e-06, 1, -9.22855088e-06, 1.79022245e-05, -6.54521045e-06, -1)
  4954.     Part409.BackSurface = Enum.SurfaceType.Weld
  4955.     Part409.BottomSurface = Enum.SurfaceType.Weld
  4956.     Part409.LeftSurface = Enum.SurfaceType.Weld
  4957.     Part409.RightSurface = Enum.SurfaceType.Weld
  4958.     Part409.TopSurface = Enum.SurfaceType.Weld
  4959.     Part409.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4960.     Part409.Position = Vector3.new(18.0901623, 3.40006208, 38.8598328)
  4961.     Part409.Orientation = Vector3.new(0, -180, 0)
  4962.     Part409.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4963.     BlockMesh410.Parent = Part409
  4964.     Part411.Parent = Model0
  4965.     Part411.Material = Enum.Material.Metal
  4966.     Part411.BrickColor = BrickColor.new("Grime")
  4967.     Part411.Rotation = Vector3.new(-180, 0, -180)
  4968.     Part411.FormFactor = Enum.FormFactor.Custom
  4969.     Part411.Size = Vector3.new(2.00000024, 4, 15.6000004)
  4970.     Part411.CFrame = CFrame.new(18.0899773, 6.00011158, 38.8595161, -1, 8.79176241e-06, -5.25169889e-05, 8.88845261e-06, 1, 7.70221322e-06, 5.44925242e-05, 9.09026676e-06, -1)
  4971.     Part411.BackSurface = Enum.SurfaceType.Weld
  4972.     Part411.BottomSurface = Enum.SurfaceType.Weld
  4973.     Part411.FrontSurface = Enum.SurfaceType.Weld
  4974.     Part411.LeftSurface = Enum.SurfaceType.Weld
  4975.     Part411.RightSurface = Enum.SurfaceType.Weld
  4976.     Part411.TopSurface = Enum.SurfaceType.Weld
  4977.     Part411.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4978.     Part411.Position = Vector3.new(18.0899773, 6.00011158, 38.8595161)
  4979.     Part411.Orientation = Vector3.new(0, -180, 0)
  4980.     Part411.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4981.     BlockMesh412.Parent = Part411
  4982.     Part413.Parent = Model0
  4983.     Part413.Material = Enum.Material.Metal
  4984.     Part413.BrickColor = BrickColor.new("Grime")
  4985.     Part413.Rotation = Vector3.new(-180, 0, -180)
  4986.     Part413.CanCollide = false
  4987.     Part413.FormFactor = Enum.FormFactor.Custom
  4988.     Part413.Size = Vector3.new(6.19999981, 2.39999986, 5.19999981)
  4989.     Part413.CFrame = CFrame.new(-0.809948921, 4.00028038, 44.0597649, -1, 6.57104692e-06, -7.88472062e-06, 6.95060317e-06, 0.99999088, 2.1937858e-06, 1.55447615e-05, 7.57022963e-06, -1.00000012)
  4990.     Part413.BackSurface = Enum.SurfaceType.Weld
  4991.     Part413.BottomSurface = Enum.SurfaceType.Weld
  4992.     Part413.FrontSurface = Enum.SurfaceType.Weld
  4993.     Part413.LeftSurface = Enum.SurfaceType.Weld
  4994.     Part413.RightSurface = Enum.SurfaceType.Weld
  4995.     Part413.TopSurface = Enum.SurfaceType.Weld
  4996.     Part413.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4997.     Part413.Position = Vector3.new(-0.809948921, 4.00028038, 44.0597649)
  4998.     Part413.Orientation = Vector3.new(0, -180, 0)
  4999.     Part413.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5000.     BlockMesh414.Parent = Part413
  5001.     Part415.Parent = Model0
  5002.     Part415.Material = Enum.Material.Metal
  5003.     Part415.BrickColor = BrickColor.new("Grime")
  5004.     Part415.Rotation = Vector3.new(180, 0, -180)
  5005.     Part415.FormFactor = Enum.FormFactor.Custom
  5006.     Part415.Size = Vector3.new(13.1999998, 1.19999969, 12.4000006)
  5007.     Part415.CFrame = CFrame.new(10.0900612, 3.40011263, 38.85989, -1, 6.44758302e-06, -5.45887087e-06, 6.45471619e-06, 1, -7.73913871e-06, 5.60309672e-06, -7.63776461e-06, -1)
  5008.     Part415.BottomSurface = Enum.SurfaceType.Weld
  5009.     Part415.LeftSurface = Enum.SurfaceType.Weld
  5010.     Part415.RightSurface = Enum.SurfaceType.Weld
  5011.     Part415.TopSurface = Enum.SurfaceType.Weld
  5012.     Part415.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5013.     Part415.Position = Vector3.new(10.0900612, 3.40011263, 38.85989)
  5014.     Part415.Orientation = Vector3.new(0, -180, 0)
  5015.     Part415.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5016.     BlockMesh416.Parent = Part415
  5017.     BlockMesh416.Offset = Vector3.new(0, 2, 0)
  5018.     BlockMesh416.Scale = Vector3.new(1.20000005, 4.33400011, 1)
  5019.     BlockMesh416.Scale = Vector3.new(1.20000005, 4.33400011, 1)
  5020.     Part417.Parent = Model0
  5021.     Part417.Material = Enum.Material.Metal
  5022.     Part417.BrickColor = BrickColor.new("Really black")
  5023.     Part417.Rotation = Vector3.new(90, -90, 0)
  5024.     Part417.CanCollide = false
  5025.     Part417.FormFactor = Enum.FormFactor.Custom
  5026.     Part417.Size = Vector3.new(5.5999999, 1.79999995, 5.60000038)
  5027.     Part417.CFrame = CFrame.new(-7.30992794, 2.80029297, 45.9599228, -5.31013347e-06, -1.75913701e-05, -1, -1, 8.41797737e-06, 5.30998523e-06, 8.4178846e-06, 1, -1.75914138e-05)
  5028.     Part417.BottomSurface = Enum.SurfaceType.Weld
  5029.     Part417.FrontSurface = Enum.SurfaceType.Weld
  5030.     Part417.LeftSurface = Enum.SurfaceType.Weld
  5031.     Part417.RightSurface = Enum.SurfaceType.Weld
  5032.     Part417.TopSurface = Enum.SurfaceType.Weld
  5033.     Part417.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5034.     Part417.Position = Vector3.new(-7.30992794, 2.80029297, 45.9599228)
  5035.     Part417.Orientation = Vector3.new(0, -90, -90)
  5036.     Part417.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5037.     CylinderMesh418.Parent = Part417
  5038.     Part419.Name = "wheel"
  5039.     Part419.Parent = Model0
  5040.     Part419.Material = Enum.Material.Metal
  5041.     Part419.BrickColor = BrickColor.new("Grime")
  5042.     Part419.Transparency = 1
  5043.     Part419.Rotation = Vector3.new(90, 90, 0)
  5044.     Part419.FormFactor = Enum.FormFactor.Symmetric
  5045.     Part419.Friction = 1
  5046.     Part419.Shape = Enum.PartType.Ball
  5047.     Part419.Size = Vector3.new(5, 5, 5)
  5048.     Part419.CFrame = CFrame.new(18.0901184, 2.99934506, 28.3597851, 2.72848411e-09, 5.54910464e-08, 1, 1, 4.68062353e-08, -3.27418093e-09, -3.90050445e-08, 1, -6.65888464e-08)
  5049.     Part419.BottomSurface = Enum.SurfaceType.Smooth
  5050.     Part419.TopSurface = Enum.SurfaceType.Hinge
  5051.     Part419.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5052.     Part419.Position = Vector3.new(18.0901184, 2.99934506, 28.3597851)
  5053.     Part419.Orientation = Vector3.new(0, 90, 90)
  5054.     Part419.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5055.     CylinderMesh420.Parent = Part419
  5056.     CylinderMesh420.Offset = Vector3.new(0, -1.10000002, 0)
  5057.     CylinderMesh420.Scale = Vector3.new(1, 0.600000024, 1)
  5058.     CylinderMesh420.Scale = Vector3.new(1, 0.600000024, 1)
  5059.     Part421.Parent = Model0
  5060.     Part421.Material = Enum.Material.Metal
  5061.     Part421.BrickColor = BrickColor.new("Really black")
  5062.     Part421.Rotation = Vector3.new(-90, 90, 0)
  5063.     Part421.CanCollide = false
  5064.     Part421.FormFactor = Enum.FormFactor.Custom
  5065.     Part421.Size = Vector3.new(5.5999999, 1.79999995, 5.60000038)
  5066.     Part421.CFrame = CFrame.new(6.2899642, 2.80008507, 31.7599297, -6.44921874e-06, -5.4921652e-06, 1, -1, -7.7157365e-06, -6.45307955e-06, 7.66116682e-06, -1, -5.5698024e-06)
  5067.     Part421.BottomSurface = Enum.SurfaceType.Weld
  5068.     Part421.FrontSurface = Enum.SurfaceType.Weld
  5069.     Part421.LeftSurface = Enum.SurfaceType.Weld
  5070.     Part421.RightSurface = Enum.SurfaceType.Weld
  5071.     Part421.TopSurface = Enum.SurfaceType.Weld
  5072.     Part421.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5073.     Part421.Position = Vector3.new(6.2899642, 2.80008507, 31.7599297)
  5074.     Part421.Orientation = Vector3.new(0, 90, -90)
  5075.     Part421.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5076.     CylinderMesh422.Parent = Part421
  5077.     Part423.Parent = Model0
  5078.     Part423.Material = Enum.Material.Metal
  5079.     Part423.BrickColor = BrickColor.new("Really black")
  5080.     Part423.Rotation = Vector3.new(-90, 90, 0)
  5081.     Part423.CanCollide = false
  5082.     Part423.FormFactor = Enum.FormFactor.Custom
  5083.     Part423.Size = Vector3.new(5.5999999, 1.79999995, 5.60000038)
  5084.     Part423.CFrame = CFrame.new(13.4899158, 2.80003095, 31.7598763, -6.44921874e-06, -5.4921652e-06, 1, -1, -7.7157365e-06, -6.45307955e-06, 7.66116682e-06, -1, -5.5698024e-06)
  5085.     Part423.BottomSurface = Enum.SurfaceType.Weld
  5086.     Part423.FrontSurface = Enum.SurfaceType.Weld
  5087.     Part423.LeftSurface = Enum.SurfaceType.Weld
  5088.     Part423.RightSurface = Enum.SurfaceType.Weld
  5089.     Part423.TopSurface = Enum.SurfaceType.Smooth
  5090.     Part423.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5091.     Part423.Position = Vector3.new(13.4899158, 2.80003095, 31.7598763)
  5092.     Part423.Orientation = Vector3.new(0, 90, -90)
  5093.     Part423.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5094.     CylinderMesh424.Parent = Part423
  5095.     Part425.Parent = Model0
  5096.     Part425.Material = Enum.Material.Metal
  5097.     Part425.BrickColor = BrickColor.new("Really black")
  5098.     Part425.Rotation = Vector3.new(90, -90, 0)
  5099.     Part425.CanCollide = false
  5100.     Part425.FormFactor = Enum.FormFactor.Custom
  5101.     Part425.Size = Vector3.new(5.5999999, 1.79999995, 5.60000038)
  5102.     Part425.CFrame = CFrame.new(6.29016876, 2.80019403, 45.9599304, -6.44921874e-06, 5.4921652e-06, -1, -1, 7.7157365e-06, 6.45307955e-06, 7.66116682e-06, 1, 5.5698024e-06)
  5103.     Part425.BottomSurface = Enum.SurfaceType.Weld
  5104.     Part425.FrontSurface = Enum.SurfaceType.Weld
  5105.     Part425.LeftSurface = Enum.SurfaceType.Weld
  5106.     Part425.RightSurface = Enum.SurfaceType.Weld
  5107.     Part425.TopSurface = Enum.SurfaceType.Weld
  5108.     Part425.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5109.     Part425.Position = Vector3.new(6.29016876, 2.80019403, 45.9599304)
  5110.     Part425.Orientation = Vector3.new(0, -90, -90)
  5111.     Part425.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5112.     CylinderMesh426.Parent = Part425
  5113.     Part427.Parent = Model0
  5114.     Part427.Material = Enum.Material.Metal
  5115.     Part427.BrickColor = BrickColor.new("Grime")
  5116.     Part427.Rotation = Vector3.new(-180, 0, -180)
  5117.     Part427.CanCollide = false
  5118.     Part427.FormFactor = Enum.FormFactor.Custom
  5119.     Part427.Size = Vector3.new(0.800000191, 1.40000021, 5.19999981)
  5120.     Part427.CFrame = CFrame.new(16.6901779, 6.50009441, 44.059761, -1, 7.6314127e-06, -2.93200592e-05, 7.72801832e-06, 1, 1.66543414e-05, 3.12956508e-05, 1.80426377e-05, -1)
  5121.     Part427.BackSurface = Enum.SurfaceType.Weld
  5122.     Part427.BottomSurface = Enum.SurfaceType.Weld
  5123.     Part427.FrontSurface = Enum.SurfaceType.Weld
  5124.     Part427.LeftSurface = Enum.SurfaceType.Weld
  5125.     Part427.RightSurface = Enum.SurfaceType.Weld
  5126.     Part427.TopSurface = Enum.SurfaceType.Weld
  5127.     Part427.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5128.     Part427.Position = Vector3.new(16.6901779, 6.50009441, 44.059761)
  5129.     Part427.Orientation = Vector3.new(0, -180, 0)
  5130.     Part427.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5131.     BlockMesh428.Parent = Part427
  5132.     WedgePart429.Parent = Model0
  5133.     WedgePart429.Material = Enum.Material.Metal
  5134.     WedgePart429.BrickColor = BrickColor.new("Grime")
  5135.     WedgePart429.Rotation = Vector3.new(-180, -90, 0)
  5136.     WedgePart429.FormFactor = Enum.FormFactor.Custom
  5137.     WedgePart429.Size = Vector3.new(5.19999981, 2.4000001, 0.800000072)
  5138.     WedgePart429.CFrame = CFrame.new(2.69045496, 4.00031519, 44.0597382, -1.79814906e-05, -7.07093022e-06, -1, 9.26739267e-06, -0.99999088, 7.4503323e-06, -1.00000012, -1.46438188e-05, 2.5641586e-05)
  5139.     WedgePart429.BottomSurface = Enum.SurfaceType.Weld
  5140.     WedgePart429.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5141.     WedgePart429.Position = Vector3.new(2.69045496, 4.00031519, 44.0597382)
  5142.     WedgePart429.Orientation = Vector3.new(0, -90, 180)
  5143.     WedgePart429.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5144.     SpecialMesh430.Parent = WedgePart429
  5145.     SpecialMesh430.MeshType = Enum.MeshType.Wedge
  5146.     WedgePart431.Parent = Model0
  5147.     WedgePart431.Material = Enum.Material.Metal
  5148.     WedgePart431.BrickColor = BrickColor.new("Grime")
  5149.     WedgePart431.Rotation = Vector3.new(180, 90, 0)
  5150.     WedgePart431.FormFactor = Enum.FormFactor.Custom
  5151.     WedgePart431.Size = Vector3.new(5.19999981, 1.4000001, 1.80000007)
  5152.     WedgePart431.CFrame = CFrame.new(15.3902655, 6.50043106, 44.0596695, -1.61600074e-05, -5.6243216e-06, 1, 1.58236417e-05, -1, -6.17393925e-06, 1, 7.96042968e-06, 4.97321707e-06)
  5153.     WedgePart431.BottomSurface = Enum.SurfaceType.Weld
  5154.     WedgePart431.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5155.     WedgePart431.Position = Vector3.new(15.3902655, 6.50043106, 44.0596695)
  5156.     WedgePart431.Orientation = Vector3.new(0, 90, 180)
  5157.     WedgePart431.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5158.     SpecialMesh432.Parent = WedgePart431
  5159.     SpecialMesh432.MeshType = Enum.MeshType.Wedge
  5160.     Part433.Name = "wheel"
  5161.     Part433.Parent = Model0
  5162.     Part433.Material = Enum.Material.Metal
  5163.     Part433.BrickColor = BrickColor.new("Grime")
  5164.     Part433.Transparency = 1
  5165.     Part433.Rotation = Vector3.new(-90, -90, 0)
  5166.     Part433.FormFactor = Enum.FormFactor.Symmetric
  5167.     Part433.Friction = 1
  5168.     Part433.Shape = Enum.PartType.Ball
  5169.     Part433.Size = Vector3.new(5, 5, 5)
  5170.     Part433.CFrame = CFrame.new(18.0901108, 2.99934506, 49.3595123, 2.72848411e-09, -5.54910464e-08, -1, 1, -4.68062353e-08, 3.27418093e-09, -3.90050445e-08, -1, 6.65888464e-08)
  5171.     Part433.BottomSurface = Enum.SurfaceType.Smooth
  5172.     Part433.TopSurface = Enum.SurfaceType.Hinge
  5173.     Part433.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5174.     Part433.Position = Vector3.new(18.0901108, 2.99934506, 49.3595123)
  5175.     Part433.Orientation = Vector3.new(0, -90, 90)
  5176.     Part433.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5177.     CylinderMesh434.Parent = Part433
  5178.     CylinderMesh434.Offset = Vector3.new(0, -1.10000002, 0)
  5179.     CylinderMesh434.Scale = Vector3.new(1, 0.600000024, 1)
  5180.     CylinderMesh434.Scale = Vector3.new(1, 0.600000024, 1)
  5181.     Part435.Parent = Model0
  5182.     Part435.Material = Enum.Material.Metal
  5183.     Part435.BrickColor = BrickColor.new("Really black")
  5184.     Part435.Rotation = Vector3.new(90, -90, 0)
  5185.     Part435.CanCollide = false
  5186.     Part435.FormFactor = Enum.FormFactor.Custom
  5187.     Part435.Size = Vector3.new(5.5999999, 1.79999995, 5.60000038)
  5188.     Part435.CFrame = CFrame.new(13.4901199, 2.80014706, 45.9598923, -6.44921874e-06, 5.4921652e-06, -1, -1, 7.7157365e-06, 6.45307955e-06, 7.66116682e-06, 1, 5.5698024e-06)
  5189.     Part435.BottomSurface = Enum.SurfaceType.Weld
  5190.     Part435.FrontSurface = Enum.SurfaceType.Weld
  5191.     Part435.LeftSurface = Enum.SurfaceType.Weld
  5192.     Part435.RightSurface = Enum.SurfaceType.Weld
  5193.     Part435.TopSurface = Enum.SurfaceType.Smooth
  5194.     Part435.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5195.     Part435.Position = Vector3.new(13.4901199, 2.80014706, 45.9598923)
  5196.     Part435.Orientation = Vector3.new(0, -90, -90)
  5197.     Part435.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  5198.     CylinderMesh436.Parent = Part435
  5199.     Part437.Parent = Model0
  5200.     Part437.Material = Enum.Material.Metal
  5201.     Part437.BrickColor = BrickColor.new("Grime")
  5202.     Part437.Rotation = Vector3.new(90, -90, 0)
  5203.     Part437.CanCollide = false
  5204.     Part437.FormFactor = Enum.FormFactor.Custom
  5205.     Part437.Size = Vector3.new(3.59999943, 0.200000003, 3.20000005)
  5206.     Part437.CFrame = CFrame.new(-13.9098864, 2.80032659, 46.9600143, -6.56966131e-06, -1.93433134e-05, -1, -1, 9.822832e-06, 6.56947122e-06, 9.82270558e-06, 1, -1.93433771e-05)
  5207.     Part437.BottomSurface = Enum.SurfaceType.Weld
  5208.     Part437.FrontSurface = Enum.SurfaceType.Weld
  5209.     Part437.LeftSurface = Enum.SurfaceType.Weld
  5210.     Part437.RightSurface = Enum.SurfaceType.Weld
  5211.     Part437.TopSurface = Enum.SurfaceType.Weld
  5212.     Part437.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5213.     Part437.Position = Vector3.new(-13.9098864, 2.80032659, 46.9600143)
  5214.     Part437.Orientation = Vector3.new(0, -90, -90)
  5215.     Part437.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5216.     CylinderMesh438.Parent = Part437
  5217.     CylinderMesh438.Offset = Vector3.new(0, -0.170000002, 0)
  5218.     Part439.Parent = Model0
  5219.     Part439.Material = Enum.Material.Metal
  5220.     Part439.BrickColor = BrickColor.new("Grime")
  5221.     Part439.Rotation = Vector3.new(90, -90, 0)
  5222.     Part439.CanCollide = false
  5223.     Part439.FormFactor = Enum.FormFactor.Custom
  5224.     Part439.Size = Vector3.new(3.59999943, 0.200000003, 3.20000005)
  5225.     Part439.CFrame = CFrame.new(13.5900993, 2.8001523, 46.9598885, -6.44267539e-06, 5.35898835e-06, -1, -1, 7.80934624e-06, 6.45962518e-06, 7.56755799e-06, 1, 5.70298016e-06)
  5226.     Part439.BottomSurface = Enum.SurfaceType.Weld
  5227.     Part439.FrontSurface = Enum.SurfaceType.Weld
  5228.     Part439.LeftSurface = Enum.SurfaceType.Weld
  5229.     Part439.RightSurface = Enum.SurfaceType.Weld
  5230.     Part439.TopSurface = Enum.SurfaceType.Weld
  5231.     Part439.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5232.     Part439.Position = Vector3.new(13.5900993, 2.8001523, 46.9598885)
  5233.     Part439.Orientation = Vector3.new(0, -90, -90)
  5234.     Part439.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5235.     CylinderMesh440.Parent = Part439
  5236.     CylinderMesh440.Offset = Vector3.new(0, -0.170000002, 0)
  5237.     Part441.Parent = Model0
  5238.     Part441.Material = Enum.Material.Metal
  5239.     Part441.BrickColor = BrickColor.new("Grime")
  5240.     Part441.Rotation = Vector3.new(90, -90, 0)
  5241.     Part441.CanCollide = false
  5242.     Part441.FormFactor = Enum.FormFactor.Custom
  5243.     Part441.Size = Vector3.new(3.59999943, 0.200000003, 3.20000005)
  5244.     Part441.CFrame = CFrame.new(6.28996181, 2.70008087, 30.7599239, -6.44267539e-06, 5.35898835e-06, -1, -1, 7.80934624e-06, 6.45962518e-06, 7.56755799e-06, 1, 5.70298016e-06)
  5245.     Part441.BottomSurface = Enum.SurfaceType.Weld
  5246.     Part441.FrontSurface = Enum.SurfaceType.Weld
  5247.     Part441.LeftSurface = Enum.SurfaceType.Weld
  5248.     Part441.RightSurface = Enum.SurfaceType.Weld
  5249.     Part441.TopSurface = Enum.SurfaceType.Weld
  5250.     Part441.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5251.     Part441.Position = Vector3.new(6.28996181, 2.70008087, 30.7599239)
  5252.     Part441.Orientation = Vector3.new(0, -90, -90)
  5253.     Part441.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5254.     CylinderMesh442.Parent = Part441
  5255.     CylinderMesh442.Offset = Vector3.new(0, -0.170000002, 0)
  5256.     Part443.Parent = Model0
  5257.     Part443.Material = Enum.Material.Metal
  5258.     Part443.BrickColor = BrickColor.new("Grime")
  5259.     Part443.Rotation = Vector3.new(90, -90, 0)
  5260.     Part443.CanCollide = false
  5261.     Part443.FormFactor = Enum.FormFactor.Custom
  5262.     Part443.Size = Vector3.new(3.59999943, 0.200000003, 3.20000005)
  5263.     Part443.CFrame = CFrame.new(-7.40999508, 2.70016646, 30.7599983, -6.36196455e-06, 3.71647275e-06, -1, -1, 8.96386427e-06, 6.54035557e-06, 6.41305041e-06, 1, 7.34550258e-06)
  5264.     Part443.BottomSurface = Enum.SurfaceType.Weld
  5265.     Part443.FrontSurface = Enum.SurfaceType.Weld
  5266.     Part443.LeftSurface = Enum.SurfaceType.Weld
  5267.     Part443.RightSurface = Enum.SurfaceType.Weld
  5268.     Part443.TopSurface = Enum.SurfaceType.Weld
  5269.     Part443.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5270.     Part443.Position = Vector3.new(-7.40999508, 2.70016646, 30.7599983)
  5271.     Part443.Orientation = Vector3.new(0, -90, -90)
  5272.     Part443.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5273.     CylinderMesh444.Parent = Part443
  5274.     CylinderMesh444.Offset = Vector3.new(0, -0.170000002, 0)
  5275.     Part445.Parent = Model0
  5276.     Part445.Material = Enum.Material.Metal
  5277.     Part445.BrickColor = BrickColor.new("Grime")
  5278.     Part445.Rotation = Vector3.new(90, -90, 0)
  5279.     Part445.CanCollide = false
  5280.     Part445.FormFactor = Enum.FormFactor.Custom
  5281.     Part445.Size = Vector3.new(3.59999943, 0.200000003, 3.20000005)
  5282.     Part445.CFrame = CFrame.new(13.4899139, 2.70003438, 30.759882, -6.44267539e-06, 5.35898835e-06, -1, -1, 7.80934624e-06, 6.45962518e-06, 7.56755799e-06, 1, 5.70298016e-06)
  5283.     Part445.BottomSurface = Enum.SurfaceType.Weld
  5284.     Part445.FrontSurface = Enum.SurfaceType.Weld
  5285.     Part445.LeftSurface = Enum.SurfaceType.Weld
  5286.     Part445.RightSurface = Enum.SurfaceType.Weld
  5287.     Part445.TopSurface = Enum.SurfaceType.Weld
  5288.     Part445.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5289.     Part445.Position = Vector3.new(13.4899139, 2.70003438, 30.759882)
  5290.     Part445.Orientation = Vector3.new(0, -90, -90)
  5291.     Part445.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5292.     CylinderMesh446.Parent = Part445
  5293.     CylinderMesh446.Offset = Vector3.new(0, -0.170000002, 0)
  5294.     Part447.Parent = Model0
  5295.     Part447.Material = Enum.Material.Metal
  5296.     Part447.BrickColor = BrickColor.new("Grime")
  5297.     Part447.Rotation = Vector3.new(90, -90, 0)
  5298.     Part447.CanCollide = false
  5299.     Part447.FormFactor = Enum.FormFactor.Custom
  5300.     Part447.Size = Vector3.new(3.59999943, 0.200000003, 3.20000005)
  5301.     Part447.CFrame = CFrame.new(-13.9099846, 2.80021143, 30.7600117, -6.36196455e-06, 3.71647275e-06, -1, -1, 8.96386427e-06, 6.54035557e-06, 6.41305041e-06, 1, 7.34550258e-06)
  5302.     Part447.BottomSurface = Enum.SurfaceType.Weld
  5303.     Part447.FrontSurface = Enum.SurfaceType.Weld
  5304.     Part447.LeftSurface = Enum.SurfaceType.Weld
  5305.     Part447.RightSurface = Enum.SurfaceType.Weld
  5306.     Part447.TopSurface = Enum.SurfaceType.Weld
  5307.     Part447.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5308.     Part447.Position = Vector3.new(-13.9099846, 2.80021143, 30.7600117)
  5309.     Part447.Orientation = Vector3.new(0, -90, -90)
  5310.     Part447.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5311.     CylinderMesh448.Parent = Part447
  5312.     CylinderMesh448.Offset = Vector3.new(0, -0.170000002, 0)
  5313.     Part449.Parent = Model0
  5314.     Part449.Material = Enum.Material.Metal
  5315.     Part449.BrickColor = BrickColor.new("Grime")
  5316.     Part449.Rotation = Vector3.new(90, -90, 0)
  5317.     Part449.CanCollide = false
  5318.     Part449.FormFactor = Enum.FormFactor.Custom
  5319.     Part449.Size = Vector3.new(3.59999943, 0.200000003, 3.20000005)
  5320.     Part449.CFrame = CFrame.new(-7.30978823, 2.80027866, 46.9599609, -6.56966131e-06, -1.93433134e-05, -1, -1, 9.822832e-06, 6.56947122e-06, 9.82270558e-06, 1, -1.93433771e-05)
  5321.     Part449.BottomSurface = Enum.SurfaceType.Weld
  5322.     Part449.FrontSurface = Enum.SurfaceType.Weld
  5323.     Part449.LeftSurface = Enum.SurfaceType.Weld
  5324.     Part449.RightSurface = Enum.SurfaceType.Weld
  5325.     Part449.TopSurface = Enum.SurfaceType.Weld
  5326.     Part449.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5327.     Part449.Position = Vector3.new(-7.30978823, 2.80027866, 46.9599609)
  5328.     Part449.Orientation = Vector3.new(0, -90, -90)
  5329.     Part449.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5330.     CylinderMesh450.Parent = Part449
  5331.     CylinderMesh450.Offset = Vector3.new(0, -0.170000002, 0)
  5332.     Part451.Parent = Model0
  5333.     Part451.Material = Enum.Material.Metal
  5334.     Part451.BrickColor = BrickColor.new("Grime")
  5335.     Part451.Rotation = Vector3.new(90, -90, 0)
  5336.     Part451.CanCollide = false
  5337.     Part451.FormFactor = Enum.FormFactor.Custom
  5338.     Part451.Size = Vector3.new(3.59999943, 0.200000003, 3.20000005)
  5339.     Part451.CFrame = CFrame.new(6.2901721, 2.80019784, 46.9599152, -6.44267539e-06, 5.35898835e-06, -1, -1, 7.80934624e-06, 6.45962518e-06, 7.56755799e-06, 1, 5.70298016e-06)
  5340.     Part451.BottomSurface = Enum.SurfaceType.Weld
  5341.     Part451.FrontSurface = Enum.SurfaceType.Weld
  5342.     Part451.LeftSurface = Enum.SurfaceType.Weld
  5343.     Part451.RightSurface = Enum.SurfaceType.Weld
  5344.     Part451.TopSurface = Enum.SurfaceType.Weld
  5345.     Part451.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5346.     Part451.Position = Vector3.new(6.2901721, 2.80019784, 46.9599152)
  5347.     Part451.Orientation = Vector3.new(0, -90, -90)
  5348.     Part451.Color = Color3.new(0.498039, 0.556863, 0.392157)
  5349.     CylinderMesh452.Parent = Part451
  5350.     CylinderMesh452.Offset = Vector3.new(0, -0.170000002, 0)
  5351.     for i,v in pairs(mas:GetChildren()) do
  5352.         v.Parent = workspace
  5353.         pcall(function() v:MakeJoints() end)
  5354.     end
  5355.     mas:Destroy()
  5356.     for i,v in pairs(cors) do
  5357.         spawn(function()
  5358.             pcall(v)
  5359.         end)
  5360.     end
  5361. end)
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement