SHOW:
|
|
- or go back to the newest paste.
| 1 | if game:GetService("RunService"):IsClient() then error("Please run as a server script. Use h/ instead of hl/.") end
| |
| 2 | print("FE Compatibility code by Mokiros")
| |
| 3 | InternalData = {}
| |
| 4 | do | |
| 5 | script.Parent = owner.Character | |
| 6 | local Event = Instance.new("RemoteEvent")
| |
| 7 | Event.Name = "UserInput" | |
| 8 | local function NewFakeEvent() | |
| 9 | local Fake = {fakeEvent=true,Connect=function(self,Func)self.Function=Func end}Fake.connect = Fake.Connect
| |
| 10 | return Fake | |
| 11 | end | |
| 12 | local Mouse = {Target=nil,Hit=CFrame.new(),KeyUp=NewFakeEvent(),KeyDown=NewFakeEvent(),Button1Up=NewFakeEvent(),Button1Down=NewFakeEvent()}
| |
| 13 | local UserInputService = {InputBegan=NewFakeEvent(),InputEnded=NewFakeEvent()}
| |
| 14 | local ContextActionService = {Actions={},BindAction = function(self,actionName,Func,touch,...)
| |
| 15 | self.Actions[actionName] = Func and {Name=actionName,Function=Func,Keys={...}} or nil
| |
| 16 | end};ContextActionService.UnBindAction = ContextActionService.BindAction | |
| 17 | local function TriggerEvent(self,Event,...) | |
| 18 | local Trigger = Mouse[Event] | |
| 19 | if Trigger and Trigger.fakeEvent and Trigger.Function then | |
| 20 | Trigger.Function(...) | |
| 21 | end | |
| 22 | end | |
| 23 | Mouse.TrigEvent = TriggerEvent | |
| 24 | UserInputService.TrigEvent = TriggerEvent | |
| 25 | Event.OnServerEvent:Connect(function(FiredBy,Input) | |
| 26 | if FiredBy.Name ~= owner.Name then end | |
| 27 | if Input.MouseEvent then | |
| 28 | Mouse.Target = Input.Target | |
| 29 | Mouse.Hit = Input.Hit | |
| 30 | else | |
| 31 | local Begin = Input.UserInputState == Enum.UserInputState.Begin | |
| 32 | if Input.UserInputType == Enum.UserInputType.MouseButton1 then | |
| 33 | return Mouse:TrigEvent(Begin and "Button1Down" or "Button1Up") | |
| 34 | end | |
| 35 | for _,Action in pairs(ContextActionService.Actions) do | |
| 36 | for _,Key in pairs(Action.Keys) do | |
| 37 | if Key==Input.KeyCode then | |
| 38 | Action.Function(Action.Name,Input.UserInputState,Input) | |
| 39 | end | |
| 40 | end | |
| 41 | end | |
| 42 | Mouse:TrigEvent(Begin and "KeyDown" or "KeyUp",Input.KeyCode.Name:lower()) | |
| 43 | UserInputService:TrigEvent(Begin and "InputBegan" or "InputEnded",Input,false) | |
| 44 | end | |
| 45 | end) | |
| 46 | InternalData["Mouse"] = Mouse | |
| 47 | InternalData["ContextActionService"] = ContextActionService | |
| 48 | InternalData["UserInputService"] = UserInputService | |
| 49 | Event.Parent = NLS([[ | |
| 50 | local Player = owner | |
| 51 | local Event = script:WaitForChild("UserInput")
| |
| 52 | local UserInputService = game:GetService("UserInputService")
| |
| 53 | local Mouse = Player:GetMouse() | |
| 54 | local Input = function(Input,gameProcessedEvent) | |
| 55 | if gameProcessedEvent then return end | |
| 56 | Event:FireServer({KeyCode=Input.KeyCode,UserInputType=Input.UserInputType,UserInputState=Input.UserInputState})
| |
| 57 | end | |
| 58 | UserInputService.InputBegan:Connect(Input) | |
| 59 | UserInputService.InputEnded:Connect(Input) | |
| 60 | local Hit,Target | |
| 61 | while wait(1/30) do | |
| 62 | if Hit ~= Mouse.Hit or Target ~= Mouse.Target then | |
| 63 | Hit,Target = Mouse.Hit,Mouse.Target | |
| 64 | Event:FireServer({["MouseEvent"]=true,["Target"]=Target,["Hit"]=Hit})
| |
| 65 | end | |
| 66 | end | |
| 67 | ]],owner.Character) | |
| 68 | end | |
| 69 | RealGame = game;game = setmetatable({},{
| |
| 70 | __index = function (self,Index) | |
| 71 | local Sandbox = function (Thing) | |
| 72 | if Thing:IsA("Player") then
| |
| 73 | local RealPlayer = Thing | |
| 74 | return setmetatable({},{
| |
| 75 | __index = function (self,Index) | |
| 76 | local Type = type(RealPlayer[Index]) | |
| 77 | if Type == "function" then | |
| 78 | if Index:lower() == "getmouse" or Index:lower() == "mouse" then | |
| 79 | return function (self) | |
| 80 | return InternalData["Mouse"] | |
| 81 | end | |
| 82 | end | |
| 83 | return function (self,...) | |
| 84 | return RealPlayer[Index](RealPlayer,...) | |
| 85 | end | |
| 86 | else | |
| 87 | if Index == "PlrObj" then | |
| 88 | return RealPlayer | |
| 89 | end | |
| 90 | return RealPlayer[Index] | |
| 91 | end | |
| 92 | end; | |
| 93 | __tostring = function(self) | |
| 94 | return RealPlayer.Name | |
| 95 | end | |
| 96 | }) | |
| 97 | end | |
| 98 | end | |
| 99 | if RealGame[Index] then | |
| 100 | local Type = type(RealGame[Index]) | |
| 101 | if Type == "function" then | |
| 102 | if Index:lower() == "getservice" or Index:lower() == "service" then | |
| 103 | return function (self,Service) | |
| 104 | if Service:lower() == "players" then | |
| 105 | return setmetatable({},{
| |
| 106 | __index = function (self2,Index2) | |
| 107 | local RealService = RealGame:GetService(Service) | |
| 108 | local Type2 = type(Index2) | |
| 109 | if Type2 == "function" then | |
| 110 | return function (self,...) | |
| 111 | return RealService[Index2](RealService,...) | |
| 112 | end | |
| 113 | else | |
| 114 | if Index2:lower() == "localplayer" then | |
| 115 | return Sandbox(owner) | |
| 116 | end | |
| 117 | return RealService[Index2] | |
| 118 | end | |
| 119 | end; | |
| 120 | __tostring = function(self) | |
| 121 | return RealGame:GetService(Service).Name | |
| 122 | end | |
| 123 | }) | |
| 124 | elseif Service:lower() == "contextactionservice" then | |
| 125 | return InternalData["ContextActionService"] | |
| 126 | elseif Service:lower() == "contextactionservice" then | |
| 127 | return InternalData["UserInputService"] | |
| 128 | elseif Service:lower() == "runservice" then | |
| 129 | return setmetatable({},{
| |
| 130 | __index = function(self2,Index2) | |
| 131 | local RealService = RealGame:GetService(Service) | |
| 132 | local Type2 = type(Index2) | |
| 133 | if Type2 == "function" then | |
| 134 | return function (self,...) | |
| 135 | return RealService[Index2](RealService,...) | |
| 136 | end | |
| 137 | else | |
| 138 | if Index2:lower() == "bindtorenderstep" then | |
| 139 | return function (self,Name,Priority,Function) | |
| 140 | return RealGame:GetService("RunService").Stepped:Connect(Function)
| |
| 141 | end | |
| 142 | end | |
| 143 | if Index2:lower() == "renderstepped" then | |
| 144 | return RealService["Stepped"] | |
| 145 | end | |
| 146 | return RealService[Index2] | |
| 147 | end | |
| 148 | end | |
| 149 | }) | |
| 150 | else | |
| 151 | return RealGame:GetService(Service) | |
| 152 | end | |
| 153 | end | |
| 154 | end | |
| 155 | return function (self,...) | |
| 156 | return RealGame[Index](RealGame,...) | |
| 157 | end | |
| 158 | else | |
| 159 | if game:GetService(Index) then | |
| 160 | return game:GetService(Index) | |
| 161 | end | |
| 162 | return RealGame[Index] | |
| 163 | end | |
| 164 | else | |
| 165 | return nil | |
| 166 | end | |
| 167 | end | |
| 168 | });Game = game;owner = game:GetService("Players").LocalPlayer;script = {}
| |
| 169 | print("Complete! Running...")
| |
| 170 | ||
| 171 | ||
| 172 | --//Paste script below this line. | |
| 173 | ||
| 174 | local player = game.Players.LocalPlayer | |
| 175 | local char = player.Character | |
| 176 | local mouse = player:GetMouse() | |
| 177 | local camera = game.Workspace.CurrentCamera | |
| 178 | local hpressed = 0 | |
| 179 | local engineon = false | |
| 180 | local flightready = false | |
| 181 | local rotateangle = 0 | |
| 182 | local speed = 10 | |
| 183 | local wpressed = false | |
| 184 | local kpressed = 0 | |
| 185 | local ppressed = 0 | |
| 186 | local xpressed = 0 | |
| 187 | local lpressed = 0 | |
| 188 | local planehealth = 100 | |
| 189 | function weld(p0,p1,c0) | |
| 190 | local w=Instance.new("Weld",p0)
| |
| 191 | w.Part0=p0 | |
| 192 | w.Part1=p1 | |
| 193 | w.C0=c0 | |
| 194 | return w | |
| 195 | end | |
| 196 | ||
| 197 | ||
| 198 | local mcarrier = Instance.new("Model", workspace)
| |
| 199 | mcarrier.Name = "MCarrier" | |
| 200 | ||
| 201 | part = Instance.new("Part", mcarrier)
| |
| 202 | part.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 203 | part.TopSurface = Enum.SurfaceType.Smooth | |
| 204 | part.Size = Vector3.new(2, 4.8, 1) | |
| 205 | part.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 206 | part.CFrame = CFrame.new(9.399, 7.2, -135.001)* CFrame.Angles(-6.5666728998881e-011, 1.5707963705063, 0) | |
| 207 | part.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 208 | part.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 209 | part.BrickColor = BrickColor.new("Black")
| |
| 210 | part.Friction = 0.3 | |
| 211 | part.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 212 | ||
| 213 | part_2 = Instance.new("Part", mcarrier)
| |
| 214 | part_2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 215 | part_2.TopSurface = Enum.SurfaceType.Smooth | |
| 216 | part_2.Size = Vector3.new(2, 4.8, 1) | |
| 217 | part_2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 218 | part_2.CFrame = CFrame.new(9.399, 7.2, -133.001)* CFrame.Angles(-6.5666728998881e-011, 1.5707963705063, 0) | |
| 219 | part_2.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 220 | part_2.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 221 | part_2.BrickColor = BrickColor.new("Black")
| |
| 222 | part_2.Friction = 0.3 | |
| 223 | part_2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 224 | ||
| 225 | part_3 = Instance.new("Part", mcarrier)
| |
| 226 | part_3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 227 | part_3.TopSurface = Enum.SurfaceType.Smooth | |
| 228 | part_3.Size = Vector3.new(2, 4.8, 1) | |
| 229 | part_3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 230 | part_3.CFrame = CFrame.new(9.399, 7.2, -131.001)* CFrame.Angles(-6.5666728998881e-011, 1.5707963705063, 0) | |
| 231 | part_3.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 232 | part_3.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 233 | part_3.BrickColor = BrickColor.new("Black")
| |
| 234 | part_3.Friction = 0.3 | |
| 235 | part_3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 236 | ||
| 237 | part_4 = Instance.new("Part", mcarrier)
| |
| 238 | part_4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 239 | part_4.TopSurface = Enum.SurfaceType.Smooth | |
| 240 | part_4.Size = Vector3.new(2, 4.8, 1) | |
| 241 | part_4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 242 | part_4.CFrame = CFrame.new(9.399, 7.2, -129.001)* CFrame.Angles(-6.5666728998881e-011, 1.5707963705063, 0) | |
| 243 | part_4.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 244 | part_4.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 245 | part_4.BrickColor = BrickColor.new("Black")
| |
| 246 | part_4.Friction = 0.3 | |
| 247 | part_4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 248 | ||
| 249 | part_5 = Instance.new("Part", mcarrier)
| |
| 250 | part_5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 251 | part_5.TopSurface = Enum.SurfaceType.Smooth | |
| 252 | part_5.Size = Vector3.new(2, 4.8, 1) | |
| 253 | part_5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 254 | part_5.CFrame = CFrame.new(9.399, 7.2, -127.001)* CFrame.Angles(-6.5666728998881e-011, 1.5707963705063, 0) | |
| 255 | part_5.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 256 | part_5.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 257 | part_5.BrickColor = BrickColor.new("Black")
| |
| 258 | part_5.Friction = 0.3 | |
| 259 | part_5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 260 | ||
| 261 | seat = Instance.new("Seat", mcarrier)
| |
| 262 | seat.Friction = 0.3 | |
| 263 | seat.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 264 | seat.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 265 | seat.TopSurface = Enum.SurfaceType.Smooth | |
| 266 | seat.FormFactor = Enum.FormFactor.Custom | |
| 267 | seat.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 268 | seat.BrickColor = BrickColor.new("Black")
| |
| 269 | seat.Size = Vector3.new(2, 1, 2) | |
| 270 | seat.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 271 | seat.CFrame = CFrame.new(7.899, 5.3, -133.001)* CFrame.Angles(-6.5654114089764e-011, 1.5707963705063, 0) | |
| 272 | seat.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 273 | ||
| 274 | part_6 = Instance.new("Part", mcarrier)
| |
| 275 | part_6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 276 | part_6.TopSurface = Enum.SurfaceType.Smooth | |
| 277 | part_6.Size = Vector3.new(2, 4.8, 1) | |
| 278 | part_6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 279 | part_6.CFrame = CFrame.new(9.399, 7.2, -125.001)* CFrame.Angles(-6.5666728998881e-011, 1.5707963705063, 0) | |
| 280 | part_6.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 281 | part_6.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 282 | part_6.BrickColor = BrickColor.new("Black")
| |
| 283 | part_6.Friction = 0.3 | |
| 284 | part_6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 285 | ||
| 286 | part_7 = Instance.new("Part", mcarrier)
| |
| 287 | part_7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 288 | part_7.TopSurface = Enum.SurfaceType.Smooth | |
| 289 | part_7.Size = Vector3.new(2, 4.8, 1) | |
| 290 | part_7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 291 | part_7.CFrame = CFrame.new(9.399, 7.2, -115.001)* CFrame.Angles(-6.5666728998881e-011, 1.5707963705063, 0) | |
| 292 | part_7.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 293 | part_7.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 294 | part_7.BrickColor = BrickColor.new("Black")
| |
| 295 | part_7.Friction = 0.3 | |
| 296 | part_7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 297 | ||
| 298 | seat_2 = Instance.new("Seat", mcarrier)
| |
| 299 | seat_2.Friction = 0.3 | |
| 300 | seat_2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 301 | seat_2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 302 | seat_2.TopSurface = Enum.SurfaceType.Smooth | |
| 303 | seat_2.FormFactor = Enum.FormFactor.Custom | |
| 304 | seat_2.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 305 | seat_2.BrickColor = BrickColor.new("Black")
| |
| 306 | seat_2.Size = Vector3.new(2, 1, 2) | |
| 307 | seat_2.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 308 | seat_2.CFrame = CFrame.new(7.899, 5.3, -127.001)* CFrame.Angles(-6.5654114089764e-011, 1.5707963705063, 0) | |
| 309 | seat_2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 310 | ||
| 311 | seat_3 = Instance.new("Seat", mcarrier)
| |
| 312 | seat_3.Friction = 0.3 | |
| 313 | seat_3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 314 | seat_3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 315 | seat_3.TopSurface = Enum.SurfaceType.Smooth | |
| 316 | seat_3.FormFactor = Enum.FormFactor.Custom | |
| 317 | seat_3.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 318 | seat_3.BrickColor = BrickColor.new("Black")
| |
| 319 | seat_3.Size = Vector3.new(2, 1, 2) | |
| 320 | seat_3.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 321 | seat_3.CFrame = CFrame.new(7.899, 5.3, -135.001)* CFrame.Angles(-6.5654114089764e-011, 1.5707963705063, 0) | |
| 322 | seat_3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 323 | ||
| 324 | seat_4 = Instance.new("Seat", mcarrier)
| |
| 325 | seat_4.Friction = 0.3 | |
| 326 | seat_4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 327 | seat_4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 328 | seat_4.TopSurface = Enum.SurfaceType.Smooth | |
| 329 | seat_4.FormFactor = Enum.FormFactor.Custom | |
| 330 | seat_4.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 331 | seat_4.BrickColor = BrickColor.new("Black")
| |
| 332 | seat_4.Size = Vector3.new(2, 1, 2) | |
| 333 | seat_4.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 334 | seat_4.CFrame = CFrame.new(7.899, 5.3, -119.001)* CFrame.Angles(-6.5654114089764e-011, 1.5707963705063, 0) | |
| 335 | seat_4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 336 | ||
| 337 | part_8 = Instance.new("Part", mcarrier)
| |
| 338 | part_8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 339 | part_8.TopSurface = Enum.SurfaceType.Smooth | |
| 340 | part_8.Size = Vector3.new(2, 4.8, 1) | |
| 341 | part_8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 342 | part_8.CFrame = CFrame.new(9.399, 7.2, -117.001)* CFrame.Angles(-6.5666728998881e-011, 1.5707963705063, 0) | |
| 343 | part_8.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 344 | part_8.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 345 | part_8.BrickColor = BrickColor.new("Black")
| |
| 346 | part_8.Friction = 0.3 | |
| 347 | part_8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 348 | ||
| 349 | part_9 = Instance.new("Part", mcarrier)
| |
| 350 | part_9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 351 | part_9.TopSurface = Enum.SurfaceType.Smooth | |
| 352 | part_9.Size = Vector3.new(2, 4.8, 1) | |
| 353 | part_9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 354 | part_9.CFrame = CFrame.new(9.399, 7.2, -113.001)* CFrame.Angles(-6.5666728998881e-011, 1.5707963705063, 0) | |
| 355 | part_9.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 356 | part_9.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 357 | part_9.BrickColor = BrickColor.new("Black")
| |
| 358 | part_9.Friction = 0.3 | |
| 359 | part_9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 360 | ||
| 361 | seat_5 = Instance.new("Seat", mcarrier)
| |
| 362 | seat_5.Friction = 0.3 | |
| 363 | seat_5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 364 | seat_5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 365 | seat_5.TopSurface = Enum.SurfaceType.Smooth | |
| 366 | seat_5.FormFactor = Enum.FormFactor.Custom | |
| 367 | seat_5.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 368 | seat_5.BrickColor = BrickColor.new("Black")
| |
| 369 | seat_5.Size = Vector3.new(2, 1, 2) | |
| 370 | seat_5.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 371 | seat_5.CFrame = CFrame.new(7.899, 5.3, -115.001)* CFrame.Angles(-6.5654114089764e-011, 1.5707963705063, 0) | |
| 372 | seat_5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 373 | ||
| 374 | seat_6 = Instance.new("Seat", mcarrier)
| |
| 375 | seat_6.Friction = 0.3 | |
| 376 | seat_6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 377 | seat_6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 378 | seat_6.TopSurface = Enum.SurfaceType.Smooth | |
| 379 | seat_6.FormFactor = Enum.FormFactor.Custom | |
| 380 | seat_6.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 381 | seat_6.BrickColor = BrickColor.new("Black")
| |
| 382 | seat_6.Size = Vector3.new(2, 1, 2) | |
| 383 | seat_6.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 384 | seat_6.CFrame = CFrame.new(7.899, 5.3, -129.001)* CFrame.Angles(-6.5654114089764e-011, 1.5707963705063, 0) | |
| 385 | seat_6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 386 | ||
| 387 | seat_7 = Instance.new("Seat", mcarrier)
| |
| 388 | seat_7.Friction = 0.3 | |
| 389 | seat_7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 390 | seat_7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 391 | seat_7.TopSurface = Enum.SurfaceType.Smooth | |
| 392 | seat_7.FormFactor = Enum.FormFactor.Custom | |
| 393 | seat_7.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 394 | seat_7.BrickColor = BrickColor.new("Black")
| |
| 395 | seat_7.Size = Vector3.new(2, 1, 2) | |
| 396 | seat_7.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 397 | seat_7.CFrame = CFrame.new(7.899, 5.3, -123.001)* CFrame.Angles(-6.5654114089764e-011, 1.5707963705063, 0) | |
| 398 | seat_7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 399 | ||
| 400 | part_10 = Instance.new("Part", mcarrier)
| |
| 401 | part_10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 402 | part_10.TopSurface = Enum.SurfaceType.Smooth | |
| 403 | part_10.Size = Vector3.new(2, 4.8, 1) | |
| 404 | part_10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 405 | part_10.CFrame = CFrame.new(9.399, 7.2, -119.001)* CFrame.Angles(-6.5666728998881e-011, 1.5707963705063, 0) | |
| 406 | part_10.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 407 | part_10.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 408 | part_10.BrickColor = BrickColor.new("Black")
| |
| 409 | part_10.Friction = 0.3 | |
| 410 | part_10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 411 | ||
| 412 | seat_8 = Instance.new("Seat", mcarrier)
| |
| 413 | seat_8.Friction = 0.3 | |
| 414 | seat_8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 415 | seat_8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 416 | seat_8.TopSurface = Enum.SurfaceType.Smooth | |
| 417 | seat_8.FormFactor = Enum.FormFactor.Custom | |
| 418 | seat_8.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 419 | seat_8.BrickColor = BrickColor.new("Black")
| |
| 420 | seat_8.Size = Vector3.new(2, 1, 2) | |
| 421 | seat_8.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 422 | seat_8.CFrame = CFrame.new(7.899, 5.3, -131.001)* CFrame.Angles(-6.5654114089764e-011, 1.5707963705063, 0) | |
| 423 | seat_8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 424 | ||
| 425 | seat_9 = Instance.new("Seat", mcarrier)
| |
| 426 | seat_9.Friction = 0.3 | |
| 427 | seat_9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 428 | seat_9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 429 | seat_9.TopSurface = Enum.SurfaceType.Smooth | |
| 430 | seat_9.FormFactor = Enum.FormFactor.Custom | |
| 431 | seat_9.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 432 | seat_9.BrickColor = BrickColor.new("Black")
| |
| 433 | seat_9.Size = Vector3.new(2, 1, 2) | |
| 434 | seat_9.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 435 | seat_9.CFrame = CFrame.new(7.899, 5.3, -117.001)* CFrame.Angles(-6.5654114089764e-011, 1.5707963705063, 0) | |
| 436 | seat_9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 437 | ||
| 438 | seat_10 = Instance.new("Seat", mcarrier)
| |
| 439 | seat_10.Friction = 0.3 | |
| 440 | seat_10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 441 | seat_10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 442 | seat_10.TopSurface = Enum.SurfaceType.Smooth | |
| 443 | seat_10.FormFactor = Enum.FormFactor.Custom | |
| 444 | seat_10.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 445 | seat_10.BrickColor = BrickColor.new("Black")
| |
| 446 | seat_10.Size = Vector3.new(2, 1, 2) | |
| 447 | seat_10.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 448 | seat_10.CFrame = CFrame.new(7.899, 5.3, -125.001)* CFrame.Angles(-6.5654114089764e-011, 1.5707963705063, 0) | |
| 449 | seat_10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 450 | ||
| 451 | seat_11 = Instance.new("Seat", mcarrier)
| |
| 452 | seat_11.Friction = 0.3 | |
| 453 | seat_11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 454 | seat_11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 455 | seat_11.TopSurface = Enum.SurfaceType.Smooth | |
| 456 | seat_11.FormFactor = Enum.FormFactor.Custom | |
| 457 | seat_11.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 458 | seat_11.BrickColor = BrickColor.new("Black")
| |
| 459 | seat_11.Size = Vector3.new(2, 1, 2) | |
| 460 | seat_11.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 461 | seat_11.CFrame = CFrame.new(7.899, 5.3, -121.001)* CFrame.Angles(-6.5654114089764e-011, 1.5707963705063, 0) | |
| 462 | seat_11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 463 | ||
| 464 | seat_12 = Instance.new("Seat", mcarrier)
| |
| 465 | seat_12.Friction = 0.3 | |
| 466 | seat_12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 467 | seat_12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 468 | seat_12.TopSurface = Enum.SurfaceType.Smooth | |
| 469 | seat_12.FormFactor = Enum.FormFactor.Custom | |
| 470 | seat_12.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 471 | seat_12.BrickColor = BrickColor.new("Black")
| |
| 472 | seat_12.Size = Vector3.new(2, 1, 2) | |
| 473 | seat_12.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 474 | seat_12.CFrame = CFrame.new(7.899, 5.3, -113.001)* CFrame.Angles(-6.5654114089764e-011, 1.5707963705063, 0) | |
| 475 | seat_12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 476 | ||
| 477 | part_11 = Instance.new("Part", mcarrier)
| |
| 478 | part_11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 479 | part_11.TopSurface = Enum.SurfaceType.Smooth | |
| 480 | part_11.Size = Vector3.new(2, 4.8, 1) | |
| 481 | part_11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 482 | part_11.CFrame = CFrame.new(9.399, 7.2, -123.001)* CFrame.Angles(-6.5666728998881e-011, 1.5707963705063, 0) | |
| 483 | part_11.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 484 | part_11.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 485 | part_11.BrickColor = BrickColor.new("Black")
| |
| 486 | part_11.Friction = 0.3 | |
| 487 | part_11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 488 | ||
| 489 | part_12 = Instance.new("Part", mcarrier)
| |
| 490 | part_12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 491 | part_12.TopSurface = Enum.SurfaceType.Smooth | |
| 492 | part_12.Size = Vector3.new(2, 4.8, 1) | |
| 493 | part_12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 494 | part_12.CFrame = CFrame.new(9.399, 7.2, -121.001)* CFrame.Angles(-6.5666728998881e-011, 1.5707963705063, 0) | |
| 495 | part_12.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 496 | part_12.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 497 | part_12.BrickColor = BrickColor.new("Black")
| |
| 498 | part_12.Friction = 0.3 | |
| 499 | part_12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 500 | ||
| 501 | part_13 = Instance.new("Part", mcarrier)
| |
| 502 | part_13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 503 | part_13.TopSurface = Enum.SurfaceType.Smooth | |
| 504 | part_13.Size = Vector3.new(2, 4.8, 1) | |
| 505 | part_13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 506 | part_13.CFrame = CFrame.new(0.599, 7.2, -117.001)* CFrame.Angles(6.5666715121093e-011, -1.5707963705063, 0) | |
| 507 | part_13.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 508 | part_13.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 509 | part_13.BrickColor = BrickColor.new("Black")
| |
| 510 | part_13.Friction = 0.3 | |
| 511 | part_13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 512 | ||
| 513 | seat_13 = Instance.new("Seat", mcarrier)
| |
| 514 | seat_13.Friction = 0.3 | |
| 515 | seat_13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 516 | seat_13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 517 | seat_13.TopSurface = Enum.SurfaceType.Smooth | |
| 518 | seat_13.FormFactor = Enum.FormFactor.Custom | |
| 519 | seat_13.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 520 | seat_13.BrickColor = BrickColor.new("Black")
| |
| 521 | seat_13.Size = Vector3.new(2, 1, 2) | |
| 522 | seat_13.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 523 | seat_13.CFrame = CFrame.new(2.099, 5.3, -117.001)* CFrame.Angles(6.5654100211976e-011, -1.5707963705063, 0) | |
| 524 | seat_13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 525 | ||
| 526 | seat_14 = Instance.new("Seat", mcarrier)
| |
| 527 | seat_14.Friction = 0.3 | |
| 528 | seat_14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 529 | seat_14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 530 | seat_14.TopSurface = Enum.SurfaceType.Smooth | |
| 531 | seat_14.FormFactor = Enum.FormFactor.Custom | |
| 532 | seat_14.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 533 | seat_14.BrickColor = BrickColor.new("Black")
| |
| 534 | seat_14.Size = Vector3.new(2, 1, 2) | |
| 535 | seat_14.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 536 | seat_14.CFrame = CFrame.new(2.099, 5.3, -131.001)* CFrame.Angles(6.5654100211976e-011, -1.5707963705063, 0) | |
| 537 | seat_14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 538 | ||
| 539 | part_14 = Instance.new("Part", mcarrier)
| |
| 540 | part_14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 541 | part_14.TopSurface = Enum.SurfaceType.Smooth | |
| 542 | part_14.Size = Vector3.new(2, 4.8, 1) | |
| 543 | part_14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 544 | part_14.CFrame = CFrame.new(0.599, 7.2, -125.001)* CFrame.Angles(6.5666715121093e-011, -1.5707963705063, 0) | |
| 545 | part_14.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 546 | part_14.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 547 | part_14.BrickColor = BrickColor.new("Black")
| |
| 548 | part_14.Friction = 0.3 | |
| 549 | part_14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 550 | ||
| 551 | seat_15 = Instance.new("Seat", mcarrier)
| |
| 552 | seat_15.Friction = 0.3 | |
| 553 | seat_15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 554 | seat_15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 555 | seat_15.TopSurface = Enum.SurfaceType.Smooth | |
| 556 | seat_15.FormFactor = Enum.FormFactor.Custom | |
| 557 | seat_15.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 558 | seat_15.BrickColor = BrickColor.new("Black")
| |
| 559 | seat_15.Size = Vector3.new(2, 1, 2) | |
| 560 | seat_15.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 561 | seat_15.CFrame = CFrame.new(2.099, 5.3, -125.001)* CFrame.Angles(6.5654100211976e-011, -1.5707963705063, 0) | |
| 562 | seat_15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 563 | ||
| 564 | seat_16 = Instance.new("Seat", mcarrier)
| |
| 565 | seat_16.Friction = 0.3 | |
| 566 | seat_16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 567 | seat_16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 568 | seat_16.TopSurface = Enum.SurfaceType.Smooth | |
| 569 | seat_16.FormFactor = Enum.FormFactor.Custom | |
| 570 | seat_16.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 571 | seat_16.BrickColor = BrickColor.new("Black")
| |
| 572 | seat_16.Size = Vector3.new(2, 1, 2) | |
| 573 | seat_16.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 574 | seat_16.CFrame = CFrame.new(2.099, 5.3, -133.001)* CFrame.Angles(6.5654100211976e-011, -1.5707963705063, 0) | |
| 575 | seat_16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 576 | ||
| 577 | part_15 = Instance.new("Part", mcarrier)
| |
| 578 | part_15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 579 | part_15.TopSurface = Enum.SurfaceType.Smooth | |
| 580 | part_15.Size = Vector3.new(2, 4.8, 1) | |
| 581 | part_15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 582 | part_15.CFrame = CFrame.new(0.599, 7.2, -133.001)* CFrame.Angles(6.5666715121093e-011, -1.5707963705063, 0) | |
| 583 | part_15.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 584 | part_15.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 585 | part_15.BrickColor = BrickColor.new("Black")
| |
| 586 | part_15.Friction = 0.3 | |
| 587 | part_15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 588 | ||
| 589 | seat_17 = Instance.new("Seat", mcarrier)
| |
| 590 | seat_17.Friction = 0.3 | |
| 591 | seat_17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 592 | seat_17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 593 | seat_17.TopSurface = Enum.SurfaceType.Smooth | |
| 594 | seat_17.FormFactor = Enum.FormFactor.Custom | |
| 595 | seat_17.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 596 | seat_17.BrickColor = BrickColor.new("Black")
| |
| 597 | seat_17.Size = Vector3.new(2, 1, 2) | |
| 598 | seat_17.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 599 | seat_17.CFrame = CFrame.new(2.099, 5.3, -129.001)* CFrame.Angles(6.5654100211976e-011, -1.5707963705063, 0) | |
| 600 | seat_17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 601 | ||
| 602 | part_16 = Instance.new("Part", mcarrier)
| |
| 603 | part_16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 604 | part_16.TopSurface = Enum.SurfaceType.Smooth | |
| 605 | part_16.Size = Vector3.new(2, 4.8, 1) | |
| 606 | part_16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 607 | part_16.CFrame = CFrame.new(0.599, 7.2, -127.001)* CFrame.Angles(6.5666715121093e-011, -1.5707963705063, 0) | |
| 608 | part_16.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 609 | part_16.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 610 | part_16.BrickColor = BrickColor.new("Black")
| |
| 611 | part_16.Friction = 0.3 | |
| 612 | part_16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 613 | ||
| 614 | part_17 = Instance.new("Part", mcarrier)
| |
| 615 | part_17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 616 | part_17.TopSurface = Enum.SurfaceType.Smooth | |
| 617 | part_17.Size = Vector3.new(2, 4.8, 1) | |
| 618 | part_17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 619 | part_17.CFrame = CFrame.new(0.599, 7.2, -135.001)* CFrame.Angles(6.5666715121093e-011, -1.5707963705063, 0) | |
| 620 | part_17.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 621 | part_17.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 622 | part_17.BrickColor = BrickColor.new("Black")
| |
| 623 | part_17.Friction = 0.3 | |
| 624 | part_17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 625 | ||
| 626 | seat_18 = Instance.new("Seat", mcarrier)
| |
| 627 | seat_18.Friction = 0.3 | |
| 628 | seat_18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 629 | seat_18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 630 | seat_18.TopSurface = Enum.SurfaceType.Smooth | |
| 631 | seat_18.FormFactor = Enum.FormFactor.Custom | |
| 632 | seat_18.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 633 | seat_18.BrickColor = BrickColor.new("Black")
| |
| 634 | seat_18.Size = Vector3.new(2, 1, 2) | |
| 635 | seat_18.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 636 | seat_18.CFrame = CFrame.new(2.099, 5.3, -135.001)* CFrame.Angles(6.5654100211976e-011, -1.5707963705063, 0) | |
| 637 | seat_18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 638 | ||
| 639 | part_18 = Instance.new("Part", mcarrier)
| |
| 640 | part_18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 641 | part_18.TopSurface = Enum.SurfaceType.Smooth | |
| 642 | part_18.Size = Vector3.new(2, 4.8, 1) | |
| 643 | part_18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 644 | part_18.CFrame = CFrame.new(0.599, 7.2, -129.001)* CFrame.Angles(6.5666715121093e-011, -1.5707963705063, 0) | |
| 645 | part_18.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 646 | part_18.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 647 | part_18.BrickColor = BrickColor.new("Black")
| |
| 648 | part_18.Friction = 0.3 | |
| 649 | part_18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 650 | ||
| 651 | part_19 = Instance.new("Part", mcarrier)
| |
| 652 | part_19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 653 | part_19.TopSurface = Enum.SurfaceType.Smooth | |
| 654 | part_19.Size = Vector3.new(2, 4.8, 1) | |
| 655 | part_19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 656 | part_19.CFrame = CFrame.new(0.599, 7.2, -131.001)* CFrame.Angles(6.5666715121093e-011, -1.5707963705063, 0) | |
| 657 | part_19.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 658 | part_19.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 659 | part_19.BrickColor = BrickColor.new("Black")
| |
| 660 | part_19.Friction = 0.3 | |
| 661 | part_19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 662 | ||
| 663 | seat_19 = Instance.new("Seat", mcarrier)
| |
| 664 | seat_19.Friction = 0.3 | |
| 665 | seat_19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 666 | seat_19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 667 | seat_19.TopSurface = Enum.SurfaceType.Smooth | |
| 668 | seat_19.FormFactor = Enum.FormFactor.Custom | |
| 669 | seat_19.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 670 | seat_19.BrickColor = BrickColor.new("Black")
| |
| 671 | seat_19.Size = Vector3.new(2, 1, 2) | |
| 672 | seat_19.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 673 | seat_19.CFrame = CFrame.new(2.099, 5.3, -127.001)* CFrame.Angles(6.5654100211976e-011, -1.5707963705063, 0) | |
| 674 | seat_19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 675 | ||
| 676 | seat_20 = Instance.new("Seat", mcarrier)
| |
| 677 | seat_20.Friction = 0.3 | |
| 678 | seat_20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 679 | seat_20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 680 | seat_20.TopSurface = Enum.SurfaceType.Smooth | |
| 681 | seat_20.FormFactor = Enum.FormFactor.Custom | |
| 682 | seat_20.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 683 | seat_20.BrickColor = BrickColor.new("Black")
| |
| 684 | seat_20.Size = Vector3.new(2, 1, 2) | |
| 685 | seat_20.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 686 | seat_20.CFrame = CFrame.new(2.099, 5.3, -119.001)* CFrame.Angles(6.5654100211976e-011, -1.5707963705063, 0) | |
| 687 | seat_20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 688 | ||
| 689 | part_20 = Instance.new("Part", mcarrier)
| |
| 690 | part_20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 691 | part_20.TopSurface = Enum.SurfaceType.Smooth | |
| 692 | part_20.Size = Vector3.new(2, 4.8, 1) | |
| 693 | part_20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 694 | part_20.CFrame = CFrame.new(0.599, 7.2, -115.001)* CFrame.Angles(6.5666715121093e-011, -1.5707963705063, 0) | |
| 695 | part_20.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 696 | part_20.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 697 | part_20.BrickColor = BrickColor.new("Black")
| |
| 698 | part_20.Friction = 0.3 | |
| 699 | part_20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 700 | ||
| 701 | seat_21 = Instance.new("Seat", mcarrier)
| |
| 702 | seat_21.Friction = 0.3 | |
| 703 | seat_21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 704 | seat_21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 705 | seat_21.TopSurface = Enum.SurfaceType.Smooth | |
| 706 | seat_21.FormFactor = Enum.FormFactor.Custom | |
| 707 | seat_21.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 708 | seat_21.BrickColor = BrickColor.new("Black")
| |
| 709 | seat_21.Size = Vector3.new(2, 1, 2) | |
| 710 | seat_21.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 711 | seat_21.CFrame = CFrame.new(2.099, 5.3, -115.001)* CFrame.Angles(6.5654100211976e-011, -1.5707963705063, 0) | |
| 712 | seat_21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 713 | ||
| 714 | part_21 = Instance.new("Part", mcarrier)
| |
| 715 | part_21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 716 | part_21.TopSurface = Enum.SurfaceType.Smooth | |
| 717 | part_21.Size = Vector3.new(2, 4.8, 1) | |
| 718 | part_21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 719 | part_21.CFrame = CFrame.new(0.599, 7.2, -119.001)* CFrame.Angles(6.5666715121093e-011, -1.5707963705063, 0) | |
| 720 | part_21.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 721 | part_21.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 722 | part_21.BrickColor = BrickColor.new("Black")
| |
| 723 | part_21.Friction = 0.3 | |
| 724 | part_21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 725 | ||
| 726 | seat_22 = Instance.new("Seat", mcarrier)
| |
| 727 | seat_22.Friction = 0.3 | |
| 728 | seat_22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 729 | seat_22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 730 | seat_22.TopSurface = Enum.SurfaceType.Smooth | |
| 731 | seat_22.FormFactor = Enum.FormFactor.Custom | |
| 732 | seat_22.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 733 | seat_22.BrickColor = BrickColor.new("Black")
| |
| 734 | seat_22.Size = Vector3.new(2, 1, 2) | |
| 735 | seat_22.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 736 | seat_22.CFrame = CFrame.new(2.099, 5.3, -121.001)* CFrame.Angles(6.5654100211976e-011, -1.5707963705063, 0) | |
| 737 | seat_22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 738 | ||
| 739 | seat_23 = Instance.new("Seat", mcarrier)
| |
| 740 | seat_23.Friction = 0.3 | |
| 741 | seat_23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 742 | seat_23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 743 | seat_23.TopSurface = Enum.SurfaceType.Smooth | |
| 744 | seat_23.FormFactor = Enum.FormFactor.Custom | |
| 745 | seat_23.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 746 | seat_23.BrickColor = BrickColor.new("Black")
| |
| 747 | seat_23.Size = Vector3.new(2, 1, 2) | |
| 748 | seat_23.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 749 | seat_23.CFrame = CFrame.new(2.099, 5.3, -123.001)* CFrame.Angles(6.5654100211976e-011, -1.5707963705063, 0) | |
| 750 | seat_23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 751 | ||
| 752 | part_22 = Instance.new("Part", mcarrier)
| |
| 753 | part_22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 754 | part_22.TopSurface = Enum.SurfaceType.Smooth | |
| 755 | part_22.Size = Vector3.new(2, 4.8, 1) | |
| 756 | part_22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 757 | part_22.CFrame = CFrame.new(0.599, 7.2, -123.001)* CFrame.Angles(6.5666715121093e-011, -1.5707963705063, 0) | |
| 758 | part_22.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 759 | part_22.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 760 | part_22.BrickColor = BrickColor.new("Black")
| |
| 761 | part_22.Friction = 0.3 | |
| 762 | part_22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 763 | ||
| 764 | part_23 = Instance.new("Part", mcarrier)
| |
| 765 | part_23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 766 | part_23.TopSurface = Enum.SurfaceType.Smooth | |
| 767 | part_23.Size = Vector3.new(2, 4.8, 1) | |
| 768 | part_23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 769 | part_23.CFrame = CFrame.new(0.599, 7.2, -121.001)* CFrame.Angles(6.5666715121093e-011, -1.5707963705063, 0) | |
| 770 | part_23.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 771 | part_23.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 772 | part_23.BrickColor = BrickColor.new("Black")
| |
| 773 | part_23.Friction = 0.3 | |
| 774 | part_23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 775 | ||
| 776 | propeller2pos = Instance.new("Part", mcarrier)
| |
| 777 | propeller2pos.FormFactor = Enum.FormFactor.Symmetric | |
| 778 | propeller2pos.CanCollide = false | |
| 779 | propeller2pos.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 780 | propeller2pos.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 781 | propeller2pos.Material = Enum.Material.SmoothPlastic | |
| 782 | propeller2pos.Size = Vector3.new(2, 2, 2) | |
| 783 | propeller2pos.Name = "propeller2pos" | |
| 784 | propeller2pos.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 785 | propeller2pos.CFrame = CFrame.new(-8.191, 5.092, -138.2)* CFrame.Angles(-5.0020066311163e-008, 1.5707963705063, 0) | |
| 786 | propeller2pos.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 787 | propeller2pos.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 788 | propeller2pos.BrickColor = BrickColor.new("Dark stone grey")
| |
| 789 | propeller2pos.Friction = 0.3 | |
| 790 | propeller2pos.Shape = Enum.PartType.Cylinder | |
| 791 | propeller2pos.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 792 | ||
| 793 | propeller3 = Instance.new("Model", mcarrier)
| |
| 794 | propeller3.Name = "propeller3" | |
| 795 | ||
| 796 | propellercenter = Instance.new("Part", propeller3)
| |
| 797 | propellercenter.FormFactor = Enum.FormFactor.Symmetric | |
| 798 | propellercenter.CanCollide = false | |
| 799 | propellercenter.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 800 | propellercenter.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 801 | propellercenter.Material = Enum.Material.SmoothPlastic | |
| 802 | propellercenter.Size = Vector3.new(2, 2, 2) | |
| 803 | propellercenter.Name = "propellercenter" | |
| 804 | propellercenter.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 805 | propellercenter.CFrame = CFrame.new(19.409, 5.315, -138.2)* CFrame.Angles(-5.0020066311163e-008, 1.5707963705063, 0) | |
| 806 | propellercenter.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 807 | propellercenter.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 808 | propellercenter.BrickColor = BrickColor.new("Dark stone grey")
| |
| 809 | propellercenter.Friction = 0.3 | |
| 810 | propellercenter.Shape = Enum.PartType.Cylinder | |
| 811 | propellercenter.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 812 | ||
| 813 | part_24 = Instance.new("Part", propeller3)
| |
| 814 | part_24.FormFactor = Enum.FormFactor.Plate | |
| 815 | part_24.CanCollide = false | |
| 816 | part_24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 817 | part_24.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 818 | part_24.Material = Enum.Material.SmoothPlastic | |
| 819 | part_24.Size = Vector3.new(2, 0.4, 5) | |
| 820 | part_24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 821 | part_24.CFrame = CFrame.new(20.909, 3.815, -138.6)* CFrame.Angles(-1.5707515478134, -0.76795387268066, -3.1415314674377) | |
| 822 | part_24.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 823 | part_24.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 824 | part_24.BrickColor = BrickColor.new("Dark stone grey")
| |
| 825 | part_24.Friction = 0.3 | |
| 826 | part_24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 827 | ||
| 828 | mesh = Instance.new("SpecialMesh", part_24)
| |
| 829 | mesh.MeshType = Enum.MeshType.Sphere | |
| 830 | ||
| 831 | part_25 = Instance.new("Part", propeller3)
| |
| 832 | part_25.FormFactor = Enum.FormFactor.Plate | |
| 833 | part_25.CanCollide = false | |
| 834 | part_25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 835 | part_25.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 836 | part_25.Material = Enum.Material.SmoothPlastic | |
| 837 | part_25.Size = Vector3.new(2, 0.4, 5) | |
| 838 | part_25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 839 | part_25.CFrame = CFrame.new(19.409, 7.815, -138.6)* CFrame.Angles(-1.5707963705063, 1.4532548497925e-008, -3.1415505409241) | |
| 840 | part_25.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 841 | part_25.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 842 | part_25.BrickColor = BrickColor.new("Dark stone grey")
| |
| 843 | part_25.Friction = 0.3 | |
| 844 | part_25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 845 | ||
| 846 | mesh_2 = Instance.new("SpecialMesh", part_25)
| |
| 847 | mesh_2.MeshType = Enum.MeshType.Sphere | |
| 848 | ||
| 849 | part_26 = Instance.new("Part", propeller3)
| |
| 850 | part_26.FormFactor = Enum.FormFactor.Plate | |
| 851 | part_26.CanCollide = false | |
| 852 | part_26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 853 | part_26.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 854 | part_26.Material = Enum.Material.SmoothPlastic | |
| 855 | part_26.Size = Vector3.new(2, 0.4, 5) | |
| 856 | part_26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 857 | part_26.CFrame = CFrame.new(17.409, 4.015, -138.6)* CFrame.Angles(-1.5708765983582, 1.0472055673599, -3.1415021419525) | |
| 858 | part_26.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 859 | part_26.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 860 | part_26.BrickColor = BrickColor.new("Dark stone grey")
| |
| 861 | part_26.Friction = 0.3 | |
| 862 | part_26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 863 | ||
| 864 | mesh_3 = Instance.new("SpecialMesh", part_26)
| |
| 865 | mesh_3.MeshType = Enum.MeshType.Sphere | |
| 866 | ||
| 867 | mainseat = Instance.new("Seat", mcarrier)
| |
| 868 | mainseat.Friction = 0.3 | |
| 869 | mainseat.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 870 | mainseat.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 871 | mainseat.TopSurface = Enum.SurfaceType.Smooth | |
| 872 | mainseat.FormFactor = Enum.FormFactor.Custom | |
| 873 | mainseat.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 874 | mainseat.BrickColor = BrickColor.new("Black")
| |
| 875 | mainseat.Size = Vector3.new(2, 1, 2) | |
| 876 | mainseat.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 877 | mainseat.CFrame = CFrame.new(1.599, 5.3, -162.501)* CFrame.Angles(1.5113250928511e-011, -2.9842770507375e-013, -7.5566228621704e-012) | |
| 878 | mainseat.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 879 | mainseat.Name = "mainseat" | |
| 880 | ||
| 881 | part_27 = Instance.new("Part", mcarrier)
| |
| 882 | part_27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 883 | part_27.TopSurface = Enum.SurfaceType.Smooth | |
| 884 | part_27.Size = Vector3.new(2, 4.8, 1) | |
| 885 | part_27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 886 | part_27.CFrame = CFrame.new(0.599, 7.2, -113.001)* CFrame.Angles(6.5666715121093e-011, -1.5707963705063, 0) | |
| 887 | part_27.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 888 | part_27.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 889 | part_27.BrickColor = BrickColor.new("Black")
| |
| 890 | part_27.Friction = 0.3 | |
| 891 | part_27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 892 | ||
| 893 | seat_24 = Instance.new("Seat", mcarrier)
| |
| 894 | seat_24.Friction = 0.3 | |
| 895 | seat_24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 896 | seat_24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 897 | seat_24.TopSurface = Enum.SurfaceType.Smooth | |
| 898 | seat_24.FormFactor = Enum.FormFactor.Custom | |
| 899 | seat_24.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 900 | seat_24.BrickColor = BrickColor.new("Black")
| |
| 901 | seat_24.Size = Vector3.new(2, 1, 2) | |
| 902 | seat_24.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 903 | seat_24.CFrame = CFrame.new(2.099, 5.3, -113.001)* CFrame.Angles(6.5654100211976e-011, -1.5707963705063, 0) | |
| 904 | seat_24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 905 | ||
| 906 | part_28 = Instance.new("Part", mcarrier)
| |
| 907 | part_28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 908 | part_28.TopSurface = Enum.SurfaceType.Smooth | |
| 909 | part_28.Size = Vector3.new(2, 4.8, 1) | |
| 910 | part_28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 911 | part_28.CFrame = CFrame.new(1.599, 7.2, -161.001)* CFrame.Angles(1.5125864102905e-011, -4.3711565922422e-008, -7.5585778955278e-012) | |
| 912 | part_28.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 913 | part_28.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 914 | part_28.BrickColor = BrickColor.new("Black")
| |
| 915 | part_28.Friction = 0.3 | |
| 916 | part_28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 917 | ||
| 918 | part_29 = Instance.new("Part", mcarrier)
| |
| 919 | part_29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 920 | part_29.TopSurface = Enum.SurfaceType.Smooth | |
| 921 | part_29.Size = Vector3.new(2, 4.8, 1) | |
| 922 | part_29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 923 | part_29.CFrame = CFrame.new(8.799, 7.2, -161.001)* CFrame.Angles(1.5125864102905e-011, -4.3711565922422e-008, -7.5585778955278e-012) | |
| 924 | part_29.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 925 | part_29.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 926 | part_29.BrickColor = BrickColor.new("Black")
| |
| 927 | part_29.Friction = 0.3 | |
| 928 | part_29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 929 | ||
| 930 | seat_25 = Instance.new("Seat", mcarrier)
| |
| 931 | seat_25.Friction = 0.3 | |
| 932 | seat_25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 933 | seat_25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 934 | seat_25.TopSurface = Enum.SurfaceType.Smooth | |
| 935 | seat_25.FormFactor = Enum.FormFactor.Custom | |
| 936 | seat_25.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 937 | seat_25.BrickColor = BrickColor.new("Black")
| |
| 938 | seat_25.Size = Vector3.new(2, 1, 2) | |
| 939 | seat_25.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 940 | seat_25.CFrame = CFrame.new(8.799, 5.3, -162.501)* CFrame.Angles(1.5113250928511e-011, -2.9842770507375e-013, -7.5566228621704e-012) | |
| 941 | seat_25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 942 | ||
| 943 | propeller4 = Instance.new("Model", mcarrier)
| |
| 944 | propeller4.Name = "propeller4" | |
| 945 | ||
| 946 | propellercenter_2 = Instance.new("Part", propeller4)
| |
| 947 | propellercenter_2.FormFactor = Enum.FormFactor.Symmetric | |
| 948 | propellercenter_2.CanCollide = false | |
| 949 | propellercenter_2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 950 | propellercenter_2.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 951 | propellercenter_2.Material = Enum.Material.SmoothPlastic | |
| 952 | propellercenter_2.Size = Vector3.new(2, 2, 2) | |
| 953 | propellercenter_2.Name = "propellercenter" | |
| 954 | propellercenter_2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 955 | propellercenter_2.CFrame = CFrame.new(26.309, 5.208, -136.2)* CFrame.Angles(-5.0020066311163e-008, 1.5707963705063, 0) | |
| 956 | propellercenter_2.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 957 | propellercenter_2.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 958 | propellercenter_2.BrickColor = BrickColor.new("Dark stone grey")
| |
| 959 | propellercenter_2.Friction = 0.3 | |
| 960 | propellercenter_2.Shape = Enum.PartType.Cylinder | |
| 961 | propellercenter_2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 962 | ||
| 963 | part_30 = Instance.new("Part", propeller4)
| |
| 964 | part_30.FormFactor = Enum.FormFactor.Plate | |
| 965 | part_30.CanCollide = false | |
| 966 | part_30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 967 | part_30.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 968 | part_30.Material = Enum.Material.SmoothPlastic | |
| 969 | part_30.Size = Vector3.new(2, 0.4, 5) | |
| 970 | part_30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 971 | part_30.CFrame = CFrame.new(27.809, 3.708, -136.6)* CFrame.Angles(-1.5707515478134, -0.76795387268066, -3.1415314674377) | |
| 972 | part_30.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 973 | part_30.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 974 | part_30.BrickColor = BrickColor.new("Dark stone grey")
| |
| 975 | part_30.Friction = 0.3 | |
| 976 | part_30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 977 | ||
| 978 | mesh_4 = Instance.new("SpecialMesh", part_30)
| |
| 979 | mesh_4.MeshType = Enum.MeshType.Sphere | |
| 980 | ||
| 981 | part_31 = Instance.new("Part", propeller4)
| |
| 982 | part_31.FormFactor = Enum.FormFactor.Plate | |
| 983 | part_31.CanCollide = false | |
| 984 | part_31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 985 | part_31.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 986 | part_31.Material = Enum.Material.SmoothPlastic | |
| 987 | part_31.Size = Vector3.new(2, 0.4, 5) | |
| 988 | part_31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 989 | part_31.CFrame = CFrame.new(26.309, 7.708, -136.6)* CFrame.Angles(-1.5707963705063, 1.4532548497925e-008, -3.1415505409241) | |
| 990 | part_31.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 991 | part_31.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 992 | part_31.BrickColor = BrickColor.new("Dark stone grey")
| |
| 993 | part_31.Friction = 0.3 | |
| 994 | part_31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 995 | ||
| 996 | mesh_5 = Instance.new("SpecialMesh", part_31)
| |
| 997 | mesh_5.MeshType = Enum.MeshType.Sphere | |
| 998 | ||
| 999 | part_32 = Instance.new("Part", propeller4)
| |
| 1000 | part_32.FormFactor = Enum.FormFactor.Plate | |
| 1001 | part_32.CanCollide = false | |
| 1002 | part_32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1003 | part_32.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1004 | part_32.Material = Enum.Material.SmoothPlastic | |
| 1005 | part_32.Size = Vector3.new(2, 0.4, 5) | |
| 1006 | part_32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1007 | part_32.CFrame = CFrame.new(24.309, 3.908, -136.6)* CFrame.Angles(-1.5708765983582, 1.0472055673599, -3.1415021419525) | |
| 1008 | part_32.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1009 | part_32.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1010 | part_32.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1011 | part_32.Friction = 0.3 | |
| 1012 | part_32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1013 | ||
| 1014 | mesh_6 = Instance.new("SpecialMesh", part_32)
| |
| 1015 | mesh_6.MeshType = Enum.MeshType.Sphere | |
| 1016 | ||
| 1017 | propeller1pos = Instance.new("Part", mcarrier)
| |
| 1018 | propeller1pos.FormFactor = Enum.FormFactor.Symmetric | |
| 1019 | propeller1pos.CanCollide = false | |
| 1020 | propeller1pos.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1021 | propeller1pos.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1022 | propeller1pos.Material = Enum.Material.SmoothPlastic | |
| 1023 | propeller1pos.Size = Vector3.new(2, 2, 2) | |
| 1024 | propeller1pos.Name = "propeller1pos" | |
| 1025 | propeller1pos.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1026 | propeller1pos.CFrame = CFrame.new(-16.191, 5.092, -136.5)* CFrame.Angles(-3.7818981724058e-008, 1.5707963705063, 0) | |
| 1027 | propeller1pos.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1028 | propeller1pos.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1029 | propeller1pos.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1030 | propeller1pos.Friction = 0.3 | |
| 1031 | propeller1pos.Shape = Enum.PartType.Cylinder | |
| 1032 | propeller1pos.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1033 | ||
| 1034 | propeller4pos = Instance.new("Part", mcarrier)
| |
| 1035 | propeller4pos.FormFactor = Enum.FormFactor.Symmetric | |
| 1036 | propeller4pos.CanCollide = false | |
| 1037 | propeller4pos.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1038 | propeller4pos.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1039 | propeller4pos.Material = Enum.Material.SmoothPlastic | |
| 1040 | propeller4pos.Size = Vector3.new(2, 2, 2) | |
| 1041 | propeller4pos.Name = "propeller4pos" | |
| 1042 | propeller4pos.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1043 | propeller4pos.CFrame = CFrame.new(26.309, 5.208, -136.2)* CFrame.Angles(-5.0020066311163e-008, 1.5707963705063, 0) | |
| 1044 | propeller4pos.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1045 | propeller4pos.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1046 | propeller4pos.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1047 | propeller4pos.Friction = 0.3 | |
| 1048 | propeller4pos.Shape = Enum.PartType.Cylinder | |
| 1049 | propeller4pos.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1050 | ||
| 1051 | propeller2 = Instance.new("Model", mcarrier)
| |
| 1052 | propeller2.Name = "propeller2" | |
| 1053 | ||
| 1054 | propellercenter_3 = Instance.new("Part", propeller2)
| |
| 1055 | propellercenter_3.FormFactor = Enum.FormFactor.Symmetric | |
| 1056 | propellercenter_3.CanCollide = false | |
| 1057 | propellercenter_3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1058 | propellercenter_3.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1059 | propellercenter_3.Material = Enum.Material.SmoothPlastic | |
| 1060 | propellercenter_3.Size = Vector3.new(2, 2, 2) | |
| 1061 | propellercenter_3.Name = "propellercenter" | |
| 1062 | propellercenter_3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1063 | propellercenter_3.CFrame = CFrame.new(-8.291, 5.093, -138.2)* CFrame.Angles(-5.0020066311163e-008, 1.5707963705063, 0) | |
| 1064 | propellercenter_3.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1065 | propellercenter_3.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1066 | propellercenter_3.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1067 | propellercenter_3.Friction = 0.3 | |
| 1068 | propellercenter_3.Shape = Enum.PartType.Cylinder | |
| 1069 | propellercenter_3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1070 | ||
| 1071 | part_33 = Instance.new("Part", propeller2)
| |
| 1072 | part_33.FormFactor = Enum.FormFactor.Plate | |
| 1073 | part_33.CanCollide = false | |
| 1074 | part_33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1075 | part_33.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1076 | part_33.Material = Enum.Material.SmoothPlastic | |
| 1077 | part_33.Size = Vector3.new(2, 0.4, 5) | |
| 1078 | part_33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1079 | part_33.CFrame = CFrame.new(-6.791, 3.593, -138.6)* CFrame.Angles(-1.5707515478134, -0.76795387268066, -3.1415314674377) | |
| 1080 | part_33.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1081 | part_33.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1082 | part_33.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1083 | part_33.Friction = 0.3 | |
| 1084 | part_33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1085 | ||
| 1086 | mesh_7 = Instance.new("SpecialMesh", part_33)
| |
| 1087 | mesh_7.MeshType = Enum.MeshType.Sphere | |
| 1088 | ||
| 1089 | part_34 = Instance.new("Part", propeller2)
| |
| 1090 | part_34.FormFactor = Enum.FormFactor.Plate | |
| 1091 | part_34.CanCollide = false | |
| 1092 | part_34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1093 | part_34.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1094 | part_34.Material = Enum.Material.SmoothPlastic | |
| 1095 | part_34.Size = Vector3.new(2, 0.4, 5) | |
| 1096 | part_34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1097 | part_34.CFrame = CFrame.new(-8.291, 7.593, -138.6)* CFrame.Angles(-1.5707963705063, 1.4532548497925e-008, -3.1415505409241) | |
| 1098 | part_34.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1099 | part_34.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1100 | part_34.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1101 | part_34.Friction = 0.3 | |
| 1102 | part_34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1103 | ||
| 1104 | mesh_8 = Instance.new("SpecialMesh", part_34)
| |
| 1105 | mesh_8.MeshType = Enum.MeshType.Sphere | |
| 1106 | ||
| 1107 | part_35 = Instance.new("Part", propeller2)
| |
| 1108 | part_35.FormFactor = Enum.FormFactor.Plate | |
| 1109 | part_35.CanCollide = false | |
| 1110 | part_35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1111 | part_35.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1112 | part_35.Material = Enum.Material.SmoothPlastic | |
| 1113 | part_35.Size = Vector3.new(2, 0.4, 5) | |
| 1114 | part_35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1115 | part_35.CFrame = CFrame.new(-10.291, 3.793, -138.6)* CFrame.Angles(-1.5708765983582, 1.0472055673599, -3.1415021419525) | |
| 1116 | part_35.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1117 | part_35.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1118 | part_35.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1119 | part_35.Friction = 0.3 | |
| 1120 | part_35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1121 | ||
| 1122 | mesh_9 = Instance.new("SpecialMesh", part_35)
| |
| 1123 | mesh_9.MeshType = Enum.MeshType.Sphere | |
| 1124 | ||
| 1125 | troopdooropen = Instance.new("Part", mcarrier)
| |
| 1126 | troopdooropen.FormFactor = Enum.FormFactor.Custom | |
| 1127 | troopdooropen.CanCollide = true | |
| 1128 | troopdooropen.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1129 | troopdooropen.Transparency = 0 | |
| 1130 | troopdooropen.TopSurface = Enum.SurfaceType.Smooth | |
| 1131 | troopdooropen.Material = Enum.Material.SmoothPlastic | |
| 1132 | troopdooropen.Size = Vector3.new(12, 8.4, 1) | |
| 1133 | troopdooropen.Name = "troopdooropen" | |
| 1134 | troopdooropen.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1135 | troopdooropen.CFrame = CFrame.new(5, 3.4, -89.1)* CFrame.Angles(1.7976890802383, 0, -0) | |
| 1136 | troopdooropen.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1137 | troopdooropen.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1138 | troopdooropen.BrickColor = BrickColor.new("Buttermilk")
| |
| 1139 | troopdooropen.Friction = 0.3 | |
| 1140 | troopdooropen.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1141 | ||
| 1142 | mesh_10 = Instance.new("SpecialMesh", troopdooropen)
| |
| 1143 | mesh_10.MeshType = Enum.MeshType.Wedge | |
| 1144 | ||
| 1145 | propeller3pos = Instance.new("Part", mcarrier)
| |
| 1146 | propeller3pos.FormFactor = Enum.FormFactor.Symmetric | |
| 1147 | propeller3pos.CanCollide = false | |
| 1148 | propeller3pos.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1149 | propeller3pos.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1150 | propeller3pos.Material = Enum.Material.SmoothPlastic | |
| 1151 | propeller3pos.Size = Vector3.new(2, 2, 2) | |
| 1152 | propeller3pos.Name = "propeller3pos" | |
| 1153 | propeller3pos.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1154 | propeller3pos.CFrame = CFrame.new(19.409, 5.315, -138.2)* CFrame.Angles(-5.0020066311163e-008, 1.5707963705063, 0) | |
| 1155 | propeller3pos.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1156 | propeller3pos.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1157 | propeller3pos.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1158 | propeller3pos.Friction = 0.3 | |
| 1159 | propeller3pos.Shape = Enum.PartType.Cylinder | |
| 1160 | propeller3pos.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1161 | ||
| 1162 | propeller1 = Instance.new("Model", mcarrier)
| |
| 1163 | propeller1.Name = "propeller1" | |
| 1164 | ||
| 1165 | propellercenter_4 = Instance.new("Part", propeller1)
| |
| 1166 | propellercenter_4.FormFactor = Enum.FormFactor.Symmetric | |
| 1167 | propellercenter_4.CanCollide = false | |
| 1168 | propellercenter_4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1169 | propellercenter_4.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1170 | propellercenter_4.Material = Enum.Material.SmoothPlastic | |
| 1171 | propellercenter_4.Size = Vector3.new(2, 2, 2) | |
| 1172 | propellercenter_4.Name = "propellercenter" | |
| 1173 | propellercenter_4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1174 | propellercenter_4.CFrame = CFrame.new(-16.191, 5.093, -136.5)* CFrame.Angles(-3.7818981724058e-008, 1.5707963705063, 0) | |
| 1175 | propellercenter_4.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1176 | propellercenter_4.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1177 | propellercenter_4.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1178 | propellercenter_4.Friction = 0.3 | |
| 1179 | propellercenter_4.Shape = Enum.PartType.Cylinder | |
| 1180 | propellercenter_4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1181 | ||
| 1182 | part_36 = Instance.new("Part", propeller1)
| |
| 1183 | part_36.FormFactor = Enum.FormFactor.Plate | |
| 1184 | part_36.CanCollide = false | |
| 1185 | part_36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1186 | part_36.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1187 | part_36.Material = Enum.Material.SmoothPlastic | |
| 1188 | part_36.Size = Vector3.new(2, 0.4, 5) | |
| 1189 | part_36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1190 | part_36.CFrame = CFrame.new(-14.691, 3.593, -136.9)* CFrame.Angles(-1.5707515478134, -0.7679540514946, -3.1415314674377) | |
| 1191 | part_36.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1192 | part_36.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1193 | part_36.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1194 | part_36.Friction = 0.3 | |
| 1195 | part_36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1196 | ||
| 1197 | mesh_11 = Instance.new("SpecialMesh", part_36)
| |
| 1198 | mesh_11.MeshType = Enum.MeshType.Sphere | |
| 1199 | ||
| 1200 | part_37 = Instance.new("Part", propeller1)
| |
| 1201 | part_37.FormFactor = Enum.FormFactor.Plate | |
| 1202 | part_37.CanCollide = false | |
| 1203 | part_37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1204 | part_37.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1205 | part_37.Material = Enum.Material.SmoothPlastic | |
| 1206 | part_37.Size = Vector3.new(2, 0.4, 5) | |
| 1207 | part_37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1208 | part_37.CFrame = CFrame.new(-16.191, 7.593, -136.9)* CFrame.Angles(-1.5707963705063, -2.336129654168e-007, -3.1415505409241) | |
| 1209 | part_37.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1210 | part_37.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1211 | part_37.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1212 | part_37.Friction = 0.3 | |
| 1213 | part_37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1214 | ||
| 1215 | mesh_12 = Instance.new("SpecialMesh", part_37)
| |
| 1216 | mesh_12.MeshType = Enum.MeshType.Sphere | |
| 1217 | ||
| 1218 | part_38 = Instance.new("Part", propeller1)
| |
| 1219 | part_38.FormFactor = Enum.FormFactor.Plate | |
| 1220 | part_38.CanCollide = false | |
| 1221 | part_38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1222 | part_38.TopSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1223 | part_38.Material = Enum.Material.SmoothPlastic | |
| 1224 | part_38.Size = Vector3.new(2, 0.4, 5) | |
| 1225 | part_38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1226 | part_38.CFrame = CFrame.new(-18.191, 3.793, -136.9)* CFrame.Angles(-1.5708764791489, 1.0472053289413, -3.1415021419525) | |
| 1227 | part_38.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1228 | part_38.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1229 | part_38.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1230 | part_38.Friction = 0.3 | |
| 1231 | part_38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1232 | ||
| 1233 | mesh_13 = Instance.new("SpecialMesh", part_38)
| |
| 1234 | mesh_13.MeshType = Enum.MeshType.Sphere | |
| 1235 | ||
| 1236 | part_39 = Instance.new("Part", mcarrier)
| |
| 1237 | part_39.FormFactor = Enum.FormFactor.Plate | |
| 1238 | part_39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1239 | part_39.TopSurface = Enum.SurfaceType.Smooth | |
| 1240 | part_39.Material = Enum.Material.SmoothPlastic | |
| 1241 | part_39.Size = Vector3.new(3, 0.8, 2) | |
| 1242 | part_39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1243 | part_39.CFrame = CFrame.new(32.4, 1.2, -124.5)* CFrame.Angles(-1.5707963705063, 0, -1.5707963705063) | |
| 1244 | part_39.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1245 | part_39.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1246 | part_39.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1247 | part_39.Friction = 0.3 | |
| 1248 | part_39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1249 | part_39.Name = "Wheel1" | |
| 1250 | ||
| 1251 | mesh_14 = Instance.new("CylinderMesh", part_39)
| |
| 1252 | ||
| 1253 | part_40 = Instance.new("Part", mcarrier)
| |
| 1254 | part_40.FormFactor = Enum.FormFactor.Plate | |
| 1255 | part_40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1256 | part_40.TopSurface = Enum.SurfaceType.Smooth | |
| 1257 | part_40.Material = Enum.Material.SmoothPlastic | |
| 1258 | part_40.Size = Vector3.new(3, 0.8, 2) | |
| 1259 | part_40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1260 | part_40.CFrame = CFrame.new(-22.6, 1.2, -124.5)* CFrame.Angles(-1.5707963705063, 0, -1.5707963705063) | |
| 1261 | part_40.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1262 | part_40.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1263 | part_40.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1264 | part_40.Friction = 0.3 | |
| 1265 | part_40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1266 | part_40.Name = "Wheel2" | |
| 1267 | ||
| 1268 | mesh_15 = Instance.new("CylinderMesh", part_40)
| |
| 1269 | ||
| 1270 | part_41 = Instance.new("Part", mcarrier)
| |
| 1271 | part_41.FormFactor = Enum.FormFactor.Plate | |
| 1272 | part_41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1273 | part_41.TopSurface = Enum.SurfaceType.Smooth | |
| 1274 | part_41.Material = Enum.Material.SmoothPlastic | |
| 1275 | part_41.Size = Vector3.new(6, 2, 2) | |
| 1276 | part_41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1277 | part_41.CFrame = CFrame.new(5, 7, -167)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126) | |
| 1278 | part_41.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1279 | part_41.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1280 | part_41.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1281 | part_41.Friction = 0.3 | |
| 1282 | part_41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1283 | ||
| 1284 | mesh_16 = Instance.new("SpecialMesh", part_41)
| |
| 1285 | mesh_16.MeshType = Enum.MeshType.Wedge | |
| 1286 | ||
| 1287 | part_42 = Instance.new("Part", mcarrier)
| |
| 1288 | part_42.FormFactor = Enum.FormFactor.Plate | |
| 1289 | part_42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1290 | part_42.TopSurface = Enum.SurfaceType.Smooth | |
| 1291 | part_42.Material = Enum.Material.SmoothPlastic | |
| 1292 | part_42.Size = Vector3.new(3, 0.8, 2) | |
| 1293 | part_42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1294 | part_42.CFrame = CFrame.new(32.4, 1.2, -128.5)* CFrame.Angles(-1.5707963705063, 0, -1.5707963705063) | |
| 1295 | part_42.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1296 | part_42.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1297 | part_42.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1298 | part_42.Friction = 0.3 | |
| 1299 | part_42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1300 | part_42.Name = "Wheel3" | |
| 1301 | ||
| 1302 | mesh_17 = Instance.new("CylinderMesh", part_42)
| |
| 1303 | ||
| 1304 | part_43 = Instance.new("Part", mcarrier)
| |
| 1305 | part_43.FormFactor = Enum.FormFactor.Plate | |
| 1306 | part_43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1307 | part_43.TopSurface = Enum.SurfaceType.Smooth | |
| 1308 | part_43.Material = Enum.Material.SmoothPlastic | |
| 1309 | part_43.Size = Vector3.new(2, 2.8, 2) | |
| 1310 | part_43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1311 | part_43.CFrame = CFrame.new(1, 6.2, -167)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126) | |
| 1312 | part_43.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1313 | part_43.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1314 | part_43.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1315 | part_43.Friction = 0.3 | |
| 1316 | part_43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1317 | ||
| 1318 | mesh_18 = Instance.new("BlockMesh", part_43)
| |
| 1319 | ||
| 1320 | part_44 = Instance.new("Part", mcarrier)
| |
| 1321 | part_44.FormFactor = Enum.FormFactor.Plate | |
| 1322 | part_44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1323 | part_44.TopSurface = Enum.SurfaceType.Smooth | |
| 1324 | part_44.Material = Enum.Material.SmoothPlastic | |
| 1325 | part_44.Size = Vector3.new(1, 4.4, 3) | |
| 1326 | part_44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1327 | part_44.CFrame = CFrame.new(8.5, 10.2, -155.5)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1328 | part_44.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1329 | part_44.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1330 | part_44.BrickColor = BrickColor.new("Buttermilk")
| |
| 1331 | part_44.Friction = 0.3 | |
| 1332 | part_44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1333 | ||
| 1334 | mesh_19 = Instance.new("BlockMesh", part_44)
| |
| 1335 | ||
| 1336 | part_45 = Instance.new("Part", mcarrier)
| |
| 1337 | part_45.FormFactor = Enum.FormFactor.Plate | |
| 1338 | part_45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1339 | part_45.Transparency = 0.5 | |
| 1340 | part_45.TopSurface = Enum.SurfaceType.Smooth | |
| 1341 | part_45.Material = Enum.Material.SmoothPlastic | |
| 1342 | part_45.Size = Vector3.new(4, 3.2, 1) | |
| 1343 | part_45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1344 | part_45.CFrame = CFrame.new(-0.5, 9.6, -164)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1345 | part_45.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1346 | part_45.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1347 | part_45.BrickColor = BrickColor.new("Buttermilk")
| |
| 1348 | part_45.Friction = 0.3 | |
| 1349 | part_45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1350 | ||
| 1351 | mesh_20 = Instance.new("BlockMesh", part_45)
| |
| 1352 | ||
| 1353 | part_46 = Instance.new("Part", mcarrier)
| |
| 1354 | part_46.FormFactor = Enum.FormFactor.Plate | |
| 1355 | part_46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1356 | part_46.Transparency = 0.5 | |
| 1357 | part_46.TopSurface = Enum.SurfaceType.Smooth | |
| 1358 | part_46.Material = Enum.Material.SmoothPlastic | |
| 1359 | part_46.Size = Vector3.new(4, 3.2, 1) | |
| 1360 | part_46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1361 | part_46.CFrame = CFrame.new(10.5, 9.6, -164)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1362 | part_46.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1363 | part_46.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1364 | part_46.BrickColor = BrickColor.new("Buttermilk")
| |
| 1365 | part_46.Friction = 0.3 | |
| 1366 | part_46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1367 | ||
| 1368 | mesh_21 = Instance.new("BlockMesh", part_46)
| |
| 1369 | ||
| 1370 | part_47 = Instance.new("Part", mcarrier)
| |
| 1371 | part_47.FormFactor = Enum.FormFactor.Plate | |
| 1372 | part_47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1373 | part_47.TopSurface = Enum.SurfaceType.Smooth | |
| 1374 | part_47.Material = Enum.Material.SmoothPlastic | |
| 1375 | part_47.Size = Vector3.new(4, 1.2, 1) | |
| 1376 | part_47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1377 | part_47.CFrame = CFrame.new(10.5, 11.8, -164)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1378 | part_47.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1379 | part_47.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1380 | part_47.BrickColor = BrickColor.new("Buttermilk")
| |
| 1381 | part_47.Friction = 0.3 | |
| 1382 | part_47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1383 | ||
| 1384 | mesh_22 = Instance.new("BlockMesh", part_47)
| |
| 1385 | ||
| 1386 | part_48 = Instance.new("Part", mcarrier)
| |
| 1387 | part_48.FormFactor = Enum.FormFactor.Plate | |
| 1388 | part_48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1389 | part_48.TopSurface = Enum.SurfaceType.Smooth | |
| 1390 | part_48.Material = Enum.Material.SmoothPlastic | |
| 1391 | part_48.Size = Vector3.new(7, 4.4, 1) | |
| 1392 | part_48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1393 | part_48.CFrame = CFrame.new(10.5, 10.2, -158.5)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1394 | part_48.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1395 | part_48.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1396 | part_48.BrickColor = BrickColor.new("Buttermilk")
| |
| 1397 | part_48.Friction = 0.3 | |
| 1398 | part_48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1399 | ||
| 1400 | mesh_23 = Instance.new("BlockMesh", part_48)
| |
| 1401 | ||
| 1402 | part_49 = Instance.new("Part", mcarrier)
| |
| 1403 | part_49.FormFactor = Enum.FormFactor.Plate | |
| 1404 | part_49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1405 | part_49.TopSurface = Enum.SurfaceType.Smooth | |
| 1406 | part_49.Material = Enum.Material.SmoothPlastic | |
| 1407 | part_49.Size = Vector3.new(7, 4.4, 1) | |
| 1408 | part_49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1409 | part_49.CFrame = CFrame.new(-0.5, 10.2, -158.5)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1410 | part_49.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1411 | part_49.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1412 | part_49.BrickColor = BrickColor.new("Buttermilk")
| |
| 1413 | part_49.Friction = 0.3 | |
| 1414 | part_49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1415 | ||
| 1416 | mesh_24 = Instance.new("BlockMesh", part_49)
| |
| 1417 | ||
| 1418 | part_50 = Instance.new("Part", mcarrier)
| |
| 1419 | part_50.FormFactor = Enum.FormFactor.Plate | |
| 1420 | part_50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1421 | part_50.TopSurface = Enum.SurfaceType.Smooth | |
| 1422 | part_50.Material = Enum.Material.SmoothPlastic | |
| 1423 | part_50.Size = Vector3.new(4, 1.2, 1) | |
| 1424 | part_50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1425 | part_50.CFrame = CFrame.new(-0.5, 11.8, -164)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1426 | part_50.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1427 | part_50.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1428 | part_50.BrickColor = BrickColor.new("Buttermilk")
| |
| 1429 | part_50.Friction = 0.3 | |
| 1430 | part_50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1431 | ||
| 1432 | mesh_25 = Instance.new("BlockMesh", part_50)
| |
| 1433 | ||
| 1434 | part_51 = Instance.new("Part", mcarrier)
| |
| 1435 | part_51.FormFactor = Enum.FormFactor.Plate | |
| 1436 | part_51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1437 | part_51.TopSurface = Enum.SurfaceType.Smooth | |
| 1438 | part_51.Material = Enum.Material.SmoothPlastic | |
| 1439 | part_51.Size = Vector3.new(1, 4.4, 3) | |
| 1440 | part_51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1441 | part_51.CFrame = CFrame.new(1.5, 10.2, -155.5)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1442 | part_51.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1443 | part_51.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1444 | part_51.BrickColor = BrickColor.new("Buttermilk")
| |
| 1445 | part_51.Friction = 0.3 | |
| 1446 | part_51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1447 | ||
| 1448 | mesh_26 = Instance.new("BlockMesh", part_51)
| |
| 1449 | ||
| 1450 | part_52 = Instance.new("Part", mcarrier)
| |
| 1451 | part_52.FormFactor = Enum.FormFactor.Plate | |
| 1452 | part_52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1453 | part_52.Transparency = 0.5 | |
| 1454 | part_52.TopSurface = Enum.SurfaceType.Smooth | |
| 1455 | part_52.Material = Enum.Material.SmoothPlastic | |
| 1456 | part_52.Size = Vector3.new(10, 1.6, 2) | |
| 1457 | part_52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1458 | part_52.CFrame = CFrame.new(5, 12, -167) | |
| 1459 | part_52.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1460 | part_52.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1461 | part_52.BrickColor = BrickColor.new("Buttermilk")
| |
| 1462 | part_52.Friction = 0.3 | |
| 1463 | part_52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1464 | ||
| 1465 | mesh_27 = Instance.new("SpecialMesh", part_52)
| |
| 1466 | mesh_27.MeshType = Enum.MeshType.Wedge | |
| 1467 | ||
| 1468 | part_53 = Instance.new("Part", mcarrier)
| |
| 1469 | part_53.FormFactor = Enum.FormFactor.Plate | |
| 1470 | part_53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1471 | part_53.TopSurface = Enum.SurfaceType.Smooth | |
| 1472 | part_53.Material = Enum.Material.SmoothPlastic | |
| 1473 | part_53.Size = Vector3.new(12, 2, 2) | |
| 1474 | part_53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1475 | part_53.CFrame = CFrame.new(5, 5, -171)* CFrame.Angles(-1.5707963705063, 0, -0) | |
| 1476 | part_53.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1477 | part_53.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1478 | part_53.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1479 | part_53.Friction = 0.3 | |
| 1480 | part_53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1481 | part_53.Name = "crasherfront" | |
| 1482 | ||
| 1483 | mesh_28 = Instance.new("SpecialMesh", part_53)
| |
| 1484 | mesh_28.MeshType = Enum.MeshType.Wedge | |
| 1485 | ||
| 1486 | part_54 = Instance.new("Part", mcarrier)
| |
| 1487 | part_54.FormFactor = Enum.FormFactor.Plate | |
| 1488 | part_54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1489 | part_54.TopSurface = Enum.SurfaceType.Smooth | |
| 1490 | part_54.Material = Enum.Material.SmoothPlastic | |
| 1491 | part_54.Size = Vector3.new(1, 1.6, 2) | |
| 1492 | part_54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1493 | part_54.CFrame = CFrame.new(-0.5, 12, -167) | |
| 1494 | part_54.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1495 | part_54.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1496 | part_54.BrickColor = BrickColor.new("Buttermilk")
| |
| 1497 | part_54.Friction = 0.3 | |
| 1498 | part_54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1499 | ||
| 1500 | mesh_29 = Instance.new("SpecialMesh", part_54)
| |
| 1501 | mesh_29.MeshType = Enum.MeshType.Wedge | |
| 1502 | ||
| 1503 | part_55 = Instance.new("Part", mcarrier)
| |
| 1504 | part_55.FormFactor = Enum.FormFactor.Plate | |
| 1505 | part_55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1506 | part_55.TopSurface = Enum.SurfaceType.Smooth | |
| 1507 | part_55.Material = Enum.Material.SmoothPlastic | |
| 1508 | part_55.Size = Vector3.new(1, 1.6, 2) | |
| 1509 | part_55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1510 | part_55.CFrame = CFrame.new(10.5, 12, -167) | |
| 1511 | part_55.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1512 | part_55.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1513 | part_55.BrickColor = BrickColor.new("Buttermilk")
| |
| 1514 | part_55.Friction = 0.3 | |
| 1515 | part_55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1516 | ||
| 1517 | mesh_30 = Instance.new("SpecialMesh", part_55)
| |
| 1518 | mesh_30.MeshType = Enum.MeshType.Wedge | |
| 1519 | ||
| 1520 | part_56 = Instance.new("Part", mcarrier)
| |
| 1521 | part_56.FormFactor = Enum.FormFactor.Plate | |
| 1522 | part_56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1523 | part_56.TopSurface = Enum.SurfaceType.Smooth | |
| 1524 | part_56.Material = Enum.Material.SmoothPlastic | |
| 1525 | part_56.Size = Vector3.new(1, 3.2, 2) | |
| 1526 | part_56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1527 | part_56.CFrame = CFrame.new(-0.5, 9.6, -169) | |
| 1528 | part_56.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1529 | part_56.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1530 | part_56.BrickColor = BrickColor.new("Buttermilk")
| |
| 1531 | part_56.Friction = 0.3 | |
| 1532 | part_56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1533 | ||
| 1534 | mesh_31 = Instance.new("SpecialMesh", part_56)
| |
| 1535 | mesh_31.MeshType = Enum.MeshType.Wedge | |
| 1536 | ||
| 1537 | part_57 = Instance.new("Part", mcarrier)
| |
| 1538 | part_57.FormFactor = Enum.FormFactor.Plate | |
| 1539 | part_57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1540 | part_57.Transparency = 0.5 | |
| 1541 | part_57.TopSurface = Enum.SurfaceType.Smooth | |
| 1542 | part_57.Material = Enum.Material.SmoothPlastic | |
| 1543 | part_57.Size = Vector3.new(10, 3.2, 2) | |
| 1544 | part_57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1545 | part_57.CFrame = CFrame.new(5, 9.6, -169) | |
| 1546 | part_57.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1547 | part_57.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1548 | part_57.BrickColor = BrickColor.new("Buttermilk")
| |
| 1549 | part_57.Friction = 0.3 | |
| 1550 | part_57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1551 | ||
| 1552 | mesh_32 = Instance.new("SpecialMesh", part_57)
| |
| 1553 | mesh_32.MeshType = Enum.MeshType.Wedge | |
| 1554 | ||
| 1555 | part_58 = Instance.new("Part", mcarrier)
| |
| 1556 | part_58.FormFactor = Enum.FormFactor.Plate | |
| 1557 | part_58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1558 | part_58.TopSurface = Enum.SurfaceType.Smooth | |
| 1559 | part_58.Material = Enum.Material.SmoothPlastic | |
| 1560 | part_58.Size = Vector3.new(12, 2, 2) | |
| 1561 | part_58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1562 | part_58.CFrame = CFrame.new(5, 7, -171) | |
| 1563 | part_58.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1564 | part_58.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1565 | part_58.BrickColor = BrickColor.new("Buttermilk")
| |
| 1566 | part_58.Friction = 0.3 | |
| 1567 | part_58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1568 | ||
| 1569 | mesh_33 = Instance.new("SpecialMesh", part_58)
| |
| 1570 | mesh_33.MeshType = Enum.MeshType.Wedge | |
| 1571 | ||
| 1572 | part_59 = Instance.new("Part", mcarrier)
| |
| 1573 | part_59.FormFactor = Enum.FormFactor.Plate | |
| 1574 | part_59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1575 | part_59.TopSurface = Enum.SurfaceType.Smooth | |
| 1576 | part_59.Material = Enum.Material.SmoothPlastic | |
| 1577 | part_59.Size = Vector3.new(1, 3.2, 2) | |
| 1578 | part_59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1579 | part_59.CFrame = CFrame.new(10.5, 9.6, -169) | |
| 1580 | part_59.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1581 | part_59.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1582 | part_59.BrickColor = BrickColor.new("Buttermilk")
| |
| 1583 | part_59.Friction = 0.3 | |
| 1584 | part_59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1585 | ||
| 1586 | mesh_34 = Instance.new("SpecialMesh", part_59)
| |
| 1587 | mesh_34.MeshType = Enum.MeshType.Wedge | |
| 1588 | ||
| 1589 | part_60 = Instance.new("Part", mcarrier)
| |
| 1590 | part_60.FormFactor = Enum.FormFactor.Plate | |
| 1591 | part_60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1592 | part_60.TopSurface = Enum.SurfaceType.Smooth | |
| 1593 | part_60.Material = Enum.Material.SmoothPlastic | |
| 1594 | part_60.Size = Vector3.new(2, 3.2, 1) | |
| 1595 | part_60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1596 | part_60.CFrame = CFrame.new(10.5, 9.6, -167)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1597 | part_60.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1598 | part_60.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1599 | part_60.BrickColor = BrickColor.new("Buttermilk")
| |
| 1600 | part_60.Friction = 0.3 | |
| 1601 | part_60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1602 | ||
| 1603 | mesh_35 = Instance.new("BlockMesh", part_60)
| |
| 1604 | ||
| 1605 | part_61 = Instance.new("Part", mcarrier)
| |
| 1606 | part_61.FormFactor = Enum.FormFactor.Plate | |
| 1607 | part_61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1608 | part_61.TopSurface = Enum.SurfaceType.Smooth | |
| 1609 | part_61.Material = Enum.Material.SmoothPlastic | |
| 1610 | part_61.Size = Vector3.new(3, 3.6, 1) | |
| 1611 | part_61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1612 | part_61.CFrame = CFrame.new(10.5, 9.8, -142.5)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1613 | part_61.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1614 | part_61.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1615 | part_61.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1616 | part_61.Friction = 0.3 | |
| 1617 | part_61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1618 | ||
| 1619 | mesh_36 = Instance.new("BlockMesh", part_61)
| |
| 1620 | ||
| 1621 | part_62 = Instance.new("Part", mcarrier)
| |
| 1622 | part_62.FormFactor = Enum.FormFactor.Plate | |
| 1623 | part_62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1624 | part_62.TopSurface = Enum.SurfaceType.Smooth | |
| 1625 | part_62.Material = Enum.Material.SmoothPlastic | |
| 1626 | part_62.Size = Vector3.new(10, 0.8, 12) | |
| 1627 | part_62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1628 | part_62.CFrame = CFrame.new(5, 12.8, -160)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1629 | part_62.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1630 | part_62.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1631 | part_62.BrickColor = BrickColor.new("Buttermilk")
| |
| 1632 | part_62.Friction = 0.3 | |
| 1633 | part_62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1634 | ||
| 1635 | mesh_37 = Instance.new("BlockMesh", part_62)
| |
| 1636 | ||
| 1637 | part_63 = Instance.new("Part", mcarrier)
| |
| 1638 | part_63.FormFactor = Enum.FormFactor.Plate | |
| 1639 | part_63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1640 | part_63.TopSurface = Enum.SurfaceType.Smooth | |
| 1641 | part_63.Material = Enum.Material.SmoothPlastic | |
| 1642 | part_63.Size = Vector3.new(2, 3.2, 1) | |
| 1643 | part_63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1644 | part_63.CFrame = CFrame.new(-0.5, 9.6, -167)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1645 | part_63.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1646 | part_63.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1647 | part_63.BrickColor = BrickColor.new("Buttermilk")
| |
| 1648 | part_63.Friction = 0.3 | |
| 1649 | part_63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1650 | ||
| 1651 | mesh_38 = Instance.new("BlockMesh", part_63)
| |
| 1652 | ||
| 1653 | part_64 = Instance.new("Part", mcarrier)
| |
| 1654 | part_64.FormFactor = Enum.FormFactor.Plate | |
| 1655 | part_64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1656 | part_64.TopSurface = Enum.SurfaceType.Smooth | |
| 1657 | part_64.Material = Enum.Material.SmoothPlastic | |
| 1658 | part_64.Size = Vector3.new(5, 4.8, 1) | |
| 1659 | part_64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1660 | part_64.CFrame = CFrame.new(-0.5, 10.4, -152.5)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1661 | part_64.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1662 | part_64.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1663 | part_64.BrickColor = BrickColor.new("Buttermilk")
| |
| 1664 | part_64.Friction = 0.3 | |
| 1665 | part_64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1666 | ||
| 1667 | mesh_39 = Instance.new("BlockMesh", part_64)
| |
| 1668 | ||
| 1669 | part_65 = Instance.new("Part", mcarrier)
| |
| 1670 | part_65.FormFactor = Enum.FormFactor.Plate | |
| 1671 | part_65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1672 | part_65.TopSurface = Enum.SurfaceType.Smooth | |
| 1673 | part_65.Material = Enum.Material.SmoothPlastic | |
| 1674 | part_65.Size = Vector3.new(2, 3.6, 1) | |
| 1675 | part_65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1676 | part_65.CFrame = CFrame.new(10.5, 9.8, -145)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1677 | part_65.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1678 | part_65.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1679 | part_65.BrickColor = BrickColor.new("Buttermilk")
| |
| 1680 | part_65.Friction = 0.3 | |
| 1681 | part_65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1682 | ||
| 1683 | mesh_40 = Instance.new("BlockMesh", part_65)
| |
| 1684 | ||
| 1685 | part_66 = Instance.new("Part", mcarrier)
| |
| 1686 | part_66.FormFactor = Enum.FormFactor.Plate | |
| 1687 | part_66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1688 | part_66.TopSurface = Enum.SurfaceType.Smooth | |
| 1689 | part_66.Material = Enum.Material.SmoothPlastic | |
| 1690 | part_66.Size = Vector3.new(2, 3.6, 1) | |
| 1691 | part_66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1692 | part_66.CFrame = CFrame.new(10.5, 9.8, -140)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1693 | part_66.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1694 | part_66.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1695 | part_66.BrickColor = BrickColor.new("Buttermilk")
| |
| 1696 | part_66.Friction = 0.3 | |
| 1697 | part_66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1698 | ||
| 1699 | mesh_41 = Instance.new("BlockMesh", part_66)
| |
| 1700 | ||
| 1701 | part_67 = Instance.new("Part", mcarrier)
| |
| 1702 | part_67.FormFactor = Enum.FormFactor.Plate | |
| 1703 | part_67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1704 | part_67.TopSurface = Enum.SurfaceType.Smooth | |
| 1705 | part_67.Material = Enum.Material.SmoothPlastic | |
| 1706 | part_67.Size = Vector3.new(5, 4.8, 1) | |
| 1707 | part_67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1708 | part_67.CFrame = CFrame.new(10.5, 10.4, -152.5)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1709 | part_67.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1710 | part_67.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1711 | part_67.BrickColor = BrickColor.new("Buttermilk")
| |
| 1712 | part_67.Friction = 0.3 | |
| 1713 | part_67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1714 | ||
| 1715 | mesh_42 = Instance.new("BlockMesh", part_67)
| |
| 1716 | ||
| 1717 | part_68 = Instance.new("Part", mcarrier)
| |
| 1718 | part_68.FormFactor = Enum.FormFactor.Plate | |
| 1719 | part_68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1720 | part_68.TopSurface = Enum.SurfaceType.Smooth | |
| 1721 | part_68.Material = Enum.Material.SmoothPlastic | |
| 1722 | part_68.Size = Vector3.new(2, 3.6, 1) | |
| 1723 | part_68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1724 | part_68.CFrame = CFrame.new(10.5, 9.8, -135)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1725 | part_68.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1726 | part_68.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1727 | part_68.BrickColor = BrickColor.new("Buttermilk")
| |
| 1728 | part_68.Friction = 0.3 | |
| 1729 | part_68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1730 | ||
| 1731 | mesh_43 = Instance.new("BlockMesh", part_68)
| |
| 1732 | ||
| 1733 | part_69 = Instance.new("Part", mcarrier)
| |
| 1734 | part_69.FormFactor = Enum.FormFactor.Plate | |
| 1735 | part_69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1736 | part_69.TopSurface = Enum.SurfaceType.Smooth | |
| 1737 | part_69.Material = Enum.Material.SmoothPlastic | |
| 1738 | part_69.Size = Vector3.new(2, 3.6, 1) | |
| 1739 | part_69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1740 | part_69.CFrame = CFrame.new(-0.5, 9.8, -130)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1741 | part_69.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1742 | part_69.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1743 | part_69.BrickColor = BrickColor.new("Buttermilk")
| |
| 1744 | part_69.Friction = 0.3 | |
| 1745 | part_69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1746 | ||
| 1747 | mesh_44 = Instance.new("BlockMesh", part_69)
| |
| 1748 | ||
| 1749 | part_70 = Instance.new("Part", mcarrier)
| |
| 1750 | part_70.FormFactor = Enum.FormFactor.Plate | |
| 1751 | part_70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1752 | part_70.TopSurface = Enum.SurfaceType.Smooth | |
| 1753 | part_70.Material = Enum.Material.SmoothPlastic | |
| 1754 | part_70.Size = Vector3.new(4, 3.6, 1) | |
| 1755 | part_70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1756 | part_70.CFrame = CFrame.new(-0.5, 9.8, -114)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1757 | part_70.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1758 | part_70.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1759 | part_70.BrickColor = BrickColor.new("Buttermilk")
| |
| 1760 | part_70.Friction = 0.3 | |
| 1761 | part_70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1762 | ||
| 1763 | mesh_45 = Instance.new("BlockMesh", part_70)
| |
| 1764 | ||
| 1765 | part_71 = Instance.new("Part", mcarrier)
| |
| 1766 | part_71.FormFactor = Enum.FormFactor.Plate | |
| 1767 | part_71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1768 | part_71.TopSurface = Enum.SurfaceType.Smooth | |
| 1769 | part_71.Material = Enum.Material.SmoothPlastic | |
| 1770 | part_71.Size = Vector3.new(2, 3.6, 1) | |
| 1771 | part_71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1772 | part_71.CFrame = CFrame.new(10.5, 9.8, -130)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1773 | part_71.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1774 | part_71.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1775 | part_71.BrickColor = BrickColor.new("Buttermilk")
| |
| 1776 | part_71.Friction = 0.3 | |
| 1777 | part_71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1778 | ||
| 1779 | mesh_46 = Instance.new("BlockMesh", part_71)
| |
| 1780 | ||
| 1781 | part_72 = Instance.new("Part", mcarrier)
| |
| 1782 | part_72.FormFactor = Enum.FormFactor.Plate | |
| 1783 | part_72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1784 | part_72.TopSurface = Enum.SurfaceType.Smooth | |
| 1785 | part_72.Material = Enum.Material.SmoothPlastic | |
| 1786 | part_72.Size = Vector3.new(2, 3.6, 1) | |
| 1787 | part_72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1788 | part_72.CFrame = CFrame.new(10.5, 9.8, -125)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1789 | part_72.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1790 | part_72.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1791 | part_72.BrickColor = BrickColor.new("Buttermilk")
| |
| 1792 | part_72.Friction = 0.3 | |
| 1793 | part_72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1794 | ||
| 1795 | mesh_47 = Instance.new("BlockMesh", part_72)
| |
| 1796 | ||
| 1797 | part_73 = Instance.new("Part", mcarrier)
| |
| 1798 | part_73.FormFactor = Enum.FormFactor.Plate | |
| 1799 | part_73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1800 | part_73.TopSurface = Enum.SurfaceType.Smooth | |
| 1801 | part_73.Material = Enum.Material.SmoothPlastic | |
| 1802 | part_73.Size = Vector3.new(4, 3.6, 1) | |
| 1803 | part_73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1804 | part_73.CFrame = CFrame.new(10.5, 9.8, -114)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1805 | part_73.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1806 | part_73.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1807 | part_73.BrickColor = BrickColor.new("Buttermilk")
| |
| 1808 | part_73.Friction = 0.3 | |
| 1809 | part_73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1810 | ||
| 1811 | mesh_48 = Instance.new("BlockMesh", part_73)
| |
| 1812 | ||
| 1813 | part_74 = Instance.new("Part", mcarrier)
| |
| 1814 | part_74.FormFactor = Enum.FormFactor.Plate | |
| 1815 | part_74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1816 | part_74.TopSurface = Enum.SurfaceType.Smooth | |
| 1817 | part_74.Material = Enum.Material.SmoothPlastic | |
| 1818 | part_74.Size = Vector3.new(2, 3.6, 1) | |
| 1819 | part_74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1820 | part_74.CFrame = CFrame.new(-0.5, 9.8, -120)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1821 | part_74.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1822 | part_74.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1823 | part_74.BrickColor = BrickColor.new("Buttermilk")
| |
| 1824 | part_74.Friction = 0.3 | |
| 1825 | part_74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1826 | ||
| 1827 | mesh_49 = Instance.new("BlockMesh", part_74)
| |
| 1828 | ||
| 1829 | part_75 = Instance.new("Part", mcarrier)
| |
| 1830 | part_75.FormFactor = Enum.FormFactor.Plate | |
| 1831 | part_75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1832 | part_75.TopSurface = Enum.SurfaceType.Smooth | |
| 1833 | part_75.Material = Enum.Material.SmoothPlastic | |
| 1834 | part_75.Size = Vector3.new(2, 3.6, 1) | |
| 1835 | part_75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1836 | part_75.CFrame = CFrame.new(10.5, 9.8, -120)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1837 | part_75.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1838 | part_75.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1839 | part_75.BrickColor = BrickColor.new("Buttermilk")
| |
| 1840 | part_75.Friction = 0.3 | |
| 1841 | part_75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1842 | ||
| 1843 | mesh_50 = Instance.new("BlockMesh", part_75)
| |
| 1844 | ||
| 1845 | part_76 = Instance.new("Part", mcarrier)
| |
| 1846 | part_76.FormFactor = Enum.FormFactor.Plate | |
| 1847 | part_76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1848 | part_76.TopSurface = Enum.SurfaceType.Smooth | |
| 1849 | part_76.Material = Enum.Material.SmoothPlastic | |
| 1850 | part_76.Size = Vector3.new(2, 3.6, 1) | |
| 1851 | part_76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1852 | part_76.CFrame = CFrame.new(-0.5, 9.8, -125)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1853 | part_76.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1854 | part_76.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1855 | part_76.BrickColor = BrickColor.new("Buttermilk")
| |
| 1856 | part_76.Friction = 0.3 | |
| 1857 | part_76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1858 | ||
| 1859 | mesh_51 = Instance.new("BlockMesh", part_76)
| |
| 1860 | ||
| 1861 | part_77 = Instance.new("Part", mcarrier)
| |
| 1862 | part_77.FormFactor = Enum.FormFactor.Plate | |
| 1863 | part_77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1864 | part_77.TopSurface = Enum.SurfaceType.Smooth | |
| 1865 | part_77.Material = Enum.Material.SmoothPlastic | |
| 1866 | part_77.Size = Vector3.new(3, 3.6, 1) | |
| 1867 | part_77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1868 | part_77.CFrame = CFrame.new(10.5, 9.8, -117.5)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1869 | part_77.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1870 | part_77.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1871 | part_77.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1872 | part_77.Friction = 0.3 | |
| 1873 | part_77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1874 | ||
| 1875 | mesh_52 = Instance.new("BlockMesh", part_77)
| |
| 1876 | ||
| 1877 | part_78 = Instance.new("Part", mcarrier)
| |
| 1878 | part_78.FormFactor = Enum.FormFactor.Plate | |
| 1879 | part_78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1880 | part_78.TopSurface = Enum.SurfaceType.Smooth | |
| 1881 | part_78.Material = Enum.Material.SmoothPlastic | |
| 1882 | part_78.Size = Vector3.new(3, 3.6, 1) | |
| 1883 | part_78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1884 | part_78.CFrame = CFrame.new(-0.5, 9.8, -117.5)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1885 | part_78.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1886 | part_78.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1887 | part_78.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1888 | part_78.Friction = 0.3 | |
| 1889 | part_78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1890 | ||
| 1891 | mesh_53 = Instance.new("BlockMesh", part_78)
| |
| 1892 | ||
| 1893 | part_79 = Instance.new("Part", mcarrier)
| |
| 1894 | part_79.FormFactor = Enum.FormFactor.Plate | |
| 1895 | part_79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1896 | part_79.TopSurface = Enum.SurfaceType.Smooth | |
| 1897 | part_79.Material = Enum.Material.SmoothPlastic | |
| 1898 | part_79.Size = Vector3.new(2, 3.6, 1) | |
| 1899 | part_79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1900 | part_79.CFrame = CFrame.new(-0.5, 9.8, -135)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1901 | part_79.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1902 | part_79.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1903 | part_79.BrickColor = BrickColor.new("Buttermilk")
| |
| 1904 | part_79.Friction = 0.3 | |
| 1905 | part_79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1906 | ||
| 1907 | mesh_54 = Instance.new("BlockMesh", part_79)
| |
| 1908 | ||
| 1909 | part_80 = Instance.new("Part", mcarrier)
| |
| 1910 | part_80.FormFactor = Enum.FormFactor.Plate | |
| 1911 | part_80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1912 | part_80.TopSurface = Enum.SurfaceType.Smooth | |
| 1913 | part_80.Material = Enum.Material.SmoothPlastic | |
| 1914 | part_80.Size = Vector3.new(2, 3.6, 1) | |
| 1915 | part_80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1916 | part_80.CFrame = CFrame.new(-0.5, 9.8, -140)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1917 | part_80.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1918 | part_80.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1919 | part_80.BrickColor = BrickColor.new("Buttermilk")
| |
| 1920 | part_80.Friction = 0.3 | |
| 1921 | part_80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1922 | ||
| 1923 | mesh_55 = Instance.new("BlockMesh", part_80)
| |
| 1924 | ||
| 1925 | part_81 = Instance.new("Part", mcarrier)
| |
| 1926 | part_81.FormFactor = Enum.FormFactor.Plate | |
| 1927 | part_81.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1928 | part_81.TopSurface = Enum.SurfaceType.Smooth | |
| 1929 | part_81.Material = Enum.Material.SmoothPlastic | |
| 1930 | part_81.Size = Vector3.new(3, 3.6, 1) | |
| 1931 | part_81.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1932 | part_81.CFrame = CFrame.new(10.5, 9.8, -127.5)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1933 | part_81.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1934 | part_81.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1935 | part_81.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1936 | part_81.Friction = 0.3 | |
| 1937 | part_81.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1938 | ||
| 1939 | mesh_56 = Instance.new("BlockMesh", part_81)
| |
| 1940 | ||
| 1941 | part_82 = Instance.new("Part", mcarrier)
| |
| 1942 | part_82.FormFactor = Enum.FormFactor.Plate | |
| 1943 | part_82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1944 | part_82.TopSurface = Enum.SurfaceType.Smooth | |
| 1945 | part_82.Material = Enum.Material.SmoothPlastic | |
| 1946 | part_82.Size = Vector3.new(3, 3.6, 1) | |
| 1947 | part_82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1948 | part_82.CFrame = CFrame.new(10.5, 9.8, -122.5)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1949 | part_82.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1950 | part_82.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1951 | part_82.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1952 | part_82.Friction = 0.3 | |
| 1953 | part_82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1954 | ||
| 1955 | mesh_57 = Instance.new("BlockMesh", part_82)
| |
| 1956 | ||
| 1957 | part_83 = Instance.new("Part", mcarrier)
| |
| 1958 | part_83.FormFactor = Enum.FormFactor.Plate | |
| 1959 | part_83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1960 | part_83.TopSurface = Enum.SurfaceType.Smooth | |
| 1961 | part_83.Material = Enum.Material.SmoothPlastic | |
| 1962 | part_83.Size = Vector3.new(3, 3.6, 1) | |
| 1963 | part_83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1964 | part_83.CFrame = CFrame.new(10.5, 9.8, -137.5)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1965 | part_83.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1966 | part_83.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1967 | part_83.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1968 | part_83.Friction = 0.3 | |
| 1969 | part_83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1970 | ||
| 1971 | mesh_58 = Instance.new("BlockMesh", part_83)
| |
| 1972 | ||
| 1973 | part_84 = Instance.new("Part", mcarrier)
| |
| 1974 | part_84.FormFactor = Enum.FormFactor.Plate | |
| 1975 | part_84.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1976 | part_84.TopSurface = Enum.SurfaceType.Smooth | |
| 1977 | part_84.Material = Enum.Material.SmoothPlastic | |
| 1978 | part_84.Size = Vector3.new(3, 3.6, 1) | |
| 1979 | part_84.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1980 | part_84.CFrame = CFrame.new(10.5, 9.8, -132.5)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1981 | part_84.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1982 | part_84.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1983 | part_84.BrickColor = BrickColor.new("Dark stone grey")
| |
| 1984 | part_84.Friction = 0.3 | |
| 1985 | part_84.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1986 | ||
| 1987 | mesh_59 = Instance.new("BlockMesh", part_84)
| |
| 1988 | ||
| 1989 | part_85 = Instance.new("Part", mcarrier)
| |
| 1990 | part_85.FormFactor = Enum.FormFactor.Plate | |
| 1991 | part_85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1992 | part_85.TopSurface = Enum.SurfaceType.Smooth | |
| 1993 | part_85.Material = Enum.Material.SmoothPlastic | |
| 1994 | part_85.Size = Vector3.new(3, 3.6, 1) | |
| 1995 | part_85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1996 | part_85.CFrame = CFrame.new(-0.5, 9.8, -122.5)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 1997 | part_85.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1998 | part_85.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 1999 | part_85.BrickColor = BrickColor.new("Dark stone grey")
| |
| 2000 | part_85.Friction = 0.3 | |
| 2001 | part_85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2002 | ||
| 2003 | mesh_60 = Instance.new("BlockMesh", part_85)
| |
| 2004 | ||
| 2005 | part_86 = Instance.new("Part", mcarrier)
| |
| 2006 | part_86.FormFactor = Enum.FormFactor.Plate | |
| 2007 | part_86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2008 | part_86.TopSurface = Enum.SurfaceType.Smooth | |
| 2009 | part_86.Material = Enum.Material.SmoothPlastic | |
| 2010 | part_86.Size = Vector3.new(3, 3.6, 1) | |
| 2011 | part_86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2012 | part_86.CFrame = CFrame.new(-0.5, 9.8, -142.5)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 2013 | part_86.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2014 | part_86.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2015 | part_86.BrickColor = BrickColor.new("Dark stone grey")
| |
| 2016 | part_86.Friction = 0.3 | |
| 2017 | part_86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2018 | ||
| 2019 | mesh_61 = Instance.new("BlockMesh", part_86)
| |
| 2020 | ||
| 2021 | part_87 = Instance.new("Part", mcarrier)
| |
| 2022 | part_87.FormFactor = Enum.FormFactor.Plate | |
| 2023 | part_87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2024 | part_87.TopSurface = Enum.SurfaceType.Smooth | |
| 2025 | part_87.Material = Enum.Material.SmoothPlastic | |
| 2026 | part_87.Size = Vector3.new(43, 1.2, 1) | |
| 2027 | part_87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2028 | part_87.CFrame = CFrame.new(-0.5, 12.2, -128.5)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 2029 | part_87.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2030 | part_87.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2031 | part_87.BrickColor = BrickColor.new("Buttermilk")
| |
| 2032 | part_87.Friction = 0.3 | |
| 2033 | part_87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2034 | ||
| 2035 | mesh_62 = Instance.new("BlockMesh", part_87)
| |
| 2036 | ||
| 2037 | part_88 = Instance.new("Part", mcarrier)
| |
| 2038 | part_88.FormFactor = Enum.FormFactor.Plate | |
| 2039 | part_88.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2040 | part_88.TopSurface = Enum.SurfaceType.Smooth | |
| 2041 | part_88.Material = Enum.Material.SmoothPlastic | |
| 2042 | part_88.Size = Vector3.new(12, 0.4, 1) | |
| 2043 | part_88.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2044 | part_88.CFrame = CFrame.new(5, 13, -165.5) | |
| 2045 | part_88.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2046 | part_88.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2047 | part_88.BrickColor = BrickColor.new("Buttermilk")
| |
| 2048 | part_88.Friction = 0.3 | |
| 2049 | part_88.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2050 | ||
| 2051 | mesh_63 = Instance.new("SpecialMesh", part_88)
| |
| 2052 | mesh_63.MeshType = Enum.MeshType.Wedge | |
| 2053 | ||
| 2054 | part_89 = Instance.new("Part", mcarrier)
| |
| 2055 | part_89.FormFactor = Enum.FormFactor.Plate | |
| 2056 | part_89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2057 | part_89.TopSurface = Enum.SurfaceType.Smooth | |
| 2058 | part_89.Material = Enum.Material.SmoothPlastic | |
| 2059 | part_89.Size = Vector3.new(3, 3.6, 1) | |
| 2060 | part_89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2061 | part_89.CFrame = CFrame.new(-0.5, 9.8, -137.5)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 2062 | part_89.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2063 | part_89.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2064 | part_89.BrickColor = BrickColor.new("Dark stone grey")
| |
| 2065 | part_89.Friction = 0.3 | |
| 2066 | part_89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2067 | ||
| 2068 | mesh_64 = Instance.new("BlockMesh", part_89)
| |
| 2069 | ||
| 2070 | part_90 = Instance.new("Part", mcarrier)
| |
| 2071 | part_90.FormFactor = Enum.FormFactor.Plate | |
| 2072 | part_90.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2073 | part_90.TopSurface = Enum.SurfaceType.Smooth | |
| 2074 | part_90.Material = Enum.Material.SmoothPlastic | |
| 2075 | part_90.Size = Vector3.new(3, 3.6, 1) | |
| 2076 | part_90.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2077 | part_90.CFrame = CFrame.new(-0.5, 9.8, -127.5)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 2078 | part_90.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2079 | part_90.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2080 | part_90.BrickColor = BrickColor.new("Dark stone grey")
| |
| 2081 | part_90.Friction = 0.3 | |
| 2082 | part_90.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2083 | ||
| 2084 | mesh_65 = Instance.new("BlockMesh", part_90)
| |
| 2085 | ||
| 2086 | part_91 = Instance.new("Part", mcarrier)
| |
| 2087 | part_91.FormFactor = Enum.FormFactor.Plate | |
| 2088 | part_91.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2089 | part_91.TopSurface = Enum.SurfaceType.Smooth | |
| 2090 | part_91.Material = Enum.Material.SmoothPlastic | |
| 2091 | part_91.Size = Vector3.new(3, 3.6, 1) | |
| 2092 | part_91.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2093 | part_91.CFrame = CFrame.new(-0.5, 9.8, -132.5)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 2094 | part_91.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2095 | part_91.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2096 | part_91.BrickColor = BrickColor.new("Dark stone grey")
| |
| 2097 | part_91.Friction = 0.3 | |
| 2098 | part_91.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2099 | ||
| 2100 | mesh_66 = Instance.new("BlockMesh", part_91)
| |
| 2101 | ||
| 2102 | part_92 = Instance.new("Part", mcarrier)
| |
| 2103 | part_92.FormFactor = Enum.FormFactor.Plate | |
| 2104 | part_92.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2105 | part_92.TopSurface = Enum.SurfaceType.Smooth | |
| 2106 | part_92.Material = Enum.Material.SmoothPlastic | |
| 2107 | part_92.Size = Vector3.new(1, 0.4, 12) | |
| 2108 | part_92.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2109 | part_92.CFrame = CFrame.new(5, 12.6, -165.5)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 2110 | part_92.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2111 | part_92.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2112 | part_92.BrickColor = BrickColor.new("Buttermilk")
| |
| 2113 | part_92.Friction = 0.3 | |
| 2114 | part_92.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2115 | ||
| 2116 | mesh_67 = Instance.new("BlockMesh", part_92)
| |
| 2117 | ||
| 2118 | troopdoor = Instance.new("Part", mcarrier)
| |
| 2119 | troopdoor.FormFactor = Enum.FormFactor.Plate | |
| 2120 | troopdoor.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2121 | troopdoor.TopSurface = Enum.SurfaceType.Smooth | |
| 2122 | troopdoor.Material = Enum.Material.SmoothPlastic | |
| 2123 | troopdoor.Size = Vector3.new(48, 0.4, 12) | |
| 2124 | troopdoor.Name = "troopdoor" | |
| 2125 | troopdoor.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2126 | troopdoor.CFrame = CFrame.new(5, 13, -131)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 2127 | troopdoor.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2128 | troopdoor.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2129 | troopdoor.BrickColor = BrickColor.new("Buttermilk")
| |
| 2130 | troopdoor.Friction = 0.3 | |
| 2131 | troopdoor.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2132 | ||
| 2133 | mesh_68 = Instance.new("BlockMesh", troopdoor)
| |
| 2134 | ||
| 2135 | door = Instance.new("Part", mcarrier)
| |
| 2136 | door.FormFactor = Enum.FormFactor.Plate | |
| 2137 | door.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2138 | door.TopSurface = Enum.SurfaceType.Smooth | |
| 2139 | door.Material = Enum.Material.SmoothPlastic | |
| 2140 | door.Size = Vector3.new(1, 0.8, 5) | |
| 2141 | door.Name = "Door" | |
| 2142 | door.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2143 | door.CFrame = CFrame.new(10.5, 11.2, -109.5) | |
| 2144 | door.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2145 | door.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2146 | door.BrickColor = BrickColor.new("Buttermilk")
| |
| 2147 | door.Friction = 0.3 | |
| 2148 | door.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2149 | ||
| 2150 | mesh_69 = Instance.new("BlockMesh", door)
| |
| 2151 | ||
| 2152 | door_2 = Instance.new("Part", mcarrier)
| |
| 2153 | door_2.FormFactor = Enum.FormFactor.Plate | |
| 2154 | door_2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2155 | door_2.TopSurface = Enum.SurfaceType.Smooth | |
| 2156 | door_2.Material = Enum.Material.SmoothPlastic | |
| 2157 | door_2.Size = Vector3.new(1, 2.8, 1) | |
| 2158 | door_2.Name = "Door" | |
| 2159 | door_2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2160 | door_2.CFrame = CFrame.new(10.5, 9.4, -107.5) | |
| 2161 | door_2.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2162 | door_2.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2163 | door_2.BrickColor = BrickColor.new("Buttermilk")
| |
| 2164 | door_2.Friction = 0.3 | |
| 2165 | door_2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2166 | ||
| 2167 | mesh_70 = Instance.new("BlockMesh", door_2)
| |
| 2168 | ||
| 2169 | click_door = Instance.new("Part", mcarrier)
| |
| 2170 | click_door.FormFactor = Enum.FormFactor.Plate | |
| 2171 | click_door.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2172 | click_door.TopSurface = Enum.SurfaceType.Smooth | |
| 2173 | click_door.Material = Enum.Material.SmoothPlastic | |
| 2174 | click_door.Size = Vector3.new(1, 3.2, 5) | |
| 2175 | click_door.Name = "Click Door" | |
| 2176 | click_door.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2177 | click_door.CFrame = CFrame.new(10.5, 6.4, -109.5) | |
| 2178 | click_door.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2179 | click_door.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2180 | click_door.BrickColor = BrickColor.new("Buttermilk")
| |
| 2181 | click_door.Friction = 0.3 | |
| 2182 | click_door.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2183 | ||
| 2184 | door_3 = Instance.new("Part", mcarrier)
| |
| 2185 | door_3.FormFactor = Enum.FormFactor.Plate | |
| 2186 | door_3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2187 | door_3.TopSurface = Enum.SurfaceType.Smooth | |
| 2188 | door_3.Material = Enum.Material.SmoothPlastic | |
| 2189 | door_3.Size = Vector3.new(1, 2.8, 1) | |
| 2190 | door_3.Name = "Door" | |
| 2191 | door_3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2192 | door_3.CFrame = CFrame.new(10.5, 9.4, -111.5) | |
| 2193 | door_3.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2194 | door_3.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2195 | door_3.BrickColor = BrickColor.new("Buttermilk")
| |
| 2196 | door_3.Friction = 0.3 | |
| 2197 | door_3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2198 | ||
| 2199 | mesh_71 = Instance.new("BlockMesh", door_3)
| |
| 2200 | ||
| 2201 | part_93 = Instance.new("Part", mcarrier)
| |
| 2202 | part_93.FormFactor = Enum.FormFactor.Plate | |
| 2203 | part_93.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2204 | part_93.TopSurface = Enum.SurfaceType.Smooth | |
| 2205 | part_93.Material = Enum.Material.SmoothPlastic | |
| 2206 | part_93.Size = Vector3.new(43, 1.2, 1) | |
| 2207 | part_93.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2208 | part_93.CFrame = CFrame.new(10.5, 12.2, -128.5)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 2209 | part_93.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2210 | part_93.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2211 | part_93.BrickColor = BrickColor.new("Buttermilk")
| |
| 2212 | part_93.Friction = 0.3 | |
| 2213 | part_93.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2214 | ||
| 2215 | mesh_72 = Instance.new("BlockMesh", part_93)
| |
| 2216 | ||
| 2217 | door_4 = Instance.new("Part", mcarrier)
| |
| 2218 | door_4.FormFactor = Enum.FormFactor.Plate | |
| 2219 | door_4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2220 | door_4.TopSurface = Enum.SurfaceType.Smooth | |
| 2221 | door_4.Material = Enum.Material.SmoothPlastic | |
| 2222 | door_4.Size = Vector3.new(1, 2.8, 3) | |
| 2223 | door_4.Name = "Door" | |
| 2224 | door_4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2225 | door_4.CFrame = CFrame.new(10.5, 9.4, -109.5) | |
| 2226 | door_4.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2227 | door_4.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2228 | door_4.BrickColor = BrickColor.new("Buttermilk")
| |
| 2229 | door_4.Friction = 0.3 | |
| 2230 | door_4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2231 | ||
| 2232 | mesh_73 = Instance.new("BlockMesh", door_4)
| |
| 2233 | ||
| 2234 | door_5 = Instance.new("Part", mcarrier)
| |
| 2235 | door_5.FormFactor = Enum.FormFactor.Plate | |
| 2236 | door_5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2237 | door_5.TopSurface = Enum.SurfaceType.Smooth | |
| 2238 | door_5.Material = Enum.Material.SmoothPlastic | |
| 2239 | door_5.Size = Vector3.new(1, 2.8, 3) | |
| 2240 | door_5.Name = "Door" | |
| 2241 | door_5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2242 | door_5.CFrame = CFrame.new(-0.5, 9.4, -109.5) | |
| 2243 | door_5.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2244 | door_5.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2245 | door_5.BrickColor = BrickColor.new("Buttermilk")
| |
| 2246 | door_5.Friction = 0.3 | |
| 2247 | door_5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2248 | ||
| 2249 | mesh_74 = Instance.new("BlockMesh", door_5)
| |
| 2250 | ||
| 2251 | door_6 = Instance.new("Part", mcarrier)
| |
| 2252 | door_6.FormFactor = Enum.FormFactor.Plate | |
| 2253 | door_6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2254 | door_6.TopSurface = Enum.SurfaceType.Smooth | |
| 2255 | door_6.Material = Enum.Material.SmoothPlastic | |
| 2256 | door_6.Size = Vector3.new(1, 0.8, 5) | |
| 2257 | door_6.Name = "Door" | |
| 2258 | door_6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2259 | door_6.CFrame = CFrame.new(-0.5, 11.2, -109.5) | |
| 2260 | door_6.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2261 | door_6.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2262 | door_6.BrickColor = BrickColor.new("Buttermilk")
| |
| 2263 | door_6.Friction = 0.3 | |
| 2264 | door_6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2265 | ||
| 2266 | mesh_75 = Instance.new("BlockMesh", door_6)
| |
| 2267 | ||
| 2268 | door_7 = Instance.new("Part", mcarrier)
| |
| 2269 | door_7.FormFactor = Enum.FormFactor.Plate | |
| 2270 | door_7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2271 | door_7.TopSurface = Enum.SurfaceType.Smooth | |
| 2272 | door_7.Material = Enum.Material.SmoothPlastic | |
| 2273 | door_7.Size = Vector3.new(1, 2.8, 1) | |
| 2274 | door_7.Name = "Door" | |
| 2275 | door_7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2276 | door_7.CFrame = CFrame.new(-0.5, 9.4, -111.5) | |
| 2277 | door_7.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2278 | door_7.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2279 | door_7.BrickColor = BrickColor.new("Buttermilk")
| |
| 2280 | door_7.Friction = 0.3 | |
| 2281 | door_7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2282 | ||
| 2283 | mesh_76 = Instance.new("BlockMesh", door_7)
| |
| 2284 | ||
| 2285 | click_door_2 = Instance.new("Part", mcarrier)
| |
| 2286 | click_door_2.FormFactor = Enum.FormFactor.Plate | |
| 2287 | click_door_2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2288 | click_door_2.TopSurface = Enum.SurfaceType.Smooth | |
| 2289 | click_door_2.Material = Enum.Material.SmoothPlastic | |
| 2290 | click_door_2.Size = Vector3.new(1, 3.2, 5) | |
| 2291 | click_door_2.Name = "Click Door" | |
| 2292 | click_door_2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2293 | click_door_2.CFrame = CFrame.new(-0.5, 6.4, -109.5) | |
| 2294 | click_door_2.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2295 | click_door_2.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2296 | click_door_2.BrickColor = BrickColor.new("Buttermilk")
| |
| 2297 | click_door_2.Friction = 0.3 | |
| 2298 | click_door_2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2299 | ||
| 2300 | door_8 = Instance.new("Part", mcarrier)
| |
| 2301 | door_8.FormFactor = Enum.FormFactor.Plate | |
| 2302 | door_8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2303 | door_8.TopSurface = Enum.SurfaceType.Smooth | |
| 2304 | door_8.Material = Enum.Material.SmoothPlastic | |
| 2305 | door_8.Size = Vector3.new(1, 2.8, 1) | |
| 2306 | door_8.Name = "Door" | |
| 2307 | door_8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2308 | door_8.CFrame = CFrame.new(-0.5, 9.4, -107.5) | |
| 2309 | door_8.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2310 | door_8.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2311 | door_8.BrickColor = BrickColor.new("Buttermilk")
| |
| 2312 | door_8.Friction = 0.3 | |
| 2313 | door_8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2314 | ||
| 2315 | mesh_77 = Instance.new("BlockMesh", door_8)
| |
| 2316 | ||
| 2317 | door_9 = Instance.new("Part", mcarrier)
| |
| 2318 | door_9.FormFactor = Enum.FormFactor.Plate | |
| 2319 | door_9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2320 | door_9.TopSurface = Enum.SurfaceType.Smooth | |
| 2321 | door_9.Material = Enum.Material.SmoothPlastic | |
| 2322 | door_9.Size = Vector3.new(1, 0.8, 4) | |
| 2323 | door_9.Name = "Door" | |
| 2324 | door_9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2325 | door_9.CFrame = CFrame.new(10.5, 11.2, -148) | |
| 2326 | door_9.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2327 | door_9.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2328 | door_9.BrickColor = BrickColor.new("Buttermilk")
| |
| 2329 | door_9.Friction = 0.3 | |
| 2330 | door_9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2331 | ||
| 2332 | mesh_78 = Instance.new("BlockMesh", door_9)
| |
| 2333 | ||
| 2334 | door_10 = Instance.new("Part", mcarrier)
| |
| 2335 | door_10.FormFactor = Enum.FormFactor.Plate | |
| 2336 | door_10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2337 | door_10.TopSurface = Enum.SurfaceType.Smooth | |
| 2338 | door_10.Material = Enum.Material.SmoothPlastic | |
| 2339 | door_10.Size = Vector3.new(1, 2.8, 1) | |
| 2340 | door_10.Name = "Door" | |
| 2341 | door_10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2342 | door_10.CFrame = CFrame.new(10.5, 9.4, -146.5) | |
| 2343 | door_10.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2344 | door_10.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2345 | door_10.BrickColor = BrickColor.new("Buttermilk")
| |
| 2346 | door_10.Friction = 0.3 | |
| 2347 | door_10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2348 | ||
| 2349 | mesh_79 = Instance.new("BlockMesh", door_10)
| |
| 2350 | ||
| 2351 | door_11 = Instance.new("Part", mcarrier)
| |
| 2352 | door_11.FormFactor = Enum.FormFactor.Plate | |
| 2353 | door_11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2354 | door_11.TopSurface = Enum.SurfaceType.Smooth | |
| 2355 | door_11.Material = Enum.Material.SmoothPlastic | |
| 2356 | door_11.Size = Vector3.new(1, 2.8, 2) | |
| 2357 | door_11.Name = "Door" | |
| 2358 | door_11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2359 | door_11.CFrame = CFrame.new(10.5, 9.4, -148) | |
| 2360 | door_11.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2361 | door_11.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2362 | door_11.BrickColor = BrickColor.new("Buttermilk")
| |
| 2363 | door_11.Friction = 0.3 | |
| 2364 | door_11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2365 | ||
| 2366 | mesh_80 = Instance.new("BlockMesh", door_11)
| |
| 2367 | ||
| 2368 | click_door_3 = Instance.new("Part", mcarrier)
| |
| 2369 | click_door_3.FormFactor = Enum.FormFactor.Plate | |
| 2370 | click_door_3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2371 | click_door_3.TopSurface = Enum.SurfaceType.Smooth | |
| 2372 | click_door_3.Material = Enum.Material.SmoothPlastic | |
| 2373 | click_door_3.Size = Vector3.new(1, 3.2, 4) | |
| 2374 | click_door_3.Name = "Click Door" | |
| 2375 | click_door_3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2376 | click_door_3.CFrame = CFrame.new(10.5, 6.4, -148) | |
| 2377 | click_door_3.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2378 | click_door_3.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2379 | click_door_3.BrickColor = BrickColor.new("Buttermilk")
| |
| 2380 | click_door_3.Friction = 0.3 | |
| 2381 | click_door_3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2382 | ||
| 2383 | local weight = Instance.new("Part", mcarrier)
| |
| 2384 | weight.FormFactor = Enum.FormFactor.Plate | |
| 2385 | weight.CanCollide = false | |
| 2386 | weight.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2387 | weight.Transparency = 1 | |
| 2388 | weight.TopSurface = Enum.SurfaceType.Smooth | |
| 2389 | weight.Material = Enum.Material.SmoothPlastic | |
| 2390 | weight.Size = Vector3.new(40, 16.4, 36) | |
| 2391 | weight.Name = "weight" | |
| 2392 | weight.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2393 | weight.CFrame = CFrame.new(18, 21.4, -134)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 2394 | weight.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2395 | weight.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2396 | weight.BrickColor = BrickColor.new("Buttermilk")
| |
| 2397 | weight.Friction = 0.3 | |
| 2398 | weight.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2399 | ||
| 2400 | door_12 = Instance.new("Part", mcarrier)
| |
| 2401 | door_12.FormFactor = Enum.FormFactor.Plate | |
| 2402 | door_12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2403 | door_12.TopSurface = Enum.SurfaceType.Smooth | |
| 2404 | door_12.Material = Enum.Material.SmoothPlastic | |
| 2405 | door_12.Size = Vector3.new(1, 2.8, 1) | |
| 2406 | door_12.Name = "Door" | |
| 2407 | door_12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2408 | door_12.CFrame = CFrame.new(10.5, 9.4, -149.5) | |
| 2409 | door_12.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2410 | door_12.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2411 | door_12.BrickColor = BrickColor.new("Buttermilk")
| |
| 2412 | door_12.Friction = 0.3 | |
| 2413 | door_12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2414 | ||
| 2415 | mesh_81 = Instance.new("BlockMesh", door_12)
| |
| 2416 | ||
| 2417 | door_13 = Instance.new("Part", mcarrier)
| |
| 2418 | door_13.FormFactor = Enum.FormFactor.Plate | |
| 2419 | door_13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2420 | door_13.TopSurface = Enum.SurfaceType.Smooth | |
| 2421 | door_13.Material = Enum.Material.SmoothPlastic | |
| 2422 | door_13.Size = Vector3.new(1, 2.8, 1) | |
| 2423 | door_13.Name = "Door" | |
| 2424 | door_13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2425 | door_13.CFrame = CFrame.new(-0.5, 9.4, -146.5) | |
| 2426 | door_13.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2427 | door_13.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2428 | door_13.BrickColor = BrickColor.new("Buttermilk")
| |
| 2429 | door_13.Friction = 0.3 | |
| 2430 | door_13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2431 | ||
| 2432 | mesh_82 = Instance.new("BlockMesh", door_13)
| |
| 2433 | ||
| 2434 | door_14 = Instance.new("Part", mcarrier)
| |
| 2435 | door_14.FormFactor = Enum.FormFactor.Plate | |
| 2436 | door_14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2437 | door_14.TopSurface = Enum.SurfaceType.Smooth | |
| 2438 | door_14.Material = Enum.Material.SmoothPlastic | |
| 2439 | door_14.Size = Vector3.new(1, 0.8, 4) | |
| 2440 | door_14.Name = "Door" | |
| 2441 | door_14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2442 | door_14.CFrame = CFrame.new(-0.5, 11.2, -148) | |
| 2443 | door_14.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2444 | door_14.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2445 | door_14.BrickColor = BrickColor.new("Buttermilk")
| |
| 2446 | door_14.Friction = 0.3 | |
| 2447 | door_14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2448 | ||
| 2449 | mesh_83 = Instance.new("BlockMesh", door_14)
| |
| 2450 | ||
| 2451 | door_15 = Instance.new("Part", mcarrier)
| |
| 2452 | door_15.FormFactor = Enum.FormFactor.Plate | |
| 2453 | door_15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2454 | door_15.TopSurface = Enum.SurfaceType.Smooth | |
| 2455 | door_15.Material = Enum.Material.SmoothPlastic | |
| 2456 | door_15.Size = Vector3.new(1, 2.8, 1) | |
| 2457 | door_15.Name = "Door" | |
| 2458 | door_15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2459 | door_15.CFrame = CFrame.new(-0.5, 9.4, -149.5) | |
| 2460 | door_15.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2461 | door_15.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2462 | door_15.BrickColor = BrickColor.new("Buttermilk")
| |
| 2463 | door_15.Friction = 0.3 | |
| 2464 | door_15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2465 | ||
| 2466 | mesh_84 = Instance.new("BlockMesh", door_15)
| |
| 2467 | ||
| 2468 | click_door_4 = Instance.new("Part", mcarrier)
| |
| 2469 | click_door_4.FormFactor = Enum.FormFactor.Plate | |
| 2470 | click_door_4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2471 | click_door_4.TopSurface = Enum.SurfaceType.Smooth | |
| 2472 | click_door_4.Material = Enum.Material.SmoothPlastic | |
| 2473 | click_door_4.Size = Vector3.new(1, 3.2, 4) | |
| 2474 | click_door_4.Name = "Click Door" | |
| 2475 | click_door_4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2476 | click_door_4.CFrame = CFrame.new(-0.5, 6.4, -148) | |
| 2477 | click_door_4.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2478 | click_door_4.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2479 | click_door_4.BrickColor = BrickColor.new("Buttermilk")
| |
| 2480 | click_door_4.Friction = 0.3 | |
| 2481 | click_door_4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2482 | ||
| 2483 | part_94 = Instance.new("Part", mcarrier)
| |
| 2484 | part_94.FormFactor = Enum.FormFactor.Plate | |
| 2485 | part_94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2486 | part_94.TopSurface = Enum.SurfaceType.Smooth | |
| 2487 | part_94.Material = Enum.Material.SmoothPlastic | |
| 2488 | part_94.Size = Vector3.new(2, 3.6, 1) | |
| 2489 | part_94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2490 | part_94.CFrame = CFrame.new(-0.5, 9.8, -145)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 2491 | part_94.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2492 | part_94.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2493 | part_94.BrickColor = BrickColor.new("Buttermilk")
| |
| 2494 | part_94.Friction = 0.3 | |
| 2495 | part_94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2496 | ||
| 2497 | mesh_85 = Instance.new("BlockMesh", part_94)
| |
| 2498 | ||
| 2499 | door_16 = Instance.new("Part", mcarrier)
| |
| 2500 | door_16.FormFactor = Enum.FormFactor.Plate | |
| 2501 | door_16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2502 | door_16.TopSurface = Enum.SurfaceType.Smooth | |
| 2503 | door_16.Material = Enum.Material.SmoothPlastic | |
| 2504 | door_16.Size = Vector3.new(1, 2.8, 2) | |
| 2505 | door_16.Name = "Door" | |
| 2506 | door_16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2507 | door_16.CFrame = CFrame.new(-0.5, 9.4, -148) | |
| 2508 | door_16.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2509 | door_16.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2510 | door_16.BrickColor = BrickColor.new("Buttermilk")
| |
| 2511 | door_16.Friction = 0.3 | |
| 2512 | door_16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2513 | ||
| 2514 | mesh_86 = Instance.new("BlockMesh", door_16)
| |
| 2515 | ||
| 2516 | part_95 = Instance.new("Part", mcarrier)
| |
| 2517 | part_95.FormFactor = Enum.FormFactor.Plate | |
| 2518 | part_95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2519 | part_95.TopSurface = Enum.SurfaceType.Smooth | |
| 2520 | part_95.Material = Enum.Material.SmoothPlastic | |
| 2521 | part_95.Size = Vector3.new(1, 7.6, 9) | |
| 2522 | part_95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2523 | part_95.CFrame = CFrame.new(51.5, 5.3, -126.4)* CFrame.Angles(-1.5707963705063, -1.5707963705063, 0) | |
| 2524 | part_95.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2525 | part_95.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2526 | part_95.BrickColor = BrickColor.new("Buttermilk")
| |
| 2527 | part_95.Friction = 0.3 | |
| 2528 | part_95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2529 | ||
| 2530 | mesh_87 = Instance.new("SpecialMesh", part_95)
| |
| 2531 | mesh_87.MeshType = Enum.MeshType.Wedge | |
| 2532 | ||
| 2533 | part_96 = Instance.new("Part", mcarrier)
| |
| 2534 | part_96.FormFactor = Enum.FormFactor.Plate | |
| 2535 | part_96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2536 | part_96.TopSurface = Enum.SurfaceType.Smooth | |
| 2537 | part_96.Material = Enum.Material.SmoothPlastic | |
| 2538 | part_96.Size = Vector3.new(1, 10, 36) | |
| 2539 | part_96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2540 | part_96.CFrame = CFrame.new(-19, 5.3, -135.2)* CFrame.Angles(-1.5707963705063, 1.5707963705063, 0) | |
| 2541 | part_96.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2542 | part_96.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2543 | part_96.BrickColor = BrickColor.new("Buttermilk")
| |
| 2544 | part_96.Friction = 0.3 | |
| 2545 | part_96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2546 | part_96.Name = "crasherleftwing" | |
| 2547 | ||
| 2548 | mesh_88 = Instance.new("SpecialMesh", part_96)
| |
| 2549 | mesh_88.MeshType = Enum.MeshType.Wedge | |
| 2550 | ||
| 2551 | part_97 = Instance.new("Part", mcarrier)
| |
| 2552 | part_97.FormFactor = Enum.FormFactor.Plate | |
| 2553 | part_97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2554 | part_97.TopSurface = Enum.SurfaceType.Smooth | |
| 2555 | part_97.Material = Enum.Material.SmoothPlastic | |
| 2556 | part_97.Size = Vector3.new(1, 7.6, 9) | |
| 2557 | part_97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2558 | part_97.CFrame = CFrame.new(-41.5, 5.3, -126.4)* CFrame.Angles(-1.5707963705063, 1.5707963705063, 0) | |
| 2559 | part_97.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2560 | part_97.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2561 | part_97.BrickColor = BrickColor.new("Buttermilk")
| |
| 2562 | part_97.Friction = 0.3 | |
| 2563 | part_97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2564 | ||
| 2565 | mesh_89 = Instance.new("SpecialMesh", part_97)
| |
| 2566 | mesh_89.MeshType = Enum.MeshType.Wedge | |
| 2567 | ||
| 2568 | part_98 = Instance.new("Part", mcarrier)
| |
| 2569 | part_98.FormFactor = Enum.FormFactor.Plate | |
| 2570 | part_98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2571 | part_98.TopSurface = Enum.SurfaceType.Smooth | |
| 2572 | part_98.Material = Enum.Material.SmoothPlastic | |
| 2573 | part_98.Size = Vector3.new(45, 0.8, 1) | |
| 2574 | part_98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2575 | part_98.CFrame = CFrame.new(33.5, 5.3, -122.2)* CFrame.Angles(1.5707963705063, 0, 0) | |
| 2576 | part_98.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2577 | part_98.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2578 | part_98.BrickColor = BrickColor.new("Buttermilk")
| |
| 2579 | part_98.Friction = 0.3 | |
| 2580 | part_98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2581 | ||
| 2582 | mesh_90 = Instance.new("SpecialMesh", part_98)
| |
| 2583 | mesh_90.MeshType = Enum.MeshType.Wedge | |
| 2584 | ||
| 2585 | part_99 = Instance.new("Part", mcarrier)
| |
| 2586 | part_99.FormFactor = Enum.FormFactor.Plate | |
| 2587 | part_99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2588 | part_99.TopSurface = Enum.SurfaceType.Smooth | |
| 2589 | part_99.Material = Enum.Material.SmoothPlastic | |
| 2590 | part_99.Size = Vector3.new(45, 0.8, 1) | |
| 2591 | part_99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2592 | part_99.CFrame = CFrame.new(-23.5, 5.3, -122.2)* CFrame.Angles(1.5707963705063, 0, 0) | |
| 2593 | part_99.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2594 | part_99.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2595 | part_99.BrickColor = BrickColor.new("Buttermilk")
| |
| 2596 | part_99.Friction = 0.3 | |
| 2597 | part_99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2598 | ||
| 2599 | mesh_91 = Instance.new("SpecialMesh", part_99)
| |
| 2600 | mesh_91.MeshType = Enum.MeshType.Wedge | |
| 2601 | ||
| 2602 | part_100 = Instance.new("Part", mcarrier)
| |
| 2603 | part_100.FormFactor = Enum.FormFactor.Plate | |
| 2604 | part_100.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2605 | part_100.TopSurface = Enum.SurfaceType.Smooth | |
| 2606 | part_100.Material = Enum.Material.SmoothPlastic | |
| 2607 | part_100.Size = Vector3.new(1, 8.4, 14) | |
| 2608 | part_100.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2609 | part_100.CFrame = CFrame.new(10.5, 9, -100) | |
| 2610 | part_100.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2611 | part_100.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2612 | part_100.BrickColor = BrickColor.new("Buttermilk")
| |
| 2613 | part_100.Friction = 0.3 | |
| 2614 | part_100.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2615 | ||
| 2616 | mesh_92 = Instance.new("BlockMesh", part_100)
| |
| 2617 | ||
| 2618 | part_101 = Instance.new("Part", mcarrier)
| |
| 2619 | part_101.FormFactor = Enum.FormFactor.Plate | |
| 2620 | part_101.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2621 | part_101.TopSurface = Enum.SurfaceType.Smooth | |
| 2622 | part_101.Material = Enum.Material.SmoothPlastic | |
| 2623 | part_101.Size = Vector3.new(1, 8.4, 14) | |
| 2624 | part_101.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2625 | part_101.CFrame = CFrame.new(-0.5, 9, -100) | |
| 2626 | part_101.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2627 | part_101.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2628 | part_101.BrickColor = BrickColor.new("Buttermilk")
| |
| 2629 | part_101.Friction = 0.3 | |
| 2630 | part_101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2631 | ||
| 2632 | mesh_93 = Instance.new("BlockMesh", part_101)
| |
| 2633 | ||
| 2634 | part_102 = Instance.new("Part", mcarrier)
| |
| 2635 | part_102.FormFactor = Enum.FormFactor.Plate | |
| 2636 | part_102.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2637 | part_102.TopSurface = Enum.SurfaceType.Smooth | |
| 2638 | part_102.Material = Enum.Material.SmoothPlastic | |
| 2639 | part_102.Size = Vector3.new(1, 7.6, 36) | |
| 2640 | part_102.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2641 | part_102.CFrame = CFrame.new(-19, 5.3, -126.4)* CFrame.Angles(-1.5707963705063, 1.5707963705063, 0) | |
| 2642 | part_102.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2643 | part_102.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2644 | part_102.BrickColor = BrickColor.new("Buttermilk")
| |
| 2645 | part_102.Friction = 0.3 | |
| 2646 | part_102.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2647 | ||
| 2648 | mesh_94 = Instance.new("BlockMesh", part_102)
| |
| 2649 | ||
| 2650 | part_103 = Instance.new("Part", mcarrier)
| |
| 2651 | part_103.FormFactor = Enum.FormFactor.Plate | |
| 2652 | part_103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2653 | part_103.TopSurface = Enum.SurfaceType.Smooth | |
| 2654 | part_103.Material = Enum.Material.SmoothPlastic | |
| 2655 | part_103.Size = Vector3.new(1, 10, 36) | |
| 2656 | part_103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2657 | part_103.CFrame = CFrame.new(29, 5.3, -135.2)* CFrame.Angles(-1.5707963705063, -1.5707963705063, 0) | |
| 2658 | part_103.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2659 | part_103.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2660 | part_103.BrickColor = BrickColor.new("Buttermilk")
| |
| 2661 | part_103.Friction = 0.3 | |
| 2662 | part_103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2663 | part_103.Name = "crasherrightwing" | |
| 2664 | ||
| 2665 | mesh_95 = Instance.new("SpecialMesh", part_103)
| |
| 2666 | mesh_95.MeshType = Enum.MeshType.Wedge | |
| 2667 | ||
| 2668 | part_104 = Instance.new("Part", mcarrier)
| |
| 2669 | part_104.FormFactor = Enum.FormFactor.Plate | |
| 2670 | part_104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2671 | part_104.TopSurface = Enum.SurfaceType.Smooth | |
| 2672 | part_104.Material = Enum.Material.SmoothPlastic | |
| 2673 | part_104.Size = Vector3.new(1, 7.6, 36) | |
| 2674 | part_104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2675 | part_104.CFrame = CFrame.new(29, 5.3, -126.4)* CFrame.Angles(-1.5707963705063, 1.5707963705063, 0) | |
| 2676 | part_104.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2677 | part_104.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2678 | part_104.BrickColor = BrickColor.new("Buttermilk")
| |
| 2679 | part_104.Friction = 0.3 | |
| 2680 | part_104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2681 | ||
| 2682 | mesh_96 = Instance.new("BlockMesh", part_104)
| |
| 2683 | ||
| 2684 | part_105 = Instance.new("Part", mcarrier)
| |
| 2685 | part_105.FormFactor = Enum.FormFactor.Plate | |
| 2686 | part_105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2687 | part_105.TopSurface = Enum.SurfaceType.Smooth | |
| 2688 | part_105.Material = Enum.Material.SmoothPlastic | |
| 2689 | part_105.Size = Vector3.new(1, 9.2, 2) | |
| 2690 | part_105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2691 | part_105.CFrame = CFrame.new(-5.6, 20.3, -87)* CFrame.Angles(-0, 0, -1.5707963705063) | |
| 2692 | part_105.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2693 | part_105.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2694 | part_105.BrickColor = BrickColor.new("Buttermilk")
| |
| 2695 | part_105.Friction = 0.3 | |
| 2696 | part_105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2697 | ||
| 2698 | mesh_97 = Instance.new("BlockMesh", part_105)
| |
| 2699 | ||
| 2700 | troopdoorclosed = Instance.new("Part", mcarrier)
| |
| 2701 | troopdoorclosed.FormFactor = Enum.FormFactor.Plate | |
| 2702 | troopdoorclosed.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2703 | troopdoorclosed.TopSurface = Enum.SurfaceType.Smooth | |
| 2704 | troopdoorclosed.Material = Enum.Material.SmoothPlastic | |
| 2705 | troopdoorclosed.Size = Vector3.new(12, 8.4, 4) | |
| 2706 | troopdoorclosed.Name = "troopdoorclosed" | |
| 2707 | troopdoorclosed.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2708 | troopdoorclosed.CFrame = CFrame.new(5, 9, -91)* CFrame.Angles(-3.1415927410126, 0, -0) | |
| 2709 | troopdoorclosed.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2710 | troopdoorclosed.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2711 | troopdoorclosed.BrickColor = BrickColor.new("Buttermilk")
| |
| 2712 | troopdoorclosed.Friction = 0.3 | |
| 2713 | troopdoorclosed.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2714 | troopdoorclosed.CanCollide = false | |
| 2715 | troopdoorclosed.Transparency = 1 | |
| 2716 | ||
| 2717 | mesh_98 = Instance.new("SpecialMesh", troopdoorclosed)
| |
| 2718 | mesh_98.MeshType = Enum.MeshType.Wedge | |
| 2719 | ||
| 2720 | part_106 = Instance.new("Part", mcarrier)
| |
| 2721 | part_106.FormFactor = Enum.FormFactor.Plate | |
| 2722 | part_106.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2723 | part_106.TopSurface = Enum.SurfaceType.Smooth | |
| 2724 | part_106.Material = Enum.Material.SmoothPlastic | |
| 2725 | part_106.Size = Vector3.new(4, 7.6, 18) | |
| 2726 | part_106.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2727 | part_106.CFrame = CFrame.new(9, 17, -98) | |
| 2728 | part_106.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2729 | part_106.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2730 | part_106.BrickColor = BrickColor.new("Buttermilk")
| |
| 2731 | part_106.Friction = 0.3 | |
| 2732 | part_106.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2733 | ||
| 2734 | mesh_99 = Instance.new("SpecialMesh", part_106)
| |
| 2735 | mesh_99.MeshType = Enum.MeshType.Wedge | |
| 2736 | ||
| 2737 | part_107 = Instance.new("Part", mcarrier)
| |
| 2738 | part_107.FormFactor = Enum.FormFactor.Plate | |
| 2739 | part_107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2740 | part_107.TopSurface = Enum.SurfaceType.Smooth | |
| 2741 | part_107.Material = Enum.Material.SmoothPlastic | |
| 2742 | part_107.Size = Vector3.new(4, 7.6, 18) | |
| 2743 | part_107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2744 | part_107.CFrame = CFrame.new(1, 17, -98) | |
| 2745 | part_107.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2746 | part_107.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2747 | part_107.BrickColor = BrickColor.new("Buttermilk")
| |
| 2748 | part_107.Friction = 0.3 | |
| 2749 | part_107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2750 | ||
| 2751 | mesh_100 = Instance.new("SpecialMesh", part_107)
| |
| 2752 | mesh_100.MeshType = Enum.MeshType.Wedge | |
| 2753 | ||
| 2754 | part_108 = Instance.new("Part", mcarrier)
| |
| 2755 | part_108.FormFactor = Enum.FormFactor.Plate | |
| 2756 | part_108.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2757 | part_108.TopSurface = Enum.SurfaceType.Smooth | |
| 2758 | part_108.Material = Enum.Material.SmoothPlastic | |
| 2759 | part_108.Size = Vector3.new(4, 15.2, 9) | |
| 2760 | part_108.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2761 | part_108.CFrame = CFrame.new(5, 20.8, -84.5)* CFrame.Angles(-3.1415927410126, 0, -0) | |
| 2762 | part_108.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2763 | part_108.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2764 | part_108.BrickColor = BrickColor.new("Buttermilk")
| |
| 2765 | part_108.Friction = 0.3 | |
| 2766 | part_108.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2767 | ||
| 2768 | mesh_101 = Instance.new("SpecialMesh", part_108)
| |
| 2769 | mesh_101.MeshType = Enum.MeshType.Wedge | |
| 2770 | ||
| 2771 | part_109 = Instance.new("Part", mcarrier)
| |
| 2772 | part_109.FormFactor = Enum.FormFactor.Plate | |
| 2773 | part_109.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2774 | part_109.TopSurface = Enum.SurfaceType.Smooth | |
| 2775 | part_109.Material = Enum.Material.SmoothPlastic | |
| 2776 | part_109.Size = Vector3.new(4, 7.6, 4) | |
| 2777 | part_109.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2778 | part_109.CFrame = CFrame.new(9, 17, -87)* CFrame.Angles(-3.1415927410126, 0, -0) | |
| 2779 | part_109.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2780 | part_109.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2781 | part_109.BrickColor = BrickColor.new("Buttermilk")
| |
| 2782 | part_109.Friction = 0.3 | |
| 2783 | part_109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2784 | ||
| 2785 | mesh_102 = Instance.new("SpecialMesh", part_109)
| |
| 2786 | mesh_102.MeshType = Enum.MeshType.Wedge | |
| 2787 | ||
| 2788 | part_110 = Instance.new("Part", mcarrier)
| |
| 2789 | part_110.FormFactor = Enum.FormFactor.Plate | |
| 2790 | part_110.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2791 | part_110.TopSurface = Enum.SurfaceType.Smooth | |
| 2792 | part_110.Material = Enum.Material.SmoothPlastic | |
| 2793 | part_110.Size = Vector3.new(4, 7.6, 4) | |
| 2794 | part_110.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2795 | part_110.CFrame = CFrame.new(1, 17, -87)* CFrame.Angles(-3.1415927410126, 0, -0) | |
| 2796 | part_110.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2797 | part_110.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2798 | part_110.BrickColor = BrickColor.new("Buttermilk")
| |
| 2799 | part_110.Friction = 0.3 | |
| 2800 | part_110.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2801 | ||
| 2802 | mesh_103 = Instance.new("SpecialMesh", part_110)
| |
| 2803 | mesh_103.MeshType = Enum.MeshType.Wedge | |
| 2804 | ||
| 2805 | part_111 = Instance.new("Part", mcarrier)
| |
| 2806 | part_111.FormFactor = Enum.FormFactor.Plate | |
| 2807 | part_111.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2808 | part_111.TopSurface = Enum.SurfaceType.Smooth | |
| 2809 | part_111.Material = Enum.Material.SmoothPlastic | |
| 2810 | part_111.Size = Vector3.new(4, 15.2, 18) | |
| 2811 | part_111.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2812 | part_111.CFrame = CFrame.new(5, 20.8, -98) | |
| 2813 | part_111.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2814 | part_111.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2815 | part_111.BrickColor = BrickColor.new("Buttermilk")
| |
| 2816 | part_111.Friction = 0.3 | |
| 2817 | part_111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2818 | ||
| 2819 | mesh_104 = Instance.new("SpecialMesh", part_111)
| |
| 2820 | mesh_104.MeshType = Enum.MeshType.Wedge | |
| 2821 | ||
| 2822 | part_112 = Instance.new("Part", mcarrier)
| |
| 2823 | part_112.FormFactor = Enum.FormFactor.Plate | |
| 2824 | part_112.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2825 | part_112.TopSurface = Enum.SurfaceType.Smooth | |
| 2826 | part_112.Material = Enum.Material.SmoothPlastic | |
| 2827 | part_112.Size = Vector3.new(1, 3.2, 15) | |
| 2828 | part_112.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2829 | part_112.CFrame = CFrame.new(10.5, 6.4, -119.5) | |
| 2830 | part_112.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2831 | part_112.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2832 | part_112.BrickColor = BrickColor.new("Buttermilk")
| |
| 2833 | part_112.Friction = 0.3 | |
| 2834 | part_112.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2835 | ||
| 2836 | mesh_105 = Instance.new("BlockMesh", part_112)
| |
| 2837 | ||
| 2838 | part_113 = Instance.new("Part", mcarrier)
| |
| 2839 | part_113.FormFactor = Enum.FormFactor.Plate | |
| 2840 | part_113.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2841 | part_113.TopSurface = Enum.SurfaceType.Smooth | |
| 2842 | part_113.Material = Enum.Material.SmoothPlastic | |
| 2843 | part_113.Size = Vector3.new(1, 3.2, 15) | |
| 2844 | part_113.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2845 | part_113.CFrame = CFrame.new(-0.5, 6.4, -119.5) | |
| 2846 | part_113.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2847 | part_113.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2848 | part_113.BrickColor = BrickColor.new("Buttermilk")
| |
| 2849 | part_113.Friction = 0.3 | |
| 2850 | part_113.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2851 | ||
| 2852 | mesh_106 = Instance.new("BlockMesh", part_113)
| |
| 2853 | ||
| 2854 | part_114 = Instance.new("Part", mcarrier)
| |
| 2855 | part_114.FormFactor = Enum.FormFactor.Plate | |
| 2856 | part_114.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2857 | part_114.TopSurface = Enum.SurfaceType.Smooth | |
| 2858 | part_114.Material = Enum.Material.SmoothPlastic | |
| 2859 | part_114.Size = Vector3.new(12, 0.8, 34) | |
| 2860 | part_114.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2861 | part_114.CFrame = CFrame.new(5, 4.4, -110)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126) | |
| 2862 | part_114.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2863 | part_114.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2864 | part_114.BrickColor = BrickColor.new("Dark stone grey")
| |
| 2865 | part_114.Friction = 0.3 | |
| 2866 | part_114.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2867 | ||
| 2868 | mesh_107 = Instance.new("BlockMesh", part_114)
| |
| 2869 | ||
| 2870 | part_115 = Instance.new("Part", mcarrier)
| |
| 2871 | part_115.FormFactor = Enum.FormFactor.Plate | |
| 2872 | part_115.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2873 | part_115.TopSurface = Enum.SurfaceType.Smooth | |
| 2874 | part_115.Material = Enum.Material.SmoothPlastic | |
| 2875 | part_115.Size = Vector3.new(9, 1.2, 1) | |
| 2876 | part_115.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2877 | part_115.CFrame = CFrame.new(-5.5, 20.3, -85.4)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126) | |
| 2878 | part_115.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2879 | part_115.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2880 | part_115.BrickColor = BrickColor.new("Buttermilk")
| |
| 2881 | part_115.Friction = 0.3 | |
| 2882 | part_115.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2883 | ||
| 2884 | mesh_108 = Instance.new("SpecialMesh", part_115)
| |
| 2885 | mesh_108.MeshType = Enum.MeshType.Wedge | |
| 2886 | ||
| 2887 | part_116 = Instance.new("Part", mcarrier)
| |
| 2888 | part_116.FormFactor = Enum.FormFactor.Plate | |
| 2889 | part_116.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2890 | part_116.TopSurface = Enum.SurfaceType.Smooth | |
| 2891 | part_116.Material = Enum.Material.SmoothPlastic | |
| 2892 | part_116.Size = Vector3.new(1, 1.2, 9) | |
| 2893 | part_116.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2894 | part_116.CFrame = CFrame.new(-5.5, 20.3, -88.6)* CFrame.Angles(-1.5707963705063, 1.5707963705063, 0) | |
| 2895 | part_116.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2896 | part_116.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2897 | part_116.BrickColor = BrickColor.new("Buttermilk")
| |
| 2898 | part_116.Friction = 0.3 | |
| 2899 | part_116.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2900 | ||
| 2901 | mesh_109 = Instance.new("SpecialMesh", part_116)
| |
| 2902 | mesh_109.MeshType = Enum.MeshType.Wedge | |
| 2903 | ||
| 2904 | part_117 = Instance.new("Part", mcarrier)
| |
| 2905 | part_117.FormFactor = Enum.FormFactor.Plate | |
| 2906 | part_117.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2907 | part_117.TopSurface = Enum.SurfaceType.Smooth | |
| 2908 | part_117.Material = Enum.Material.SmoothPlastic | |
| 2909 | part_117.Size = Vector3.new(1, 1.2, 9) | |
| 2910 | part_117.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2911 | part_117.CFrame = CFrame.new(15.5, 20.3, -88.6)* CFrame.Angles(-1.5707963705063, -1.5707963705063, 0) | |
| 2912 | part_117.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2913 | part_117.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2914 | part_117.BrickColor = BrickColor.new("Buttermilk")
| |
| 2915 | part_117.Friction = 0.3 | |
| 2916 | part_117.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2917 | ||
| 2918 | mesh_110 = Instance.new("SpecialMesh", part_117)
| |
| 2919 | mesh_110.MeshType = Enum.MeshType.Wedge | |
| 2920 | ||
| 2921 | part_118 = Instance.new("Part", mcarrier)
| |
| 2922 | part_118.FormFactor = Enum.FormFactor.Plate | |
| 2923 | part_118.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2924 | part_118.TopSurface = Enum.SurfaceType.Smooth | |
| 2925 | part_118.Material = Enum.Material.SmoothPlastic | |
| 2926 | part_118.Size = Vector3.new(1, 9.2, 2) | |
| 2927 | part_118.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2928 | part_118.CFrame = CFrame.new(15.6, 20.3, -87)* CFrame.Angles(-0, 0, -1.5707963705063) | |
| 2929 | part_118.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2930 | part_118.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2931 | part_118.BrickColor = BrickColor.new("Buttermilk")
| |
| 2932 | part_118.Friction = 0.3 | |
| 2933 | part_118.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2934 | ||
| 2935 | mesh_111 = Instance.new("BlockMesh", part_118)
| |
| 2936 | ||
| 2937 | part_119 = Instance.new("Part", mcarrier)
| |
| 2938 | part_119.FormFactor = Enum.FormFactor.Plate | |
| 2939 | part_119.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2940 | part_119.TopSurface = Enum.SurfaceType.Smooth | |
| 2941 | part_119.Material = Enum.Material.SmoothPlastic | |
| 2942 | part_119.Size = Vector3.new(9, 1.2, 1) | |
| 2943 | part_119.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2944 | part_119.CFrame = CFrame.new(15.5, 20.3, -85.4)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126) | |
| 2945 | part_119.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2946 | part_119.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2947 | part_119.BrickColor = BrickColor.new("Buttermilk")
| |
| 2948 | part_119.Friction = 0.3 | |
| 2949 | part_119.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2950 | ||
| 2951 | mesh_112 = Instance.new("SpecialMesh", part_119)
| |
| 2952 | mesh_112.MeshType = Enum.MeshType.Wedge | |
| 2953 | ||
| 2954 | part_120 = Instance.new("Part", mcarrier)
| |
| 2955 | part_120.FormFactor = Enum.FormFactor.Plate | |
| 2956 | part_120.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2957 | part_120.TopSurface = Enum.SurfaceType.Smooth | |
| 2958 | part_120.Material = Enum.Material.SmoothPlastic | |
| 2959 | part_120.Size = Vector3.new(12, 3.2, 2) | |
| 2960 | part_120.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2961 | part_120.CFrame = CFrame.new(5, 6.4, -169)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126) | |
| 2962 | part_120.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2963 | part_120.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2964 | part_120.BrickColor = BrickColor.new("Buttermilk")
| |
| 2965 | part_120.Friction = 0.3 | |
| 2966 | part_120.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2967 | ||
| 2968 | mesh_113 = Instance.new("BlockMesh", part_120)
| |
| 2969 | ||
| 2970 | part_121 = Instance.new("Part", mcarrier)
| |
| 2971 | part_121.FormFactor = Enum.FormFactor.Plate | |
| 2972 | part_121.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2973 | part_121.TopSurface = Enum.SurfaceType.Smooth | |
| 2974 | part_121.Material = Enum.Material.SmoothPlastic | |
| 2975 | part_121.Size = Vector3.new(3, 0.8, 2) | |
| 2976 | part_121.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2977 | part_121.CFrame = CFrame.new(-21.4, 1.2, -128.5)* CFrame.Angles(-1.5707963705063, 0, -1.5707963705063) | |
| 2978 | part_121.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2979 | part_121.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2980 | part_121.BrickColor = BrickColor.new("Dark stone grey")
| |
| 2981 | part_121.Friction = 0.3 | |
| 2982 | part_121.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2983 | part_121.Name = "Wheel4" | |
| 2984 | ||
| 2985 | mesh_114 = Instance.new("CylinderMesh", part_121)
| |
| 2986 | ||
| 2987 | part_122 = Instance.new("Part", mcarrier)
| |
| 2988 | part_122.FormFactor = Enum.FormFactor.Plate | |
| 2989 | part_122.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2990 | part_122.TopSurface = Enum.SurfaceType.Smooth | |
| 2991 | part_122.Material = Enum.Material.SmoothPlastic | |
| 2992 | part_122.Size = Vector3.new(1, 0.8, 1) | |
| 2993 | part_122.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2994 | part_122.CFrame = CFrame.new(4.5, 6.4, -165.5)* CFrame.Angles(-0, 0, -3.1415927410126) | |
| 2995 | part_122.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2996 | part_122.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 2997 | part_122.BrickColor = BrickColor.new("Dark stone grey")
| |
| 2998 | part_122.Friction = 0.3 | |
| 2999 | part_122.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3000 | ||
| 3001 | mesh_115 = Instance.new("CylinderMesh", part_122)
| |
| 3002 | mesh_115.Scale = Vector3.new(0.1, 1, 1) | |
| 3003 | ||
| 3004 | part_123 = Instance.new("Part", mcarrier)
| |
| 3005 | part_123.FormFactor = Enum.FormFactor.Plate | |
| 3006 | part_123.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3007 | part_123.TopSurface = Enum.SurfaceType.Smooth | |
| 3008 | part_123.Material = Enum.Material.SmoothPlastic | |
| 3009 | part_123.Size = Vector3.new(1, 0.8, 1) | |
| 3010 | part_123.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3011 | part_123.CFrame = CFrame.new(3.5, 6.4, -165.5)* CFrame.Angles(-0, 0, -3.1415927410126) | |
| 3012 | part_123.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3013 | part_123.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3014 | part_123.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3015 | part_123.Friction = 0.3 | |
| 3016 | part_123.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3017 | ||
| 3018 | mesh_116 = Instance.new("CylinderMesh", part_123)
| |
| 3019 | mesh_116.Scale = Vector3.new(0.1, 1, 1) | |
| 3020 | ||
| 3021 | part_124 = Instance.new("Part", mcarrier)
| |
| 3022 | part_124.FormFactor = Enum.FormFactor.Plate | |
| 3023 | part_124.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3024 | part_124.TopSurface = Enum.SurfaceType.Smooth | |
| 3025 | part_124.Material = Enum.Material.SmoothPlastic | |
| 3026 | part_124.Size = Vector3.new(3, 0.8, 2) | |
| 3027 | part_124.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3028 | part_124.CFrame = CFrame.new(4.2, 1, -164.5)* CFrame.Angles(-1.5707963705063, 0, -1.5707963705063) | |
| 3029 | part_124.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3030 | part_124.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3031 | part_124.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3032 | part_124.Friction = 0.3 | |
| 3033 | part_124.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3034 | part_124.Name = "Wheel5" | |
| 3035 | ||
| 3036 | mesh_117 = Instance.new("CylinderMesh", part_124)
| |
| 3037 | ||
| 3038 | part_125 = Instance.new("Part", mcarrier)
| |
| 3039 | part_125.FormFactor = Enum.FormFactor.Plate | |
| 3040 | part_125.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3041 | part_125.TopSurface = Enum.SurfaceType.Smooth | |
| 3042 | part_125.Material = Enum.Material.SmoothPlastic | |
| 3043 | part_125.Size = Vector3.new(1, 0.8, 1) | |
| 3044 | part_125.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3045 | part_125.CFrame = CFrame.new(6.5, 6.4, -165.5)* CFrame.Angles(-0, 0, -3.1415927410126) | |
| 3046 | part_125.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3047 | part_125.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3048 | part_125.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3049 | part_125.Friction = 0.3 | |
| 3050 | part_125.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3051 | ||
| 3052 | mesh_118 = Instance.new("CylinderMesh", part_125)
| |
| 3053 | mesh_118.Scale = Vector3.new(0.1, 1, 1) | |
| 3054 | ||
| 3055 | part_126 = Instance.new("Part", mcarrier)
| |
| 3056 | part_126.FormFactor = Enum.FormFactor.Plate | |
| 3057 | part_126.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3058 | part_126.TopSurface = Enum.SurfaceType.Smooth | |
| 3059 | part_126.Material = Enum.Material.SmoothPlastic | |
| 3060 | part_126.Size = Vector3.new(2, 0.4, 3) | |
| 3061 | part_126.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3062 | part_126.CFrame = CFrame.new(1, 6.3, -165)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126) | |
| 3063 | part_126.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3064 | part_126.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3065 | part_126.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3066 | part_126.Friction = 0.3 | |
| 3067 | part_126.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3068 | ||
| 3069 | mesh_119 = Instance.new("CylinderMesh", part_126)
| |
| 3070 | mesh_119.Scale = Vector3.new(1.3, 1, 1) | |
| 3071 | ||
| 3072 | part_127 = Instance.new("Part", mcarrier)
| |
| 3073 | part_127.FormFactor = Enum.FormFactor.Plate | |
| 3074 | part_127.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3075 | part_127.TopSurface = Enum.SurfaceType.Smooth | |
| 3076 | part_127.Material = Enum.Material.SmoothPlastic | |
| 3077 | part_127.Size = Vector3.new(1, 0.4, 3) | |
| 3078 | part_127.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3079 | part_127.CFrame = CFrame.new(4.8, 2.5, -164.5)* CFrame.Angles(-1.5707963705063, 0, 1.5707963705063) | |
| 3080 | part_127.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3081 | part_127.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3082 | part_127.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3083 | part_127.Friction = 0.3 | |
| 3084 | part_127.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3085 | part_127.Name = "Wheelline1" | |
| 3086 | ||
| 3087 | mesh_120 = Instance.new("BlockMesh", part_127)
| |
| 3088 | ||
| 3089 | ||
| 3090 | part_128 = Instance.new("Part", mcarrier)
| |
| 3091 | part_128.FormFactor = Enum.FormFactor.Plate | |
| 3092 | part_128.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3093 | part_128.TopSurface = Enum.SurfaceType.Smooth | |
| 3094 | part_128.Material = Enum.Material.SmoothPlastic | |
| 3095 | part_128.Size = Vector3.new(1, 0.4, 3) | |
| 3096 | part_128.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3097 | part_128.CFrame = CFrame.new(31.8, 3.3, -126.5)* CFrame.Angles(-1.5707963705063, 0, 1.5707963705063) | |
| 3098 | part_128.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3099 | part_128.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3100 | part_128.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3101 | part_128.Friction = 0.3 | |
| 3102 | part_128.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3103 | part_128.Name = "Wheelline2" | |
| 3104 | ||
| 3105 | mesh_121 = Instance.new("BlockMesh", part_128)
| |
| 3106 | ||
| 3107 | part_129 = Instance.new("Part", mcarrier)
| |
| 3108 | part_129.FormFactor = Enum.FormFactor.Plate | |
| 3109 | part_129.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3110 | part_129.TopSurface = Enum.SurfaceType.Smooth | |
| 3111 | part_129.Material = Enum.Material.SmoothPlastic | |
| 3112 | part_129.Size = Vector3.new(3, 0.8, 2) | |
| 3113 | part_129.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3114 | part_129.CFrame = CFrame.new(-21.4, 1.2, -124.5)* CFrame.Angles(-1.5707963705063, 0, -1.5707963705063) | |
| 3115 | part_129.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3116 | part_129.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3117 | part_129.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3118 | part_129.Friction = 0.3 | |
| 3119 | part_129.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3120 | part_129.Name = "Wheel6" | |
| 3121 | ||
| 3122 | mesh_122 = Instance.new("CylinderMesh", part_129)
| |
| 3123 | ||
| 3124 | part_130 = Instance.new("Part", mcarrier)
| |
| 3125 | part_130.FormFactor = Enum.FormFactor.Plate | |
| 3126 | part_130.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3127 | part_130.TopSurface = Enum.SurfaceType.Smooth | |
| 3128 | part_130.Material = Enum.Material.SmoothPlastic | |
| 3129 | part_130.Size = Vector3.new(3, 0.8, 2) | |
| 3130 | part_130.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3131 | part_130.CFrame = CFrame.new(-22.6, 1.2, -128.5)* CFrame.Angles(-1.5707963705063, 0, -1.5707963705063) | |
| 3132 | part_130.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3133 | part_130.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3134 | part_130.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3135 | part_130.Friction = 0.3 | |
| 3136 | part_130.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3137 | part_130.Name = "Wheel7" | |
| 3138 | ||
| 3139 | mesh_123 = Instance.new("CylinderMesh", part_130)
| |
| 3140 | ||
| 3141 | part_131 = Instance.new("Part", mcarrier)
| |
| 3142 | part_131.FormFactor = Enum.FormFactor.Plate | |
| 3143 | part_131.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3144 | part_131.TopSurface = Enum.SurfaceType.Smooth | |
| 3145 | part_131.Material = Enum.Material.SmoothPlastic | |
| 3146 | part_131.Size = Vector3.new(1, 0.8, 1) | |
| 3147 | part_131.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3148 | part_131.CFrame = CFrame.new(5.5, 6.4, -165.5)* CFrame.Angles(-0, 0, -3.1415927410126) | |
| 3149 | part_131.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3150 | part_131.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3151 | part_131.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3152 | part_131.Friction = 0.3 | |
| 3153 | part_131.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3154 | ||
| 3155 | mesh_124 = Instance.new("CylinderMesh", part_131)
| |
| 3156 | mesh_124.Scale = Vector3.new(0.1, 1, 1) | |
| 3157 | ||
| 3158 | part_132 = Instance.new("Part", mcarrier)
| |
| 3159 | part_132.FormFactor = Enum.FormFactor.Plate | |
| 3160 | part_132.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3161 | part_132.TopSurface = Enum.SurfaceType.Smooth | |
| 3162 | part_132.Material = Enum.Material.SmoothPlastic | |
| 3163 | part_132.Size = Vector3.new(12, 0.8, 43) | |
| 3164 | part_132.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3165 | part_132.CFrame = CFrame.new(5, 4.4, -148.5)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126) | |
| 3166 | part_132.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3167 | part_132.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3168 | part_132.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3169 | part_132.Friction = 0.3 | |
| 3170 | part_132.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3171 | ||
| 3172 | mesh_125 = Instance.new("BlockMesh", part_132)
| |
| 3173 | ||
| 3174 | part_133 = Instance.new("Part", mcarrier)
| |
| 3175 | part_133.FormFactor = Enum.FormFactor.Plate | |
| 3176 | part_133.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3177 | part_133.TopSurface = Enum.SurfaceType.Smooth | |
| 3178 | part_133.Material = Enum.Material.SmoothPlastic | |
| 3179 | part_133.Size = Vector3.new(1, 0.4, 3) | |
| 3180 | part_133.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3181 | part_133.CFrame = CFrame.new(-22, 3.3, -126.5)* CFrame.Angles(-1.5707963705063, 0, 1.5707963705063) | |
| 3182 | part_133.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3183 | part_133.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3184 | part_133.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3185 | part_133.Friction = 0.3 | |
| 3186 | part_133.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3187 | part_133.Name = "Wheelline3" | |
| 3188 | ||
| 3189 | mesh_126 = Instance.new("BlockMesh", part_133)
| |
| 3190 | ||
| 3191 | part_134 = Instance.new("Part", mcarrier)
| |
| 3192 | part_134.FormFactor = Enum.FormFactor.Plate | |
| 3193 | part_134.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3194 | part_134.TopSurface = Enum.SurfaceType.Smooth | |
| 3195 | part_134.Material = Enum.Material.SmoothPlastic | |
| 3196 | part_134.Size = Vector3.new(3, 0.8, 2) | |
| 3197 | part_134.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3198 | part_134.CFrame = CFrame.new(5.4, 1, -164.5)* CFrame.Angles(-1.5707963705063, 0, -1.5707963705063) | |
| 3199 | part_134.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3200 | part_134.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3201 | part_134.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3202 | part_134.Friction = 0.3 | |
| 3203 | part_134.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3204 | part_134.Name = "Wheel8" | |
| 3205 | ||
| 3206 | mesh_127 = Instance.new("CylinderMesh", part_134)
| |
| 3207 | ||
| 3208 | part_135 = Instance.new("Part", mcarrier)
| |
| 3209 | part_135.FormFactor = Enum.FormFactor.Plate | |
| 3210 | part_135.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3211 | part_135.TopSurface = Enum.SurfaceType.Smooth | |
| 3212 | part_135.Material = Enum.Material.SmoothPlastic | |
| 3213 | part_135.Size = Vector3.new(1, 3.2, 5) | |
| 3214 | part_135.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3215 | part_135.CFrame = CFrame.new(10.5, 6.4, -152.5) | |
| 3216 | part_135.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3217 | part_135.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3218 | part_135.BrickColor = BrickColor.new("Buttermilk")
| |
| 3219 | part_135.Friction = 0.3 | |
| 3220 | part_135.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3221 | ||
| 3222 | mesh_128 = Instance.new("BlockMesh", part_135)
| |
| 3223 | ||
| 3224 | part_136 = Instance.new("Part", mcarrier)
| |
| 3225 | part_136.FormFactor = Enum.FormFactor.Plate | |
| 3226 | part_136.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3227 | part_136.TopSurface = Enum.SurfaceType.Smooth | |
| 3228 | part_136.Material = Enum.Material.SmoothPlastic | |
| 3229 | part_136.Size = Vector3.new(6, 1.2, 2) | |
| 3230 | part_136.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3231 | part_136.CFrame = CFrame.new(5, 5.4, -167)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126) | |
| 3232 | part_136.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3233 | part_136.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3234 | part_136.BrickColor = BrickColor.new("Buttermilk")
| |
| 3235 | part_136.Friction = 0.3 | |
| 3236 | part_136.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3237 | ||
| 3238 | mesh_129 = Instance.new("BlockMesh", part_136)
| |
| 3239 | ||
| 3240 | part_137 = Instance.new("Part", mcarrier)
| |
| 3241 | part_137.FormFactor = Enum.FormFactor.Plate | |
| 3242 | part_137.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3243 | part_137.TopSurface = Enum.SurfaceType.Smooth | |
| 3244 | part_137.Material = Enum.Material.SmoothPlastic | |
| 3245 | part_137.Size = Vector3.new(2, 0.4, 2) | |
| 3246 | part_137.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3247 | part_137.CFrame = CFrame.new(9, 7.8, -167)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126) | |
| 3248 | part_137.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3249 | part_137.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3250 | part_137.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3251 | part_137.Friction = 0.3 | |
| 3252 | part_137.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3253 | ||
| 3254 | mesh_130 = Instance.new("SpecialMesh", part_137)
| |
| 3255 | mesh_130.MeshType = Enum.MeshType.Wedge | |
| 3256 | ||
| 3257 | part_138 = Instance.new("Part", mcarrier)
| |
| 3258 | part_138.FormFactor = Enum.FormFactor.Plate | |
| 3259 | part_138.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3260 | part_138.TopSurface = Enum.SurfaceType.Smooth | |
| 3261 | part_138.Material = Enum.Material.SmoothPlastic | |
| 3262 | part_138.Size = Vector3.new(2, 2.8, 2) | |
| 3263 | part_138.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3264 | part_138.CFrame = CFrame.new(9, 6.2, -167)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126) | |
| 3265 | part_138.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3266 | part_138.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3267 | part_138.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3268 | part_138.Friction = 0.3 | |
| 3269 | part_138.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3270 | ||
| 3271 | mesh_131 = Instance.new("BlockMesh", part_138)
| |
| 3272 | ||
| 3273 | part_139 = Instance.new("Part", mcarrier)
| |
| 3274 | part_139.FormFactor = Enum.FormFactor.Plate | |
| 3275 | part_139.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3276 | part_139.TopSurface = Enum.SurfaceType.Smooth | |
| 3277 | part_139.Material = Enum.Material.SmoothPlastic | |
| 3278 | part_139.Size = Vector3.new(13, 3.2, 1) | |
| 3279 | part_139.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3280 | part_139.CFrame = CFrame.new(-0.5, 6.4, -161.5)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 3281 | part_139.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3282 | part_139.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3283 | part_139.BrickColor = BrickColor.new("Buttermilk")
| |
| 3284 | part_139.Friction = 0.3 | |
| 3285 | part_139.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3286 | ||
| 3287 | mesh_132 = Instance.new("BlockMesh", part_139)
| |
| 3288 | ||
| 3289 | part_140 = Instance.new("Part", mcarrier)
| |
| 3290 | part_140.FormFactor = Enum.FormFactor.Plate | |
| 3291 | part_140.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3292 | part_140.TopSurface = Enum.SurfaceType.Smooth | |
| 3293 | part_140.Material = Enum.Material.SmoothPlastic | |
| 3294 | part_140.Size = Vector3.new(1, 1.2, 2) | |
| 3295 | part_140.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3296 | part_140.CFrame = CFrame.new(7.5, 5.4, -165)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126) | |
| 3297 | part_140.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3298 | part_140.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3299 | part_140.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3300 | part_140.Friction = 0.3 | |
| 3301 | part_140.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3302 | ||
| 3303 | mesh_133 = Instance.new("SpecialMesh", part_140)
| |
| 3304 | mesh_133.MeshType = Enum.MeshType.Wedge | |
| 3305 | ||
| 3306 | part_141 = Instance.new("Part", mcarrier)
| |
| 3307 | part_141.FormFactor = Enum.FormFactor.Plate | |
| 3308 | part_141.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3309 | part_141.TopSurface = Enum.SurfaceType.Smooth | |
| 3310 | part_141.Material = Enum.Material.SmoothPlastic | |
| 3311 | part_141.Size = Vector3.new(13, 3.2, 1) | |
| 3312 | part_141.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3313 | part_141.CFrame = CFrame.new(10.5, 6.4, -161.5)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 3314 | part_141.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3315 | part_141.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3316 | part_141.BrickColor = BrickColor.new("Buttermilk")
| |
| 3317 | part_141.Friction = 0.3 | |
| 3318 | part_141.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3319 | ||
| 3320 | mesh_134 = Instance.new("BlockMesh", part_141)
| |
| 3321 | ||
| 3322 | part_142 = Instance.new("Part", mcarrier)
| |
| 3323 | part_142.FormFactor = Enum.FormFactor.Plate | |
| 3324 | part_142.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3325 | part_142.TopSurface = Enum.SurfaceType.Smooth | |
| 3326 | part_142.Material = Enum.Material.SmoothPlastic | |
| 3327 | part_142.Size = Vector3.new(3, 0.8, 2) | |
| 3328 | part_142.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3329 | part_142.CFrame = CFrame.new(31.2, 1.2, -128.5)* CFrame.Angles(-1.5707963705063, 0, -1.5707963705063) | |
| 3330 | part_142.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3331 | part_142.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3332 | part_142.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3333 | part_142.Friction = 0.3 | |
| 3334 | part_142.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3335 | part_142.Name = "Wheel9" | |
| 3336 | ||
| 3337 | mesh_135 = Instance.new("CylinderMesh", part_142)
| |
| 3338 | ||
| 3339 | part_143 = Instance.new("Part", mcarrier)
| |
| 3340 | part_143.FormFactor = Enum.FormFactor.Plate | |
| 3341 | part_143.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3342 | part_143.TopSurface = Enum.SurfaceType.Smooth | |
| 3343 | part_143.Material = Enum.Material.SmoothPlastic | |
| 3344 | part_143.Size = Vector3.new(1, 3.2, 3) | |
| 3345 | part_143.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3346 | part_143.CFrame = CFrame.new(1.5, 6.4, -155.5)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 3347 | part_143.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3348 | part_143.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3349 | part_143.BrickColor = BrickColor.new("Buttermilk")
| |
| 3350 | part_143.Friction = 0.3 | |
| 3351 | part_143.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3352 | ||
| 3353 | mesh_136 = Instance.new("BlockMesh", part_143)
| |
| 3354 | ||
| 3355 | part_144 = Instance.new("Part", mcarrier)
| |
| 3356 | part_144.FormFactor = Enum.FormFactor.Plate | |
| 3357 | part_144.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3358 | part_144.TopSurface = Enum.SurfaceType.Smooth | |
| 3359 | part_144.Material = Enum.Material.SmoothPlastic | |
| 3360 | part_144.Size = Vector3.new(5, 0.4, 1) | |
| 3361 | part_144.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3362 | part_144.CFrame = CFrame.new(31.8, 1.3, -126.5)* CFrame.Angles(-1.5707963705063, 0, 1.5707963705063) | |
| 3363 | part_144.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3364 | part_144.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3365 | part_144.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3366 | part_144.Friction = 0.3 | |
| 3367 | part_144.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3368 | part_144.Name = "Wheelbar1" | |
| 3369 | ||
| 3370 | mesh_137 = Instance.new("BlockMesh", part_144)
| |
| 3371 | ||
| 3372 | part_145 = Instance.new("Part", mcarrier)
| |
| 3373 | part_145.FormFactor = Enum.FormFactor.Plate | |
| 3374 | part_145.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3375 | part_145.TopSurface = Enum.SurfaceType.Smooth | |
| 3376 | part_145.Material = Enum.Material.SmoothPlastic | |
| 3377 | part_145.Size = Vector3.new(4, 1.2, 1) | |
| 3378 | part_145.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3379 | part_145.CFrame = CFrame.new(5, 5.4, -165.5)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126) | |
| 3380 | part_145.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3381 | part_145.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3382 | part_145.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3383 | part_145.Friction = 0.3 | |
| 3384 | part_145.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3385 | ||
| 3386 | mesh_138 = Instance.new("BlockMesh", part_145)
| |
| 3387 | ||
| 3388 | part_146 = Instance.new("Part", mcarrier)
| |
| 3389 | part_146.FormFactor = Enum.FormFactor.Plate | |
| 3390 | part_146.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3391 | part_146.TopSurface = Enum.SurfaceType.Smooth | |
| 3392 | part_146.Material = Enum.Material.SmoothPlastic | |
| 3393 | part_146.Size = Vector3.new(1, 3.2, 5) | |
| 3394 | part_146.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3395 | part_146.CFrame = CFrame.new(-0.5, 6.4, -152.5) | |
| 3396 | part_146.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3397 | part_146.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3398 | part_146.BrickColor = BrickColor.new("Buttermilk")
| |
| 3399 | part_146.Friction = 0.3 | |
| 3400 | part_146.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3401 | ||
| 3402 | mesh_139 = Instance.new("BlockMesh", part_146)
| |
| 3403 | ||
| 3404 | engine = Instance.new("Part", mcarrier)
| |
| 3405 | engine.FormFactor = Enum.FormFactor.Plate | |
| 3406 | engine.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3407 | engine.TopSurface = Enum.SurfaceType.Smooth | |
| 3408 | engine.Material = Enum.Material.SmoothPlastic | |
| 3409 | engine.Size = Vector3.new(4, 1.2, 1) | |
| 3410 | engine.Name = "engine" | |
| 3411 | engine.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3412 | engine.CFrame = CFrame.new(5, 5.4, -164.5)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126) | |
| 3413 | engine.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3414 | engine.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3415 | engine.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3416 | engine.Friction = 0.3 | |
| 3417 | engine.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3418 | ||
| 3419 | mesh_140 = Instance.new("SpecialMesh", engine)
| |
| 3420 | mesh_140.MeshType = Enum.MeshType.Wedge | |
| 3421 | ||
| 3422 | part_147 = Instance.new("Part", mcarrier)
| |
| 3423 | part_147.FormFactor = Enum.FormFactor.Plate | |
| 3424 | part_147.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3425 | part_147.TopSurface = Enum.SurfaceType.Smooth | |
| 3426 | part_147.Material = Enum.Material.SmoothPlastic | |
| 3427 | part_147.Size = Vector3.new(1, 1.2, 2) | |
| 3428 | part_147.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3429 | part_147.CFrame = CFrame.new(2.5, 5.4, -165)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126) | |
| 3430 | part_147.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3431 | part_147.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3432 | part_147.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3433 | part_147.Friction = 0.3 | |
| 3434 | part_147.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3435 | ||
| 3436 | mesh_141 = Instance.new("SpecialMesh", part_147)
| |
| 3437 | mesh_141.MeshType = Enum.MeshType.Wedge | |
| 3438 | ||
| 3439 | part_148 = Instance.new("Part", mcarrier)
| |
| 3440 | part_148.FormFactor = Enum.FormFactor.Plate | |
| 3441 | part_148.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3442 | part_148.TopSurface = Enum.SurfaceType.Smooth | |
| 3443 | part_148.Material = Enum.Material.SmoothPlastic | |
| 3444 | part_148.Size = Vector3.new(5, 0.4, 1) | |
| 3445 | part_148.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3446 | part_148.CFrame = CFrame.new(-22, 1.3, -126.5)* CFrame.Angles(-1.5707963705063, 0, 1.5707963705063) | |
| 3447 | part_148.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3448 | part_148.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3449 | part_148.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3450 | part_148.Friction = 0.3 | |
| 3451 | part_148.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3452 | part_148.Name = "Wheelbar2" | |
| 3453 | ||
| 3454 | mesh_142 = Instance.new("BlockMesh", part_148)
| |
| 3455 | ||
| 3456 | part_149 = Instance.new("Part", mcarrier)
| |
| 3457 | part_149.FormFactor = Enum.FormFactor.Plate | |
| 3458 | part_149.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3459 | part_149.TopSurface = Enum.SurfaceType.Smooth | |
| 3460 | part_149.Material = Enum.Material.SmoothPlastic | |
| 3461 | part_149.Size = Vector3.new(1, 3.2, 3) | |
| 3462 | part_149.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3463 | part_149.CFrame = CFrame.new(8.5, 6.4, -155.5)* CFrame.Angles(-0, -1.5707963705063, 0) | |
| 3464 | part_149.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3465 | part_149.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3466 | part_149.BrickColor = BrickColor.new("Buttermilk")
| |
| 3467 | part_149.Friction = 0.3 | |
| 3468 | part_149.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3469 | ||
| 3470 | mesh_143 = Instance.new("BlockMesh", part_149)
| |
| 3471 | ||
| 3472 | part_150 = Instance.new("Part", mcarrier)
| |
| 3473 | part_150.FormFactor = Enum.FormFactor.Plate | |
| 3474 | part_150.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3475 | part_150.TopSurface = Enum.SurfaceType.Smooth | |
| 3476 | part_150.Material = Enum.Material.SmoothPlastic | |
| 3477 | part_150.Size = Vector3.new(1, 3.2, 19) | |
| 3478 | part_150.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3479 | part_150.CFrame = CFrame.new(-0.5, 6.4, -136.5) | |
| 3480 | part_150.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3481 | part_150.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3482 | part_150.BrickColor = BrickColor.new("Buttermilk")
| |
| 3483 | part_150.Friction = 0.3 | |
| 3484 | part_150.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3485 | ||
| 3486 | mesh_144 = Instance.new("BlockMesh", part_150)
| |
| 3487 | ||
| 3488 | part_151 = Instance.new("Part", mcarrier)
| |
| 3489 | part_151.FormFactor = Enum.FormFactor.Plate | |
| 3490 | part_151.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3491 | part_151.TopSurface = Enum.SurfaceType.Smooth | |
| 3492 | part_151.Material = Enum.Material.SmoothPlastic | |
| 3493 | part_151.Size = Vector3.new(1, 3.2, 19) | |
| 3494 | part_151.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3495 | part_151.CFrame = CFrame.new(10.5, 6.4, -136.5) | |
| 3496 | part_151.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3497 | part_151.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3498 | part_151.BrickColor = BrickColor.new("Buttermilk")
| |
| 3499 | part_151.Friction = 0.3 | |
| 3500 | part_151.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3501 | ||
| 3502 | mesh_145 = Instance.new("BlockMesh", part_151)
| |
| 3503 | ||
| 3504 | part_152 = Instance.new("Part", mcarrier)
| |
| 3505 | part_152.FormFactor = Enum.FormFactor.Plate | |
| 3506 | part_152.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3507 | part_152.TopSurface = Enum.SurfaceType.Smooth | |
| 3508 | part_152.Material = Enum.Material.SmoothPlastic | |
| 3509 | part_152.Size = Vector3.new(3, 0.8, 2) | |
| 3510 | part_152.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3511 | part_152.CFrame = CFrame.new(31.2, 1.2, -124.5)* CFrame.Angles(-1.5707963705063, 0, -1.5707963705063) | |
| 3512 | part_152.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3513 | part_152.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3514 | part_152.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3515 | part_152.Friction = 0.3 | |
| 3516 | part_152.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3517 | part_152.Name = "Wheel10" | |
| 3518 | ||
| 3519 | mesh_146 = Instance.new("CylinderMesh", part_152)
| |
| 3520 | ||
| 3521 | part_153 = Instance.new("Part", mcarrier)
| |
| 3522 | part_153.FormFactor = Enum.FormFactor.Plate | |
| 3523 | part_153.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3524 | part_153.TopSurface = Enum.SurfaceType.Smooth | |
| 3525 | part_153.Material = Enum.Material.SmoothPlastic | |
| 3526 | part_153.Size = Vector3.new(2, 0.8, 1) | |
| 3527 | part_153.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3528 | part_153.CFrame = CFrame.new(9, 6.3, -165.6)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126) | |
| 3529 | part_153.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3530 | part_153.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3531 | part_153.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3532 | part_153.Friction = 0.3 | |
| 3533 | part_153.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3534 | ||
| 3535 | mesh_147 = Instance.new("CylinderMesh", part_153)
| |
| 3536 | ||
| 3537 | part_154 = Instance.new("Part", mcarrier)
| |
| 3538 | part_154.FormFactor = Enum.FormFactor.Plate | |
| 3539 | part_154.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3540 | part_154.TopSurface = Enum.SurfaceType.Smooth | |
| 3541 | part_154.Material = Enum.Material.SmoothPlastic | |
| 3542 | part_154.Size = Vector3.new(2, 0.4, 2) | |
| 3543 | part_154.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3544 | part_154.CFrame = CFrame.new(1, 7.8, -167)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126) | |
| 3545 | part_154.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3546 | part_154.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3547 | part_154.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3548 | part_154.Friction = 0.3 | |
| 3549 | part_154.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3550 | ||
| 3551 | mesh_148 = Instance.new("SpecialMesh", part_154)
| |
| 3552 | mesh_148.MeshType = Enum.MeshType.Wedge | |
| 3553 | ||
| 3554 | part_155 = Instance.new("Part", mcarrier)
| |
| 3555 | part_155.FormFactor = Enum.FormFactor.Plate | |
| 3556 | part_155.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3557 | part_155.TopSurface = Enum.SurfaceType.Smooth | |
| 3558 | part_155.Material = Enum.Material.SmoothPlastic | |
| 3559 | part_155.Size = Vector3.new(2, 0.8, 1) | |
| 3560 | part_155.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3561 | part_155.CFrame = CFrame.new(1, 6.3, -165.6)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126) | |
| 3562 | part_155.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3563 | part_155.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3564 | part_155.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3565 | part_155.Friction = 0.3 | |
| 3566 | part_155.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3567 | ||
| 3568 | mesh_149 = Instance.new("CylinderMesh", part_155)
| |
| 3569 | ||
| 3570 | part_156 = Instance.new("Part", mcarrier)
| |
| 3571 | part_156.FormFactor = Enum.FormFactor.Plate | |
| 3572 | part_156.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3573 | part_156.TopSurface = Enum.SurfaceType.Smooth | |
| 3574 | part_156.Material = Enum.Material.SmoothPlastic | |
| 3575 | part_156.Size = Vector3.new(2, 0.4, 3) | |
| 3576 | part_156.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3577 | part_156.CFrame = CFrame.new(9, 6.3, -165)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126) | |
| 3578 | part_156.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3579 | part_156.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3580 | part_156.BrickColor = BrickColor.new("Dark stone grey")
| |
| 3581 | part_156.Friction = 0.3 | |
| 3582 | part_156.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3583 | ||
| 3584 | mesh_150 = Instance.new("CylinderMesh", part_156)
| |
| 3585 | mesh_150.Scale = Vector3.new(1.3, 1, 1) | |
| 3586 | ||
| 3587 | local identifylight = Instance.new("Part", mcarrier)
| |
| 3588 | identifylight.FormFactor = Enum.FormFactor.Custom | |
| 3589 | identifylight.LeftSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3590 | identifylight.TopSurface = Enum.SurfaceType.Smooth | |
| 3591 | identifylight.Material = Enum.Material.SmoothPlastic | |
| 3592 | identifylight.Size = Vector3.new(1, 1, 1) | |
| 3593 | identifylight.Name = "identifylight" | |
| 3594 | identifylight.FrontSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3595 | identifylight.CFrame = CFrame.new(10.8, 5.9, -163.3)* CFrame.Angles(-3.1415927410126, -1.5707963705063, 0) | |
| 3596 | identifylight.RightSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3597 | identifylight.BackSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3598 | identifylight.BrickColor = BrickColor.new("Really black")
| |
| 3599 | identifylight.Friction = 0.3 | |
| 3600 | identifylight.BottomSurface = Enum.SurfaceType.SmoothNoOutlines | |
| 3601 | ||
| 3602 | local light = Instance.new("PointLight", identifylight)
| |
| 3603 | light.Enabled = false | |
| 3604 | light.Name = "light" | |
| 3605 | light.Color = Color3.new(1, 0, 0) | |
| 3606 | light.Brightness = 20 | |
| 3607 | light.Range = 40 | |
| 3608 | ||
| 3609 | mcarrier:BreakJoints() | |
| 3610 | ||
| 3611 | local engine = mcarrier.mainseat | |
| 3612 | local propeller1 = mcarrier.propeller1 | |
| 3613 | local propeller2 = mcarrier.propeller2 | |
| 3614 | local propeller3 = mcarrier.propeller3 | |
| 3615 | local propeller4 = mcarrier.propeller4 | |
| 3616 | propeller1:BreakJoints() | |
| 3617 | propeller2:BreakJoints() | |
| 3618 | propeller3:BreakJoints() | |
| 3619 | propeller4:BreakJoints() | |
| 3620 | ||
| 3621 | local prev | |
| 3622 | local parts = mcarrier:GetChildren() | |
| 3623 | ||
| 3624 | for i = 1,#parts do | |
| 3625 | if (parts[i].className == "Part") or (parts[i].className == "WedgePart") or (parts[i].className == "Seat") or (parts[i].className == "VehicleSeat") or (parts[i].className == "CornerWedgePart") then | |
| 3626 | if (prev ~= nil)then | |
| 3627 | if parts[i]:FindFirstChild("Weld") then parts[i]:FindFirstChild("Weld"):Destroy() end
| |
| 3628 | local weld = Instance.new("Weld")
| |
| 3629 | weld.Part0 = prev | |
| 3630 | weld.Part1 = parts[i] | |
| 3631 | weld.C0 = prev.CFrame:inverse() | |
| 3632 | weld.C1 = parts[i].CFrame:inverse() | |
| 3633 | weld.Parent = prev | |
| 3634 | parts[i].CustomPhysicalProperties = PhysicalProperties.new(400,4,0.1) | |
| 3635 | end | |
| 3636 | prev = parts[i] | |
| 3637 | end | |
| 3638 | end | |
| 3639 | mcarrier:MakeJoints() | |
| 3640 | mcarrier.Parent = char | |
| 3641 | ||
| 3642 | ||
| 3643 | local prev | |
| 3644 | local parts = propeller1:GetChildren() | |
| 3645 | ||
| 3646 | for i = 1,#parts do | |
| 3647 | if (parts[i].className == "Part") or (parts[i].className == "WedgePart") or (parts[i].className == "Seat") or (parts[i].className == "VehicleSeat") or (parts[i].className == "CornerWedgePart") then | |
| 3648 | if (prev ~= nil)then | |
| 3649 | if parts[i]:FindFirstChild("Weld") then parts[i]:FindFirstChild("Weld"):Destroy() end
| |
| 3650 | local weld = Instance.new("Weld")
| |
| 3651 | weld.Part0 = prev | |
| 3652 | weld.Part1 = parts[i] | |
| 3653 | weld.C0 = prev.CFrame:inverse() | |
| 3654 | weld.C1 = parts[i].CFrame:inverse() | |
| 3655 | weld.Parent = prev | |
| 3656 | parts[i].CustomPhysicalProperties = PhysicalProperties.new(500,4,0) | |
| 3657 | end | |
| 3658 | prev = parts[i] | |
| 3659 | end | |
| 3660 | end | |
| 3661 | propeller1:MakeJoints() | |
| 3662 | ||
| 3663 | local prev | |
| 3664 | local parts = propeller2:GetChildren() | |
| 3665 | ||
| 3666 | for i = 1,#parts do | |
| 3667 | if (parts[i].className == "Part") or (parts[i].className == "WedgePart") or (parts[i].className == "Seat") or (parts[i].className == "VehicleSeat") or (parts[i].className == "CornerWedgePart") then | |
| 3668 | if (prev ~= nil)then | |
| 3669 | if parts[i]:FindFirstChild("Weld") then parts[i]:FindFirstChild("Weld"):Destroy() end
| |
| 3670 | local weld = Instance.new("Weld")
| |
| 3671 | weld.Part0 = prev | |
| 3672 | weld.Part1 = parts[i] | |
| 3673 | weld.C0 = prev.CFrame:inverse() | |
| 3674 | weld.C1 = parts[i].CFrame:inverse() | |
| 3675 | weld.Parent = prev | |
| 3676 | parts[i].CustomPhysicalProperties = PhysicalProperties.new(500,4,0) | |
| 3677 | end | |
| 3678 | prev = parts[i] | |
| 3679 | end | |
| 3680 | end | |
| 3681 | propeller2:MakeJoints() | |
| 3682 | ||
| 3683 | local prev | |
| 3684 | local parts = propeller3:GetChildren() | |
| 3685 | ||
| 3686 | for i = 1,#parts do | |
| 3687 | if (parts[i].className == "Part") or (parts[i].className == "WedgePart") or (parts[i].className == "Seat") or (parts[i].className == "VehicleSeat") or (parts[i].className == "CornerWedgePart") then | |
| 3688 | if (prev ~= nil)then | |
| 3689 | if parts[i]:FindFirstChild("Weld") then parts[i]:FindFirstChild("Weld"):Destroy() end
| |
| 3690 | local weld = Instance.new("Weld")
| |
| 3691 | weld.Part0 = prev | |
| 3692 | weld.Part1 = parts[i] | |
| 3693 | weld.C0 = prev.CFrame:inverse() | |
| 3694 | weld.C1 = parts[i].CFrame:inverse() | |
| 3695 | weld.Parent = prev | |
| 3696 | parts[i].CustomPhysicalProperties = PhysicalProperties.new(500,4,0) | |
| 3697 | end | |
| 3698 | prev = parts[i] | |
| 3699 | end | |
| 3700 | end | |
| 3701 | propeller3:MakeJoints() | |
| 3702 | ||
| 3703 | local prev | |
| 3704 | local parts = propeller4:GetChildren() | |
| 3705 | ||
| 3706 | for i = 1,#parts do | |
| 3707 | if (parts[i].className == "Part") or (parts[i].className == "WedgePart") or (parts[i].className == "Seat") or (parts[i].className == "VehicleSeat") or (parts[i].className == "CornerWedgePart") then | |
| 3708 | if (prev ~= nil)then | |
| 3709 | if parts[i]:FindFirstChild("Weld") then parts[i]:FindFirstChild("Weld"):Destroy() end
| |
| 3710 | local weld = Instance.new("Weld")
| |
| 3711 | weld.Part0 = prev | |
| 3712 | weld.Part1 = parts[i] | |
| 3713 | weld.C0 = prev.CFrame:inverse() | |
| 3714 | weld.C1 = parts[i].CFrame:inverse() | |
| 3715 | weld.Parent = prev | |
| 3716 | parts[i].CustomPhysicalProperties = PhysicalProperties.new(500,4,0) | |
| 3717 | end | |
| 3718 | prev = parts[i] | |
| 3719 | end | |
| 3720 | end | |
| 3721 | propeller4:MakeJoints() | |
| 3722 | ||
| 3723 | weld(propeller1.propellercenter, mcarrier.propeller1pos, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),0,0)) | |
| 3724 | weld(propeller2.propellercenter, mcarrier.propeller2pos, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),0,0)) | |
| 3725 | weld(propeller3.propellercenter, mcarrier.propeller3pos, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),0,0)) | |
| 3726 | weld(propeller4.propellercenter, mcarrier.propeller4pos, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),0,0)) | |
| 3727 | propeller1.propellercenter.Weld.Name = "propellerweld" | |
| 3728 | propeller2.propellercenter.Weld.Name = "propellerweld" | |
| 3729 | propeller3.propellercenter.Weld.Name = "propellerweld" | |
| 3730 | propeller4.propellercenter.Weld.Name = "propellerweld" | |
| 3731 | engine.CFrame = char["Left Leg"].CFrame*CFrame.new(5,40,15) | |
| 3732 | ||
| 3733 | ||
| 3734 | --PlaneSounds Start-- | |
| 3735 | local enginesound=Instance.new("Sound")
| |
| 3736 | enginesound.SoundId="http://www.roblox.com/asset/?id=142317661" | |
| 3737 | enginesound.PlayOnRemove=false | |
| 3738 | enginesound.Volume=0.95 | |
| 3739 | enginesound.Looped=true | |
| 3740 | enginesound.Pitch = 1 | |
| 3741 | enginesound.Parent=engine | |
| 3742 | local pros=Instance.new("Sound")
| |
| 3743 | pros.SoundId="http://www.roblox.com/asset/?id=133082569" | |
| 3744 | pros.PlayOnRemove=false | |
| 3745 | pros.Volume=0.85 | |
| 3746 | pros.Looped=true | |
| 3747 | pros.Pitch = 1 | |
| 3748 | pros.Parent=propeller1.propellercenter | |
| 3749 | local air=Instance.new("Sound")
| |
| 3750 | air.SoundId="http://www.roblox.com/asset/?id=142840797" | |
| 3751 | air.PlayOnRemove=false | |
| 3752 | air.Volume=5 | |
| 3753 | air.Looped=true | |
| 3754 | air.Pitch = 1 | |
| 3755 | air.Parent=engine | |
| 3756 | local pros2=Instance.new("Sound")
| |
| 3757 | pros2.SoundId="http://www.roblox.com/asset/?id=133082569" | |
| 3758 | pros2.PlayOnRemove=false | |
| 3759 | pros2.Volume=0.85 | |
| 3760 | pros2.Looped=true | |
| 3761 | pros2.Pitch = 1 | |
| 3762 | pros2.Parent=propeller3.propellercenter | |
| 3763 | --PlaneSounds End-- | |
| 3764 | ||
| 3765 | mouse.KeyDown:connect(function(key) | |
| 3766 | if key == "y" and engineon == false then | |
| 3767 | engineon = true | |
| 3768 | --enginesound:Play() | |
| 3769 | pros:Play() | |
| 3770 | pros2:Play() | |
| 3771 | while engineon == true do wait() | |
| 3772 | rotateangle = rotateangle + 10 | |
| 3773 | ||
| 3774 | propeller1.propellercenter.Weld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(rotateangle),0,0) | |
| 3775 | propeller2.propellercenter.Weld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(rotateangle),0,0) | |
| 3776 | propeller3.propellercenter.Weld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(rotateangle),0,0) | |
| 3777 | propeller4.propellercenter.Weld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(rotateangle),0,0) | |
| 3778 | end | |
| 3779 | end | |
| 3780 | end) | |
| 3781 | ||
| 3782 | local bg = Instance.new("BodyGyro",engine)
| |
| 3783 | bg.D = 500 | |
| 3784 | bg.MaxTorque = Vector3.new(0,0,0) | |
| 3785 | bg.P = 1000 | |
| 3786 | local bv = Instance.new("BodyVelocity",engine)
| |
| 3787 | bv.MaxForce = Vector3.new(0,0,0) | |
| 3788 | bv.P = 1250 | |
| 3789 | bv.Velocity = Vector3.new(0,0.16,0) | |
| 3790 | ||
| 3791 | mouse.KeyDown:connect(function(key) | |
| 3792 | if key == "u" and engineon == true then | |
| 3793 | engineon = false | |
| 3794 | --enginesound:Stop() | |
| 3795 | pros:Stop() | |
| 3796 | pros2:Stop() | |
| 3797 | air:Stop() | |
| 3798 | bv.MaxForce = Vector3.new(0,0,0) | |
| 3799 | --bg.CFrame = CFrame.new(engine.CFrame.p, mouse.Hit.p) | |
| 3800 | end | |
| 3801 | end) | |
| 3802 | ||
| 3803 | --Gui Start-- | |
| 3804 | local speedgui = Instance.new("ScreenGui", player.PlayerGui)
| |
| 3805 | speedgui.Name = "SpeedGui" | |
| 3806 | ||
| 3807 | local speedguibackground = Instance.new("Frame", speedgui)
| |
| 3808 | speedguibackground.Size = UDim2.new(0, 20, 0, 200) | |
| 3809 | speedguibackground.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843) | |
| 3810 | speedguibackground.Name = "speedguibackground" | |
| 3811 | speedguibackground.Position = UDim2.new(0.8, 0, 0.1, 0) | |
| 3812 | speedguibackground.BorderSizePixel = 0 | |
| 3813 | speedguibackground.BackgroundTransparency = 0.4 | |
| 3814 | speedguibackground.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 3815 | ||
| 3816 | local speedbar = Instance.new("Frame", speedgui)
| |
| 3817 | speedbar.Size = UDim2.new(0, 40, 0, 20) | |
| 3818 | speedbar.Draggable = true | |
| 3819 | speedbar.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843) | |
| 3820 | speedbar.Name = "speedbar" | |
| 3821 | speedbar.Position = UDim2.new(0.786, 0, 0.44, 0) | |
| 3822 | speedbar.BorderSizePixel = 0 | |
| 3823 | speedbar.BackgroundTransparency = 0.1 | |
| 3824 | speedbar.BackgroundColor3 = Color3.new(0, 0, 0) | |
| 3825 | ||
| 3826 | local textlabel = Instance.new("TextLabel", speedgui)
| |
| 3827 | textlabel.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 3828 | textlabel.BackgroundTransparency = 1 | |
| 3829 | textlabel.Size = UDim2.new(0, 200, 0, 50) | |
| 3830 | textlabel.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843) | |
| 3831 | textlabel.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843) | |
| 3832 | textlabel.Text = "Speed Meter" | |
| 3833 | textlabel.Position = UDim2.new(0.6, 0, 0.2, 0) | |
| 3834 | textlabel.Font = Enum.Font.SourceSans | |
| 3835 | textlabel.FontSize = Enum.FontSize.Size14 | |
| 3836 | ||
| 3837 | local speedadd = Instance.new("ImageButton", speedgui)
| |
| 3838 | speedadd.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 3839 | speedadd.Image = "http://www.roblox.com/asset/?id=13890082" | |
| 3840 | speedadd.Size = UDim2.new(0, 20, 0, 20) | |
| 3841 | speedadd.BackgroundTransparency = 1 | |
| 3842 | speedadd.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843) | |
| 3843 | speedadd.Name = "speedadd" | |
| 3844 | speedadd.Position = UDim2.new(0.7, 0, 0.28, 0) | |
| 3845 | ||
| 3846 | local speedsubtract = Instance.new("ImageButton", speedgui)
| |
| 3847 | speedsubtract.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 3848 | speedsubtract.Image = "http://www.roblox.com/asset/?id=57419479" | |
| 3849 | speedsubtract.Size = UDim2.new(0, 20, 0, 20) | |
| 3850 | speedsubtract.BackgroundTransparency = 1 | |
| 3851 | speedsubtract.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843) | |
| 3852 | speedsubtract.Name = "speedsubtract" | |
| 3853 | speedsubtract.Position = UDim2.new(0.733, 0, 0.28, 0) | |
| 3854 | ||
| 3855 | local planehealthlabel = Instance.new("TextLabel", speedgui)
| |
| 3856 | planehealthlabel.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 3857 | planehealthlabel.BackgroundTransparency = 1 | |
| 3858 | planehealthlabel.Size = UDim2.new(0, 200, 0, 50) | |
| 3859 | planehealthlabel.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843) | |
| 3860 | planehealthlabel.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843) | |
| 3861 | planehealthlabel.Text = "Plane Health:"..planehealth | |
| 3862 | planehealthlabel.Position = UDim2.new(0.6, 0, 0.3, 0) | |
| 3863 | planehealthlabel.Font = Enum.Font.SourceSans | |
| 3864 | planehealthlabel.Name = "planehealthlabel" | |
| 3865 | planehealthlabel.FontSize = Enum.FontSize.Size14 | |
| 3866 | ||
| 3867 | local toggledoor = Instance.new("TextLabel", speedgui)
| |
| 3868 | toggledoor.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 3869 | toggledoor.BackgroundTransparency = 1 | |
| 3870 | toggledoor.Size = UDim2.new(0, 200, 0, 50) | |
| 3871 | toggledoor.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843) | |
| 3872 | toggledoor.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843) | |
| 3873 | toggledoor.Text = "Toggle Door (H): Open" | |
| 3874 | ||
| 3875 | toggledoor.Position = UDim2.new(0.5, 0, 0.35, 0) | |
| 3876 | toggledoor.Font = Enum.Font.SourceSans | |
| 3877 | toggledoor.Name = "toggledoor" | |
| 3878 | toggledoor.FontSize = Enum.FontSize.Size14 | |
| 3879 | ||
| 3880 | local flightreadylabel = Instance.new("TextLabel", speedgui)
| |
| 3881 | flightreadylabel.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 3882 | flightreadylabel.BackgroundTransparency = 1 | |
| 3883 | flightreadylabel.Size = UDim2.new(0, 200, 0, 50) | |
| 3884 | flightreadylabel.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843) | |
| 3885 | flightreadylabel.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843) | |
| 3886 | flightreadylabel.Text = "Flight Mode(P): Autopilot" | |
| 3887 | ||
| 3888 | flightreadylabel.Position = UDim2.new(0.5, 0, 0.4, 0) | |
| 3889 | flightreadylabel.Font = Enum.Font.SourceSans | |
| 3890 | flightreadylabel.Name = "flightreadylabel" | |
| 3891 | flightreadylabel.FontSize = Enum.FontSize.Size14 | |
| 3892 | ||
| 3893 | local autointerference = Instance.new("TextLabel", speedgui)
| |
| 3894 | autointerference.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 3895 | autointerference.BackgroundTransparency = 1 | |
| 3896 | autointerference.Size = UDim2.new(0, 200, 0, 50) | |
| 3897 | autointerference.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843) | |
| 3898 | autointerference.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843) | |
| 3899 | autointerference.Text = "Anti Autopilot Interference(K, Disables W and Seats): Off" | |
| 3900 | ||
| 3901 | autointerference.Position = UDim2.new(0.5, 0, 0.45, 0) | |
| 3902 | autointerference.Font = Enum.Font.SourceSans | |
| 3903 | autointerference.Name = "autointerference" | |
| 3904 | autointerference.FontSize = Enum.FontSize.Size12 | |
| 3905 | ||
| 3906 | local togglewheel = Instance.new("TextLabel", speedgui)
| |
| 3907 | togglewheel.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 3908 | togglewheel.BackgroundTransparency = 1 | |
| 3909 | togglewheel.Size = UDim2.new(0, 200, 0, 50) | |
| 3910 | togglewheel.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843) | |
| 3911 | togglewheel.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843) | |
| 3912 | togglewheel.Text = "Toggle Wheels (X): On" | |
| 3913 | ||
| 3914 | togglewheel.Position = UDim2.new(0.5, 0, 0.5, 0) | |
| 3915 | togglewheel.Font = Enum.Font.SourceSans | |
| 3916 | togglewheel.Name = "togglewheel" | |
| 3917 | togglewheel.FontSize = Enum.FontSize.Size14 | |
| 3918 | ||
| 3919 | local togglelight = Instance.new("TextLabel", speedgui)
| |
| 3920 | togglelight.BackgroundColor3 = Color3.new(1, 1, 1) | |
| 3921 | togglelight.BackgroundTransparency = 1 | |
| 3922 | togglelight.Size = UDim2.new(0, 200, 0, 50) | |
| 3923 | togglelight.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843) | |
| 3924 | togglelight.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843) | |
| 3925 | togglelight.Text = "Toggle Light (L): Off" | |
| 3926 | ||
| 3927 | togglelight.Position = UDim2.new(0.5, 0, 0.55, 0) | |
| 3928 | togglelight.Font = Enum.Font.SourceSans | |
| 3929 | togglelight.Name = "togglelight" | |
| 3930 | togglelight.FontSize = Enum.FontSize.Size14 | |
| 3931 | ||
| 3932 | --Gui End-- | |
| 3933 | ||
| 3934 | speedadd.MouseButton1Click:connect(function() | |
| 3935 | speed = speed + 5 | |
| 3936 | if speed >= 150 then speed = 150 end | |
| 3937 | textlabel.Text = "Speed:"..speed | |
| 3938 | print("Speed:"..speed)
| |
| 3939 | speedbar.Position = UDim2.new(0.786, 0, speedbar.Position.Y.Scale - .01, 0) | |
| 3940 | end) | |
| 3941 | speedsubtract.MouseButton1Click:connect(function() | |
| 3942 | speed = speed - 5 | |
| 3943 | if speed <= 5 then speed = 5 end | |
| 3944 | textlabel.Text = "Speed:"..speed | |
| 3945 | print("Speed:"..speed)
| |
| 3946 | speedbar.Position = UDim2.new(0.786, 0, speedbar.Position.Y.Scale + .01, 0) | |
| 3947 | end) | |
| 3948 | ||
| 3949 | mouse.KeyDown:connect(function(key) | |
| 3950 | if key == "h" then | |
| 3951 | hpressed = hpressed + 1 | |
| 3952 | if hpressed == 1 then | |
| 3953 | toggledoor.Text = "Toggle Door (H): Closed" | |
| 3954 | mcarrier.troopdooropen.Transparency = 1 | |
| 3955 | mcarrier.troopdooropen.CanCollide = false | |
| 3956 | mcarrier.troopdoorclosed.Transparency = 0 | |
| 3957 | mcarrier.troopdoorclosed.CanCollide = true | |
| 3958 | end | |
| 3959 | if hpressed == 2 then | |
| 3960 | hpressed = 0 | |
| 3961 | toggledoor.Text = "Toggle Door (H): Open" | |
| 3962 | mcarrier.troopdoorclosed.Transparency = 1 | |
| 3963 | mcarrier.troopdoorclosed.CanCollide = false | |
| 3964 | mcarrier.troopdooropen.Transparency = 0 | |
| 3965 | mcarrier.troopdooropen.CanCollide = true | |
| 3966 | end | |
| 3967 | end | |
| 3968 | end) | |
| 3969 | ||
| 3970 | mouse.KeyDown:connect(function(key) | |
| 3971 | if key == "w" and engineon == true and kpressed == 0 then | |
| 3972 | wpressed = true | |
| 3973 | ||
| 3974 | bv.MaxForce = Vector3.new(9e20,9e20,9e20) | |
| 3975 | while wpressed == true do wait(.08) | |
| 3976 | if flightready == true then | |
| 3977 | bv.Velocity = (engine.CFrame.lookVector * speed) + Vector3.new(0,2,0) | |
| 3978 | air:Play() | |
| 3979 | end | |
| 3980 | if flightready == false then | |
| 3981 | bv.Velocity = (engine.CFrame.lookVector * 30) + Vector3.new(0,0,0) | |
| 3982 | air:Stop() | |
| 3983 | end | |
| 3984 | end | |
| 3985 | end | |
| 3986 | end) | |
| 3987 | mouse.KeyUp:connect(function(key) | |
| 3988 | if key == "w" and kpressed == 0 then | |
| 3989 | wpressed = false | |
| 3990 | bv.Velocity = Vector3.new(0,bv.Velocity.y,0) | |
| 3991 | end | |
| 3992 | end) | |
| 3993 | ||
| 3994 | mouse.KeyDown:connect(function(key) | |
| 3995 | if key == "p" and engineon == true then | |
| 3996 | ppressed = ppressed + 1 | |
| 3997 | if ppressed == 1 then | |
| 3998 | flightready = true | |
| 3999 | flightreadylabel.Text = "Flight Mode(P): Manual" | |
| 4000 | end | |
| 4001 | if ppressed == 2 then | |
| 4002 | ppressed = 0 | |
| 4003 | flightready = false | |
| 4004 | flightreadylabel.Text = "Flight Mode(P): Autopilot" | |
| 4005 | end | |
| 4006 | end | |
| 4007 | end) | |
| 4008 | ||
| 4009 | mouse.KeyDown:connect(function(key) | |
| 4010 | if key == "k" and engineon == true then | |
| 4011 | kpressed = kpressed + 1 | |
| 4012 | if kpressed ==1 then | |
| 4013 | autointerference.Text = "Anti Autopilot Interference(K, Disables W and Seats): On" | |
| 4014 | local seats = mcarrier:GetChildren() | |
| 4015 | ||
| 4016 | for i = 1,#seats do | |
| 4017 | if (seats[i].className == "Seat") then | |
| 4018 | if (prev ~= nil)then | |
| 4019 | seats[i].Disabled = true | |
| 4020 | end | |
| 4021 | prev = seats[i] | |
| 4022 | end | |
| 4023 | end | |
| 4024 | ||
| 4025 | end | |
| 4026 | if kpressed ==2 then | |
| 4027 | kpressed = 0 | |
| 4028 | autointerference.Text = "Anti Autopilot Interference(K, Disables W and Seats): Off" | |
| 4029 | local seats = mcarrier:GetChildren() | |
| 4030 | ||
| 4031 | for i = 1,#seats do | |
| 4032 | if (seats[i].className == "Seat") then | |
| 4033 | if (prev ~= nil)then | |
| 4034 | seats[i].Disabled = false | |
| 4035 | end | |
| 4036 | prev = seats[i] | |
| 4037 | end | |
| 4038 | end | |
| 4039 | ||
| 4040 | end | |
| 4041 | end | |
| 4042 | end) | |
| 4043 | ||
| 4044 | ||
| 4045 | game:GetService("RunService").RenderStepped:connect(function()
| |
| 4046 | if wpressed == true and engineon == true and flightready == true and kpressed == 0 then | |
| 4047 | bg.MaxTorque = Vector3.new(9e20,9e20,9e20) | |
| 4048 | bg.CFrame = CFrame.new(engine.CFrame.p, mouse.Hit.p) | |
| 4049 | end | |
| 4050 | end) | |
| 4051 | ||
| 4052 | mcarrier.crasherfront.Touched:connect(function(h) | |
| 4053 | planehealth = planehealth - math.random(1,5) | |
| 4054 | planehealthlabel.Text = "Plane Health:"..planehealth | |
| 4055 | end) | |
| 4056 | mcarrier.crasherleftwing.Touched:connect(function(h) | |
| 4057 | planehealth = planehealth - math.random(1,5) | |
| 4058 | planehealthlabel.Text = "Plane Health:"..planehealth | |
| 4059 | end) | |
| 4060 | mcarrier.crasherrightwing.Touched:connect(function(h) | |
| 4061 | planehealth = planehealth - math.random(1,5) | |
| 4062 | planehealthlabel.Text = "Plane Health:"..planehealth | |
| 4063 | end) | |
| 4064 | propeller1.propellercenter.Touched:connect(function(h) | |
| 4065 | planehealth = planehealth - math.random(1,5) | |
| 4066 | planehealthlabel.Text = "Plane Health:"..planehealth | |
| 4067 | end) | |
| 4068 | propeller2.propellercenter.Touched:connect(function(h) | |
| 4069 | planehealth = planehealth - math.random(1,5) | |
| 4070 | planehealthlabel.Text = "Plane Health:"..planehealth | |
| 4071 | end) | |
| 4072 | propeller3.propellercenter.Touched:connect(function(h) | |
| 4073 | planehealth = planehealth - math.random(1,5) | |
| 4074 | planehealthlabel.Text = "Plane Health:"..planehealth | |
| 4075 | end) | |
| 4076 | propeller4.propellercenter.Touched:connect(function(h) | |
| 4077 | planehealth = planehealth - math.random(1,5) | |
| 4078 | planehealthlabel.Text = "Plane Health:"..planehealth | |
| 4079 | end) | |
| 4080 | ||
| 4081 | mouse.KeyDown:connect(function(key) | |
| 4082 | if key == "l" then | |
| 4083 | lpressed = lpressed + 1 | |
| 4084 | if lpressed == 1 then | |
| 4085 | togglelight.Text = "Toggle Light (L): On" | |
| 4086 | while lpressed == 1 do wait(.4) | |
| 4087 | light.Enabled = true | |
| 4088 | identifylight.BrickColor = BrickColor.new("Really red")
| |
| 4089 | wait(.4) | |
| 4090 | light.Enabled = false | |
| 4091 | identifylight.BrickColor = BrickColor.new("Really black")
| |
| 4092 | end | |
| 4093 | end | |
| 4094 | if lpressed == 2 then | |
| 4095 | lpressed = 0 | |
| 4096 | togglelight.Text = "Toggle Light (L): Off" | |
| 4097 | light.Enabled = false | |
| 4098 | identifylight.BrickColor = BrickColor.new("Really black")
| |
| 4099 | end | |
| 4100 | end | |
| 4101 | end) | |
| 4102 | ||
| 4103 | mouse.KeyDown:connect(function(key) | |
| 4104 | if key == "x" then | |
| 4105 | xpressed = xpressed + 1 | |
| 4106 | if xpressed == 1 then | |
| 4107 | togglewheel.Text = "Toggle Wheels (X): Off" | |
| 4108 | mcarrier.Wheelbar1.Transparency = 1 | |
| 4109 | mcarrier.Wheelbar2.Transparency = 1 | |
| 4110 | mcarrier.Wheelbar1.CanCollide = false | |
| 4111 | mcarrier.Wheelbar2.CanCollide = false | |
| 4112 | mcarrier.Wheelline1.Transparency = 1 | |
| 4113 | mcarrier.Wheelline2.Transparency = 1 | |
| 4114 | mcarrier.Wheelline3.Transparency = 1 | |
| 4115 | mcarrier.Wheelline1.CanCollide = false | |
| 4116 | mcarrier.Wheelline2.CanCollide = false | |
| 4117 | mcarrier.Wheelline3.CanCollide = false | |
| 4118 | mcarrier.Wheel1.Transparency = 1 | |
| 4119 | mcarrier.Wheel2.Transparency = 1 | |
| 4120 | mcarrier.Wheel3.Transparency = 1 | |
| 4121 | mcarrier.Wheel4.Transparency = 1 | |
| 4122 | mcarrier.Wheel5.Transparency = 1 | |
| 4123 | mcarrier.Wheel6.Transparency = 1 | |
| 4124 | mcarrier.Wheel7.Transparency = 1 | |
| 4125 | mcarrier.Wheel8.Transparency = 1 | |
| 4126 | mcarrier.Wheel9.Transparency = 1 | |
| 4127 | mcarrier.Wheel10.Transparency = 1 | |
| 4128 | mcarrier.Wheel1.CanCollide = false | |
| 4129 | mcarrier.Wheel2.CanCollide = false | |
| 4130 | mcarrier.Wheel3.CanCollide = false | |
| 4131 | mcarrier.Wheel4.CanCollide = false | |
| 4132 | mcarrier.Wheel5.CanCollide = false | |
| 4133 | mcarrier.Wheel6.CanCollide = false | |
| 4134 | mcarrier.Wheel7.CanCollide = false | |
| 4135 | mcarrier.Wheel8.CanCollide = false | |
| 4136 | mcarrier.Wheel9.CanCollide = false | |
| 4137 | mcarrier.Wheel10.CanCollide = false | |
| 4138 | end | |
| 4139 | if xpressed == 2 then | |
| 4140 | xpressed = 0 | |
| 4141 | togglewheel.Text = "Toggle Wheels (X): On" | |
| 4142 | mcarrier.Wheelbar1.Transparency = 0 | |
| 4143 | mcarrier.Wheelbar2.Transparency = 0 | |
| 4144 | mcarrier.Wheelbar1.CanCollide = true | |
| 4145 | mcarrier.Wheelbar2.CanCollide = true | |
| 4146 | mcarrier.Wheel1.Transparency = 0 | |
| 4147 | mcarrier.Wheelline1.Transparency = 0 | |
| 4148 | mcarrier.Wheelline2.Transparency = 0 | |
| 4149 | mcarrier.Wheelline3.Transparency = 0 | |
| 4150 | mcarrier.Wheelline1.CanCollide = true | |
| 4151 | mcarrier.Wheelline2.CanCollide = true | |
| 4152 | mcarrier.Wheelline3.CanCollide = true | |
| 4153 | mcarrier.Wheel2.Transparency = 0 | |
| 4154 | mcarrier.Wheel3.Transparency = 0 | |
| 4155 | mcarrier.Wheel4.Transparency = 0 | |
| 4156 | mcarrier.Wheel5.Transparency = 0 | |
| 4157 | mcarrier.Wheel6.Transparency = 0 | |
| 4158 | mcarrier.Wheel7.Transparency = 0 | |
| 4159 | mcarrier.Wheel8.Transparency = 0 | |
| 4160 | mcarrier.Wheel9.Transparency = 0 | |
| 4161 | mcarrier.Wheel10.Transparency = 0 | |
| 4162 | mcarrier.Wheel1.CanCollide = true | |
| 4163 | mcarrier.Wheel2.CanCollide = true | |
| 4164 | mcarrier.Wheel3.CanCollide = true | |
| 4165 | mcarrier.Wheel4.CanCollide = true | |
| 4166 | mcarrier.Wheel5.CanCollide = true | |
| 4167 | mcarrier.Wheel6.CanCollide = true | |
| 4168 | mcarrier.Wheel7.CanCollide = true | |
| 4169 | mcarrier.Wheel8.CanCollide = true | |
| 4170 | mcarrier.Wheel9.CanCollide = true | |
| 4171 | mcarrier.Wheel10.CanCollide = true | |
| 4172 | end | |
| 4173 | end | |
| 4174 | end) |