zza

drone

zza
May 11th, 2020
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 71.40 KB | None | 0 0
  1. if game:GetService("RunService"):IsClient()then error("Please run as a server script. Use h/ instead of hl/.")end;print("FE Compatibility: by WaverlyCole");InternalData = {}
  2. do
  3. script.Parent = owner.Character
  4. local Event = Instance.new("RemoteEvent");Event.Name = "UserInput"
  5. local function NewFakeEvent()
  6. local Bind = Instance.new("BindableEvent")
  7. local Fake;Fake = {Connections = {},
  8. fakeEvent=true;
  9. Connect=function(self,Func)
  10. Bind.Event:connect(Func)
  11. self.Connections[Bind] = true
  12. return setmetatable({Connected = true},{
  13. __index = function (self,Index)
  14. if Index:lower() == "disconnect" then
  15. return function() Fake.Connections[Bind] = false;self.Connected = false end
  16. end
  17. return Fake[Index]
  18. end;
  19. __tostring = function() return "Connection" end;
  20. })
  21. end}
  22. Fake.connect = Fake.Connect;return Fake;
  23. end
  24. local Mouse = {Target=nil,Hit=CFrame.new(),KeyUp=NewFakeEvent(),KeyDown=NewFakeEvent(),Button1Up=NewFakeEvent(),Button1Down=NewFakeEvent()}
  25. local UserInputService = {InputBegan=NewFakeEvent(),InputEnded=NewFakeEvent()}
  26. local ContextActionService = {Actions={},BindAction = function(self,actionName,Func,touch,...)
  27. self.Actions[actionName] = Func and {Name=actionName,Function=Func,Keys={...}} or nil
  28. end};ContextActionService.UnBindAction = ContextActionService.BindAction
  29. local function TriggerEvent(self,Event,...)
  30. local Trigger = Mouse[Event]
  31. if Trigger and Trigger.fakeEvent and Trigger.Connections then
  32. for Connection,Active in pairs(Trigger.Connections) do if Active then Connection:Fire(...) end end
  33. end
  34. end
  35. Mouse.TrigEvent = TriggerEvent;UserInputService.TrigEvent = TriggerEvent
  36. Event.OnServerEvent:Connect(function(FiredBy,Input)
  37. if FiredBy.Name ~= owner.Name then return end
  38. if Input.MouseEvent then
  39. Mouse.Target = Input.Target;Mouse.Hit = Input.Hit
  40. else
  41. local Begin = Input.UserInputState == Enum.UserInputState.Begin
  42. if Input.UserInputType == Enum.UserInputType.MouseButton1 then return Mouse:TrigEvent(Begin and "Button1Down" or "Button1Up") end
  43. for _,Action in pairs(ContextActionService.Actions) do
  44. for _,Key in pairs(Action.Keys) do if Key==Input.KeyCode then Action.Function(Action.Name,Input.UserInputState,Input) end end
  45. end
  46. Mouse:TrigEvent(Begin and "KeyDown" or "KeyUp",Input.KeyCode.Name:lower())
  47. UserInputService:TrigEvent(Begin and "InputBegan" or "InputEnded",Input,false)
  48. end
  49. end)
  50. InternalData["Mouse"] = Mouse;InternalData["ContextActionService"] = ContextActionService;InternalData["UserInputService"] = UserInputService
  51. Event.Parent = NLS([[
  52. local Player = owner;local Event = script:WaitForChild("UserInput");local UserInputService = game:GetService("UserInputService");local Mouse = Player:GetMouse()
  53. local Input = function(Input,gameProcessedEvent)
  54. if gameProcessedEvent then return end
  55. Event:FireServer({KeyCode=Input.KeyCode,UserInputType=Input.UserInputType,UserInputState=Input.UserInputState})
  56. end
  57. UserInputService.InputBegan:Connect(Input);UserInputService.InputEnded:Connect(Input)
  58. local Hit,Target
  59. while wait(1/30) do
  60. if Hit ~= Mouse.Hit or Target ~= Mouse.Target then
  61. Hit,Target = Mouse.Hit,Mouse.Target;Event:FireServer({["MouseEvent"]=true,["Target"]=Target,["Hit"]=Hit})
  62. end
  63. end
  64. ]],owner.Character)
  65. end
  66. RealGame = game;game = setmetatable({},{
  67. __index = function (self,Index)
  68. local Sandbox = function (Thing)
  69. if Thing:IsA("Player") then
  70. local RealPlayer = Thing
  71. return setmetatable({},{
  72. __index = function (self,Index)
  73. local Type = type(RealPlayer[Index])
  74. if Type == "function" then
  75. if Index:lower() == "getmouse" or Index:lower() == "mouse" then
  76. return function (self)return InternalData["Mouse"] end
  77. end
  78. return function (self,...)return RealPlayer[Index](RealPlayer,...) end
  79. end
  80. return RealPlayer[Index]
  81. end;
  82. __tostring = function(self) return RealPlayer.Name end
  83. })
  84. end
  85. end
  86. if RealGame[Index] then
  87. local Type = type(RealGame[Index])
  88. if Type == "function" then
  89. if Index:lower() == "getservice" or Index:lower() == "service" then
  90. return function (self,Service)
  91. local FakeServices = {
  92. ["players"] = function()
  93. return setmetatable({},{
  94. __index = function (self2,Index2)
  95. local RealService = RealGame:GetService(Service)
  96. local Type2 = type(Index2)
  97. if Type2 == "function" then
  98. return function (self,...) return RealService[Index2](RealService,...)end
  99. else
  100. if Index2:lower() == "localplayer" then return Sandbox(owner) end
  101. return RealService[Index2]
  102. end
  103. end;
  104. __tostring = function(self) return RealGame:GetService(Service).Name end
  105. })
  106. end;
  107. ["contextactionservice"] = function() return InternalData["ContextActionService"] end;
  108. ["userinputservice"] = function() return InternalData["UserInputService"] end;
  109. ["runservice"] = function()
  110. return setmetatable({},{
  111. __index = function(self2,Index2)
  112. local RealService = RealGame:GetService(Service)
  113. local Type2 = type(Index2)
  114. if Type2 == "function" then
  115. return function (self,...) return RealService[Index2](RealService,...) end
  116. else
  117. local RunServices = {
  118. ["bindtorenderstep"] = function() return function (self,Name,Priority,Function) return RealGame:GetService("RunService").Stepped:Connect(Function) end end;
  119. ["renderstepped"] = function() return RealService["Stepped"] end
  120. }
  121. if RunServices[Index2:lower()] then return RunServices[Index2:lower()]() end
  122. return RealService[Index2]
  123. end
  124. end
  125. })
  126. end
  127. }
  128. if FakeServices[Service:lower()] then return FakeServices[Service:lower()]() end
  129. return RealGame:GetService(Service)
  130. end
  131. end
  132. return function (self,...) return RealGame[Index](RealGame,...) end
  133. else
  134. if game:GetService(Index) then return game:GetService(Index) end
  135. return RealGame[Index]
  136. end
  137. end
  138. return nil
  139. end
  140. });Game = game;owner = game:GetService("Players").LocalPlayer;script = Instance.new("Script");print("Complete! Running...")
  141.  
  142.  
  143. wait(2)
  144.  
  145. local plr = game:GetService("Players").LocalPlayer
  146. local char,mouse = plr.Character,plr:GetMouse()
  147. local camera = game:GetService("Workspace").CurrentCamera
  148. local fly = false
  149. local campos = CFrame.new(0,0,0)
  150.  
  151. local wd,ad,sd,dd,qd,ed,rd,fd,moused = false,false,false,false,false,false,false,false,false
  152.  
  153. local returnhome = true
  154. local gun = false
  155. local gcd = false
  156. local shooting = false
  157. local tPitch = 3
  158.  
  159. local tCf = CFrame.new(0,20,0)
  160.  
  161. o1 = Instance.new("Model")
  162. o2 = Instance.new("Part")
  163. o3 = Instance.new("BlockMesh")
  164. o4 = Instance.new("Part")
  165. o5 = Instance.new("BlockMesh")
  166. o6 = Instance.new("Part")
  167. o7 = Instance.new("Part")
  168. o8 = Instance.new("BlockMesh")
  169. o9 = Instance.new("Part")
  170. o10 = Instance.new("BlockMesh")
  171. o11 = Instance.new("Part")
  172. o12 = Instance.new("CylinderMesh")
  173. o13 = Instance.new("Part")
  174. o14 = Instance.new("BlockMesh")
  175. o15 = Instance.new("Part")
  176. o16 = Instance.new("BlockMesh")
  177. o17 = Instance.new("Part")
  178. o18 = Instance.new("BlockMesh")
  179. o19 = Instance.new("Part")
  180. o20 = Instance.new("Part")
  181. o21 = Instance.new("BlockMesh")
  182. o22 = Instance.new("Part")
  183. o23 = Instance.new("BlockMesh")
  184. o24 = Instance.new("Part")
  185. o25 = Instance.new("BlockMesh")
  186. o26 = Instance.new("Part")
  187. o27 = Instance.new("Part")
  188. o28 = Instance.new("Part")
  189. o29 = Instance.new("BlockMesh")
  190. o30 = Instance.new("Part")
  191. o31 = Instance.new("BlockMesh")
  192. o32 = Instance.new("Part")
  193. o33 = Instance.new("Part")
  194. o34 = Instance.new("BlockMesh")
  195. o35 = Instance.new("Part")
  196. o36 = Instance.new("CylinderMesh")
  197. o37 = Instance.new("Part")
  198. o38 = Instance.new("CylinderMesh")
  199. o39 = Instance.new("SpotLight")
  200. o40 = Instance.new("Model")
  201. o41 = Instance.new("Part")
  202. o42 = Instance.new("BlockMesh")
  203. o43 = Instance.new("Part")
  204. o44 = Instance.new("BlockMesh")
  205. o45 = Instance.new("Part")
  206. o46 = Instance.new("BlockMesh")
  207. o47 = Instance.new("Part")
  208. o48 = Instance.new("BlockMesh")
  209. o49 = Instance.new("Part")
  210. o50 = Instance.new("BlockMesh")
  211. o51 = Instance.new("Part")
  212. o52 = Instance.new("BlockMesh")
  213. o53 = Instance.new("Model")
  214. o54 = Instance.new("Part")
  215. o55 = Instance.new("BlockMesh")
  216. o56 = Instance.new("Part")
  217. o57 = Instance.new("BlockMesh")
  218. o58 = Instance.new("Part")
  219. o59 = Instance.new("BlockMesh")
  220. o60 = Instance.new("Part")
  221. o61 = Instance.new("BlockMesh")
  222. o62 = Instance.new("Part")
  223. o63 = Instance.new("BlockMesh")
  224. o64 = Instance.new("Part")
  225. o65 = Instance.new("BlockMesh")
  226. o66 = Instance.new("Part")
  227. o67 = Instance.new("BlockMesh")
  228. o68 = Instance.new("Part")
  229. o69 = Instance.new("BlockMesh")
  230. o70 = Instance.new("Part")
  231. o71 = Instance.new("Model")
  232. o72 = Instance.new("Part")
  233. o73 = Instance.new("BlockMesh")
  234. o74 = Instance.new("Part")
  235. o75 = Instance.new("BlockMesh")
  236. o76 = Instance.new("Part")
  237. o77 = Instance.new("BlockMesh")
  238. o78 = Instance.new("Part")
  239. o79 = Instance.new("BlockMesh")
  240. o80 = Instance.new("Part")
  241. o81 = Instance.new("BlockMesh")
  242. o82 = Instance.new("Part")
  243. o83 = Instance.new("BlockMesh")
  244. o84 = Instance.new("Model")
  245. o85 = Instance.new("Part")
  246. o86 = Instance.new("BlockMesh")
  247. o87 = Instance.new("Part")
  248. o88 = Instance.new("BlockMesh")
  249. o89 = Instance.new("Part")
  250. o90 = Instance.new("BlockMesh")
  251. o91 = Instance.new("Part")
  252. o92 = Instance.new("BlockMesh")
  253. o93 = Instance.new("Part")
  254. o94 = Instance.new("BlockMesh")
  255. o95 = Instance.new("Part")
  256. o96 = Instance.new("BlockMesh")
  257. o97 = Instance.new("Part")
  258. o98 = Instance.new("Model")
  259. o99 = Instance.new("Part")
  260. o100 = Instance.new("CylinderMesh")
  261. o101 = Instance.new("Part")
  262. o102 = Instance.new("CylinderMesh")
  263. o103 = Instance.new("Part")
  264. o104 = Instance.new("CylinderMesh")
  265. o105 = Instance.new("Part")
  266. o106 = Instance.new("CylinderMesh")
  267. o107 = Instance.new("Part")
  268. o108 = Instance.new("CylinderMesh")
  269. o109 = Instance.new("Part")
  270. local s = Instance.new("Sound",char)
  271. s.SoundId = "http://www.roblox.com/asset/?id=146830287"
  272. s.Parent = o1.PrimaryPart
  273. s.Pitch = 1
  274. s.Volume = 1
  275. s.Looped = true
  276. wait(0.1)
  277. s:play()
  278.  
  279. o1.Name = "Drone"
  280. o1.Parent = game.Players.LocalPlayer.Character
  281. o2.Parent = o1
  282. o2.Material = Enum.Material.SmoothPlastic
  283. o2.BrickColor = BrickColor.new("Institutional white")
  284. o2.Position = Vector3.new(13.0515203, 41.184063, -70.0561295)
  285. o2.Anchored = true
  286. o2.CanCollide = false
  287. o2.Size = Vector3.new(0.200000003, 0.200000003, 0.432551533)
  288. o2.CFrame = CFrame.new(13.0515203, 41.184063, -70.0561295, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  289. o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  290. o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  291. o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  292. o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  293. o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  294. o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  295. o2.Color = Color3.new(0.972549, 0.972549, 0.972549)
  296. o2.Position = Vector3.new(13.0515203, 41.184063, -70.0561295)
  297. o3.Parent = o2
  298. o3.Scale = Vector3.new(0.337930918, 0.270344734, 1)
  299. o4.Parent = o1
  300. o4.Material = Enum.Material.SmoothPlastic
  301. o4.BrickColor = BrickColor.new("Institutional white")
  302. o4.Position = Vector3.new(11.0104322, 40.8393707, -70.0561218)
  303. o4.Anchored = true
  304. o4.CanCollide = false
  305. o4.Size = Vector3.new(0.200000003, 0.7434479, 0.432551622)
  306. o4.CFrame = CFrame.new(11.0104322, 40.8393707, -70.0561218, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  307. o4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  308. o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  309. o4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  310. o4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  311. o4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  312. o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  313. o4.Color = Color3.new(0.972549, 0.972549, 0.972549)
  314. o4.Position = Vector3.new(11.0104322, 40.8393707, -70.0561218)
  315. o5.Parent = o4
  316. o5.Scale = Vector3.new(0.337930918, 1, 1)
  317. o6.Parent = o1
  318. o6.Material = Enum.Material.SmoothPlastic
  319. o6.BrickColor = BrickColor.new("Institutional white")
  320. o6.Position = Vector3.new(12.0309782, 40.8393707, -70.5968246)
  321. o6.Anchored = true
  322. o6.Size = Vector3.new(2.10868883, 0.7434479, 0.648827374)
  323. o6.CFrame = CFrame.new(12.0309782, 40.8393707, -70.5968246, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  324. o6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  325. o6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  326. o6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  327. o6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  328. o6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  329. o6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  330. o6.Color = Color3.new(0.972549, 0.972549, 0.972549)
  331. o6.Position = Vector3.new(12.0309782, 40.8393707, -70.5968246)
  332. o7.Parent = o1
  333. o7.Material = Enum.Material.SmoothPlastic
  334. o7.BrickColor = BrickColor.new("Institutional white")
  335. o7.Position = Vector3.new(13.0380087, 40.9340019, -70.0561295)
  336. o7.Anchored = true
  337. o7.CanCollide = false
  338. o7.Size = Vector3.new(0.200000003, 0.446068704, 0.432551533)
  339. o7.CFrame = CFrame.new(13.0380087, 40.9340019, -70.0561295, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  340. o7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  341. o7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  342. o7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  343. o7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  344. o7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  345. o7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  346. o7.Color = Color3.new(0.972549, 0.972549, 0.972549)
  347. o7.Position = Vector3.new(13.0380087, 40.9340019, -70.0561295)
  348. o8.Parent = o7
  349. o8.Scale = Vector3.new(0.202758551, 1, 1)
  350. o9.Parent = o1
  351. o9.Material = Enum.Material.SmoothPlastic
  352. o9.BrickColor = BrickColor.new("Institutional white")
  353. o9.Position = Vector3.new(13.0515203, 40.4946709, -70.0561295)
  354. o9.Anchored = true
  355. o9.CanCollide = false
  356. o9.Size = Vector3.new(0.200000003, 0.200000003, 0.432551533)
  357. o9.CFrame = CFrame.new(13.0515203, 40.4946709, -70.0561295, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  358. o9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  359. o9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  360. o9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  361. o9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  362. o9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  363. o9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  364. o9.Color = Color3.new(0.972549, 0.972549, 0.972549)
  365. o9.Position = Vector3.new(13.0515203, 40.4946709, -70.0561295)
  366. o10.Parent = o9
  367. o10.Scale = Vector3.new(0.337930918, 0.270344734, 1)
  368. o11.Parent = o1
  369. o11.Material = Enum.Material.SmoothPlastic
  370. o11.BrickColor = BrickColor.new("Really black")
  371. o11.Position = Vector3.new(13.0447683, 40.9407463, -70.0561218)
  372. o11.Rotation = Vector3.new(-0, 0, -89.9999771)
  373. o11.Anchored = true
  374. o11.CanCollide = false
  375. o11.Size = Vector3.new(0.432551593, 0.200000003, 0.432551533)
  376. o11.CFrame = CFrame.new(13.0447683, 40.9407463, -70.0561218, 4.17232513e-07, 1.00000525, 0, -1.00000525, 4.17232513e-07, 0, 0, 0, 1)
  377. o11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  378. o11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  379. o11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  380. o11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  381. o11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  382. o11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  383. o11.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  384. o11.Position = Vector3.new(13.0447683, 40.9407463, -70.0561218)
  385. o12.Parent = o11
  386. o12.Scale = Vector3.new(1, 0.270344734, 1)
  387. o13.Parent = o1
  388. o13.Material = Enum.Material.SmoothPlastic
  389. o13.BrickColor = BrickColor.new("Institutional white")
  390. o13.Position = Vector3.new(11.6057615, 40.8393707, -71.2487564)
  391. o13.Rotation = Vector3.new(-180, 14.9999971, -180)
  392. o13.Anchored = true
  393. o13.CanCollide = false
  394. o13.Size = Vector3.new(1.08137906, 0.200000003, 0.200000003)
  395. o13.CFrame = CFrame.new(11.6057615, 40.8393707, -71.2487564, -0.965925872, 0, 0.258818984, 0, 1, 0, -0.258818984, 0, -0.965925872)
  396. o13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  397. o13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  398. o13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  399. o13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  400. o13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  401. o13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  402. o13.Color = Color3.new(0.972549, 0.972549, 0.972549)
  403. o13.Position = Vector3.new(11.6057615, 40.8393707, -71.2487564)
  404. o14.Parent = o13
  405. o14.Scale = Vector3.new(1, 0.473103225, 0.946206748)
  406. o15.Parent = o1
  407. o15.Material = Enum.Material.SmoothPlastic
  408. o15.BrickColor = BrickColor.new("Institutional white")
  409. o15.Position = Vector3.new(12.0377378, 40.8393707, -69.1775131)
  410. o15.Anchored = true
  411. o15.CanCollide = false
  412. o15.Size = Vector3.new(1.82482684, 0.608275533, 0.200000003)
  413. o15.CFrame = CFrame.new(12.0377378, 40.8393707, -69.1775131, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  414. o15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  415. o15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  416. o15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  417. o15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  418. o15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  419. o15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  420. o15.Color = Color3.new(0.972549, 0.972549, 0.972549)
  421. o15.Position = Vector3.new(12.0377378, 40.8393707, -69.1775131)
  422. o16.Parent = o15
  423. o16.Scale = Vector3.new(1, 1, 0.540689588)
  424. o17.Parent = o1
  425. o17.Material = Enum.Material.SmoothPlastic
  426. o17.BrickColor = BrickColor.new("Institutional white")
  427. o17.Position = Vector3.new(11.5763578, 40.8393707, -68.866394)
  428. o17.Rotation = Vector3.new(-0, 14.9999971, -180)
  429. o17.Anchored = true
  430. o17.CanCollide = false
  431. o17.Size = Vector3.new(1.08137906, 0.200000003, 0.200000003)
  432. o17.CFrame = CFrame.new(11.5763578, 40.8393707, -68.866394, -0.965925872, 0, 0.258818984, 0, -1, 0, 0.258818984, 0, 0.965925872)
  433. o17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  434. o17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  435. o17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  436. o17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  437. o17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  438. o17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  439. o17.Color = Color3.new(0.972549, 0.972549, 0.972549)
  440. o17.Position = Vector3.new(11.5763578, 40.8393707, -68.866394)
  441. o18.Parent = o17
  442. o18.Scale = Vector3.new(1, 0.473103225, 0.946206748)
  443. o19.Parent = o1
  444. o19.Material = Enum.Material.SmoothPlastic
  445. o19.BrickColor = BrickColor.new("Institutional white")
  446. o19.Position = Vector3.new(13.1865072, 40.8325996, -71.4201889)
  447. o19.Rotation = Vector3.new(-180, -14.9999971, -0)
  448. o19.Anchored = true
  449. o19.Size = Vector3.new(0.243310437, 0.243310243, 0.243310302)
  450. o19.CFrame = CFrame.new(13.1865072, 40.8325996, -71.4201889, 0.965925872, 0, -0.258818984, 0, -1, 0, -0.258818984, 0, -0.965925872)
  451. o19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  452. o19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  453. o19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  454. o19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  455. o19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  456. o19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  457. o19.Color = Color3.new(0.972549, 0.972549, 0.972549)
  458. o19.Position = Vector3.new(13.1865072, 40.8325996, -71.4201889)
  459. o20.Parent = o1
  460. o20.Material = Enum.Material.SmoothPlastic
  461. o20.BrickColor = BrickColor.new("Institutional white")
  462. o20.Position = Vector3.new(12.0650892, 40.8393707, -71.0390167)
  463. o20.Rotation = Vector3.new(-180, 0, -180)
  464. o20.Anchored = true
  465. o20.CanCollide = false
  466. o20.Size = Vector3.new(0.432551652, 0.202758521, 0.200000003)
  467. o20.CFrame = CFrame.new(12.0650892, 40.8393707, -71.0390167, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  468. o20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  469. o20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  470. o20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  471. o20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  472. o20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  473. o20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  474. o20.Color = Color3.new(0.972549, 0.972549, 0.972549)
  475. o20.Position = Vector3.new(12.0650892, 40.8393707, -71.0390167)
  476. o21.Parent = o20
  477. o21.Scale = Vector3.new(1, 1, 0.878620446)
  478. o22.Parent = o1
  479. o22.Material = Enum.Material.SmoothPlastic
  480. o22.BrickColor = BrickColor.new("Institutional white")
  481. o22.Position = Vector3.new(12.517333, 40.8393707, -68.866394)
  482. o22.Rotation = Vector3.new(-0, -15.0000248, -0)
  483. o22.Anchored = true
  484. o22.CanCollide = false
  485. o22.Size = Vector3.new(1.08137906, 0.200000003, 0.200000003)
  486. o22.CFrame = CFrame.new(12.517333, 40.8393707, -68.866394, 0.965927541, 0, -0.258819461, 0, 1, 0, 0.258819461, 0, 0.965927541)
  487. o22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  488. o22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  489. o22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  490. o22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  491. o22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  492. o22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  493. o22.Color = Color3.new(0.972549, 0.972549, 0.972549)
  494. o22.Position = Vector3.new(12.517333, 40.8393707, -68.866394)
  495. o23.Parent = o22
  496. o23.Scale = Vector3.new(1, 0.473103225, 0.946206748)
  497. o24.Parent = o1
  498. o24.Material = Enum.Material.SmoothPlastic
  499. o24.BrickColor = BrickColor.new("Institutional white")
  500. o24.Position = Vector3.new(12.0242186, 40.8393707, -70.9347534)
  501. o24.Anchored = true
  502. o24.CanCollide = false
  503. o24.Size = Vector3.new(1.85186148, 0.608275533, 0.200000003)
  504. o24.CFrame = CFrame.new(12.0242186, 40.8393707, -70.9347534, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  505. o24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  506. o24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  507. o24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  508. o24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  509. o24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  510. o24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  511. o24.Color = Color3.new(0.972549, 0.972549, 0.972549)
  512. o24.Position = Vector3.new(12.0242186, 40.8393707, -70.9347534)
  513. o25.Parent = o24
  514. o25.Scale = Vector3.new(1, 1, 0.540689588)
  515. o26.Parent = o1
  516. o26.Material = Enum.Material.SmoothPlastic
  517. o26.BrickColor = BrickColor.new("Institutional white")
  518. o26.Position = Vector3.new(10.936595, 40.8325996, -68.6949692)
  519. o26.Rotation = Vector3.new(-0, 14.9999971, -180)
  520. o26.Anchored = true
  521. o26.Size = Vector3.new(0.243310437, 0.243310243, 0.243310302)
  522. o26.CFrame = CFrame.new(10.936595, 40.8325996, -68.6949692, -0.965925872, 0, 0.258818984, 0, -1, 0, 0.258818984, 0, 0.965925872)
  523. o26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  524. o26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  525. o26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  526. o26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  527. o26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  528. o26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  529. o26.Color = Color3.new(0.972549, 0.972549, 0.972549)
  530. o26.Position = Vector3.new(10.936595, 40.8325996, -68.6949692)
  531. o27.Parent = o1
  532. o27.Material = Enum.Material.SmoothPlastic
  533. o27.BrickColor = BrickColor.new("Institutional white")
  534. o27.Position = Vector3.new(10.9659986, 40.8325996, -71.4201889)
  535. o27.Rotation = Vector3.new(-180, 14.9999971, -180)
  536. o27.Anchored = true
  537. o27.Size = Vector3.new(0.243310437, 0.243310243, 0.243310302)
  538. o27.CFrame = CFrame.new(10.9659986, 40.8325996, -71.4201889, -0.965925872, 0, 0.258818984, 0, 1, 0, -0.258818984, 0, -0.965925872)
  539. o27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  540. o27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  541. o27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  542. o27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  543. o27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  544. o27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  545. o27.Color = Color3.new(0.972549, 0.972549, 0.972549)
  546. o27.Position = Vector3.new(10.9659986, 40.8325996, -71.4201889)
  547. o28.Parent = o1
  548. o28.Material = Enum.Material.SmoothPlastic
  549. o28.BrickColor = BrickColor.new("Institutional white")
  550. o28.Position = Vector3.new(12.0580168, 40.8393707, -69.0761337)
  551. o28.Anchored = true
  552. o28.CanCollide = false
  553. o28.Size = Vector3.new(0.432551652, 0.202758521, 0.200000003)
  554. o28.CFrame = CFrame.new(12.0580168, 40.8393707, -69.0761337, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  555. o28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  556. o28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  557. o28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  558. o28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  559. o28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  560. o28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  561. o28.Color = Color3.new(0.972549, 0.972549, 0.972549)
  562. o28.Position = Vector3.new(12.0580168, 40.8393707, -69.0761337)
  563. o29.Parent = o28
  564. o29.Scale = Vector3.new(1, 1, 0.878620446)
  565. o30.Parent = o1
  566. o30.Material = Enum.Material.SmoothPlastic
  567. o30.BrickColor = BrickColor.new("Institutional white")
  568. o30.Position = Vector3.new(12.0580168, 40.8393707, -69.0355835)
  569. o30.Anchored = true
  570. o30.CanCollide = false
  571. o30.Size = Vector3.new(0.405517191, 0.200000003, 0.256827533)
  572. o30.CFrame = CFrame.new(12.0580168, 40.8393707, -69.0355835, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  573. o30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  574. o30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  575. o30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  576. o30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  577. o30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  578. o30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  579. o30.Color = Color3.new(0.972549, 0.972549, 0.972549)
  580. o30.Position = Vector3.new(12.0580168, 40.8393707, -69.0355835)
  581. o31.Parent = o30
  582. o31.Scale = Vector3.new(1, 0.473103225, 1)
  583. o32.Parent = o1
  584. o32.Material = Enum.Material.SmoothPlastic
  585. o32.BrickColor = BrickColor.new("Institutional white")
  586. o32.Position = Vector3.new(13.1571112, 40.8325996, -68.6949692)
  587. o32.Rotation = Vector3.new(-0, -15.0000248, -0)
  588. o32.Anchored = true
  589. o32.Size = Vector3.new(0.243310437, 0.243310243, 0.243310302)
  590. o32.CFrame = CFrame.new(13.1571112, 40.8325996, -68.6949692, 0.965927541, 0, -0.258819461, 0, 1, 0, 0.258819461, 0, 0.965927541)
  591. o32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  592. o32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  593. o32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  594. o32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  595. o32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  596. o32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  597. o32.Color = Color3.new(0.972549, 0.972549, 0.972549)
  598. o32.Position = Vector3.new(13.1571112, 40.8325996, -68.6949692)
  599. o33.Parent = o1
  600. o33.Material = Enum.Material.SmoothPlastic
  601. o33.BrickColor = BrickColor.new("Institutional white")
  602. o33.Position = Vector3.new(12.5467367, 40.8393707, -71.2487564)
  603. o33.Rotation = Vector3.new(-180, -14.9999971, -0)
  604. o33.Anchored = true
  605. o33.CanCollide = false
  606. o33.Size = Vector3.new(1.08137906, 0.200000003, 0.200000003)
  607. o33.CFrame = CFrame.new(12.5467367, 40.8393707, -71.2487564, 0.965925872, 0, -0.258818984, 0, -1, 0, -0.258818984, 0, -0.965925872)
  608. o33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  609. o33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  610. o33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  611. o33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  612. o33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  613. o33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  614. o33.Color = Color3.new(0.972549, 0.972549, 0.972549)
  615. o33.Position = Vector3.new(12.5467367, 40.8393707, -71.2487564)
  616. o34.Parent = o33
  617. o34.Scale = Vector3.new(1, 0.473103225, 0.946206748)
  618. o35.Parent = o1
  619. o35.Material = Enum.Material.Neon
  620. o35.BrickColor = BrickColor.new("Institutional white")
  621. o35.Position = Vector3.new(13.05828, 40.9407463, -70.0561218)
  622. o35.Rotation = Vector3.new(-0, 0, -89.9999771)
  623. o35.Anchored = true
  624. o35.CanCollide = false
  625. o35.Size = Vector3.new(0.324413657, 0.200000003, 0.432551533)
  626. o35.CFrame = CFrame.new(13.05828, 40.9407463, -70.0561218, 4.17232513e-07, 1.00000525, 0, -1.00000525, 4.17232513e-07, 0, 0, 0, 1)
  627. o35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  628. o35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  629. o35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  630. o35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  631. o35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  632. o35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  633. o35.Color = Color3.new(0.972549, 0.972549, 0.972549)
  634. o35.Position = Vector3.new(13.05828, 40.9407463, -70.0561218)
  635. o36.Parent = o35
  636. o36.Scale = Vector3.new(1, 0.405517131, 1)
  637. o37.Name = "Eye"
  638. o37.Parent = o1
  639. o37.Material = Enum.Material.Neon
  640. o37.BrickColor = BrickColor.new("Lime green")
  641. o37.Position = Vector3.new(13.0515203, 40.9407463, -70.0561218)
  642. o37.Rotation = Vector3.new(-0, 0, -89.9999771)
  643. o37.Anchored = true
  644. o37.CanCollide = false
  645. o37.Size = Vector3.new(0.405517131, 0.200000003, 0.432551533)
  646. o37.CFrame = CFrame.new(13.0515203, 40.9407463, -70.0561218, 4.17232513e-07, 1.00000525, 0, -1.00000525, 4.17232513e-07, 0, 0, 0, 1)
  647. o37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  648. o37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  649. o37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  650. o37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  651. o37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  652. o37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  653. o37.Color = Color3.new(0, 1, 0)
  654. o37.Position = Vector3.new(13.0515203, 40.9407463, -70.0561218)
  655. o38.Parent = o37
  656. o38.Scale = Vector3.new(1, 0.337930918, 1)
  657. o39.Parent = o37
  658. o39.Color = Color3.new(0, 1, 0)
  659. o39.Brightness = 3
  660. o39.Face = Enum.NormalId.Top
  661. o39.Name = "Light"
  662. o40.Name = "Rotor4"
  663. o40.Parent = o1
  664. o40.PrimaryPart = o41
  665. o41.Name = "Main"
  666. o41.Parent = o40
  667. o41.Material = Enum.Material.SmoothPlastic
  668. o41.BrickColor = BrickColor.new("Fossil")
  669. o41.Position = Vector3.new(13.1841497, 41.1367531, -71.4254456)
  670. o41.Anchored = true
  671. o41.CanCollide = false
  672. o41.Size = Vector3.new(0.200000003, 0.36496532, 0.200000003)
  673. o41.CFrame = CFrame.new(13.1841497, 41.1367531, -71.4254456, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  674. o41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  675. o41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  676. o41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  677. o41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  678. o41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  679. o41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  680. o41.Color = Color3.new(0.623529, 0.631373, 0.67451)
  681. o41.Position = Vector3.new(13.1841497, 41.1367531, -71.4254456)
  682. o42.Parent = o41
  683. o42.Scale = Vector3.new(0.405518085, 1, 0.40551728)
  684. o43.Parent = o40
  685. o43.Material = Enum.Material.SmoothPlastic
  686. o43.BrickColor = BrickColor.new("Fossil")
  687. o43.Position = Vector3.new(13.1841497, 41.3597794, -71.4254456)
  688. o43.Anchored = true
  689. o43.CanCollide = false
  690. o43.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  691. o43.CFrame = CFrame.new(13.1841497, 41.3597794, -71.4254456, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  692. o43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  693. o43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  694. o43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  695. o43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  696. o43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  697. o43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  698. o43.Color = Color3.new(0.623529, 0.631373, 0.67451)
  699. o43.Position = Vector3.new(13.1841497, 41.3597794, -71.4254456)
  700. o44.Parent = o43
  701. o44.Scale = Vector3.new(0.540690422, 0.540689468, 0.540689766)
  702. o45.Parent = o40
  703. o45.Material = Enum.Material.SmoothPlastic
  704. o45.BrickColor = BrickColor.new("Fossil")
  705. o45.Position = Vector3.new(13.1841497, 41.3597794, -71.1821365)
  706. o45.Rotation = Vector3.new(-0, 0, -14.9999666)
  707. o45.Anchored = true
  708. o45.CanCollide = false
  709. o45.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
  710. o45.CFrame = CFrame.new(13.1841497, 41.3597794, -71.1821365, 0.965925932, 0.258818477, 0, -0.258818448, 0.965926051, 0, 0, 0, 1)
  711. o45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  712. o45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  713. o45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  714. o45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  715. o45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  716. o45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  717. o45.Color = Color3.new(0.623529, 0.631373, 0.67451)
  718. o45.Position = Vector3.new(13.1841497, 41.3597794, -71.1821365)
  719. o46.Parent = o45
  720. o46.Scale = Vector3.new(0.405518085, 0.135172486, 1)
  721. o47.Parent = o40
  722. o47.Material = Enum.Material.SmoothPlastic
  723. o47.BrickColor = BrickColor.new("Fossil")
  724. o47.Position = Vector3.new(12.9408331, 41.3597794, -71.4254456)
  725. o47.Rotation = Vector3.new(14.999939, -90, 0)
  726. o47.Anchored = true
  727. o47.CanCollide = false
  728. o47.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
  729. o47.CFrame = CFrame.new(12.9408331, 41.3597794, -71.4254456, 0, 0, -1, -0.25881803, 0.965926111, 0, 0.965926111, 0.25881803, 0)
  730. o47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  731. o47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  732. o47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  733. o47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  734. o47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  735. o47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  736. o47.Color = Color3.new(0.623529, 0.631373, 0.67451)
  737. o47.Position = Vector3.new(12.9408331, 41.3597794, -71.4254456)
  738. o48.Parent = o47
  739. o48.Scale = Vector3.new(0.405518085, 0.135172486, 1)
  740. o49.Parent = o40
  741. o49.Material = Enum.Material.SmoothPlastic
  742. o49.BrickColor = BrickColor.new("Fossil")
  743. o49.Position = Vector3.new(13.1841497, 41.3597794, -71.6687622)
  744. o49.Rotation = Vector3.new(-0, 0, 14.9999952)
  745. o49.Anchored = true
  746. o49.CanCollide = false
  747. o49.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
  748. o49.CFrame = CFrame.new(13.1841497, 41.3597794, -71.6687622, 0.965925872, -0.258818984, 0, 0.258818984, 0.965925872, 0, 0, 0, 1)
  749. o49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  750. o49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  751. o49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  752. o49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  753. o49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  754. o49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  755. o49.Color = Color3.new(0.623529, 0.631373, 0.67451)
  756. o49.Position = Vector3.new(13.1841497, 41.3597794, -71.6687622)
  757. o50.Parent = o49
  758. o50.Scale = Vector3.new(0.405518085, 0.135172486, 1)
  759. o51.Parent = o40
  760. o51.Material = Enum.Material.SmoothPlastic
  761. o51.BrickColor = BrickColor.new("Fossil")
  762. o51.Position = Vector3.new(13.4274492, 41.3597794, -71.4254532)
  763. o51.Rotation = Vector3.new(-14.9999952, -90, 0)
  764. o51.Anchored = true
  765. o51.CanCollide = false
  766. o51.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
  767. o51.CFrame = CFrame.new(13.4274492, 41.3597794, -71.4254532, 0, 0, -1, 0.258818984, 0.965925872, 0, 0.965925872, -0.258818984, 0)
  768. o51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  769. o51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  770. o51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  771. o51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  772. o51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  773. o51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  774. o51.Color = Color3.new(0.623529, 0.631373, 0.67451)
  775. o51.Position = Vector3.new(13.4274492, 41.3597794, -71.4254532)
  776. o52.Parent = o51
  777. o52.Scale = Vector3.new(0.405518085, 0.135172486, 1)
  778. o53.Name = "Rotor3"
  779. o53.Parent = o1
  780. o53.PrimaryPart = o54
  781. o54.Name = "Main"
  782. o54.Parent = o53
  783. o54.Material = Enum.Material.SmoothPlastic
  784. o54.BrickColor = BrickColor.new("Fossil")
  785. o54.Position = Vector3.new(10.9673338, 41.1367531, -71.4254456)
  786. o54.Anchored = true
  787. o54.CanCollide = false
  788. o54.Size = Vector3.new(0.200000003, 0.36496532, 0.200000003)
  789. o54.CFrame = CFrame.new(10.9673338, 41.1367531, -71.4254456, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  790. o54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  791. o54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  792. o54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  793. o54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  794. o54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  795. o54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  796. o54.Color = Color3.new(0.623529, 0.631373, 0.67451)
  797. o54.Position = Vector3.new(10.9673338, 41.1367531, -71.4254456)
  798. o55.Parent = o54
  799. o55.Scale = Vector3.new(0.405518085, 1, 0.40551728)
  800. o56.Parent = o53
  801. o56.Material = Enum.Material.SmoothPlastic
  802. o56.BrickColor = BrickColor.new("Fossil")
  803. o56.Position = Vector3.new(10.9673338, 41.3597794, -71.4254456)
  804. o56.Anchored = true
  805. o56.CanCollide = false
  806. o56.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  807. o56.CFrame = CFrame.new(10.9673338, 41.3597794, -71.4254456, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  808. o56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  809. o56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  810. o56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  811. o56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  812. o56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  813. o56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  814. o56.Color = Color3.new(0.623529, 0.631373, 0.67451)
  815. o56.Position = Vector3.new(10.9673338, 41.3597794, -71.4254456)
  816. o57.Parent = o56
  817. o57.Scale = Vector3.new(0.540690422, 0.540689468, 0.540689766)
  818. o58.Parent = o53
  819. o58.Material = Enum.Material.SmoothPlastic
  820. o58.BrickColor = BrickColor.new("Fossil")
  821. o58.Position = Vector3.new(10.9673338, 41.3597794, -71.1821365)
  822. o58.Rotation = Vector3.new(-0, 0, -14.9999666)
  823. o58.Anchored = true
  824. o58.CanCollide = false
  825. o58.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
  826. o58.CFrame = CFrame.new(10.9673338, 41.3597794, -71.1821365, 0.965925932, 0.258818477, 0, -0.258818448, 0.965926051, 0, 0, 0, 1)
  827. o58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  828. o58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  829. o58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  830. o58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  831. o58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  832. o58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  833. o58.Color = Color3.new(0.623529, 0.631373, 0.67451)
  834. o58.Position = Vector3.new(10.9673338, 41.3597794, -71.1821365)
  835. o59.Parent = o58
  836. o59.Scale = Vector3.new(0.405518085, 0.135172486, 1)
  837. o60.Parent = o53
  838. o60.Material = Enum.Material.SmoothPlastic
  839. o60.BrickColor = BrickColor.new("Fossil")
  840. o60.Position = Vector3.new(10.7240248, 41.3597794, -71.4254456)
  841. o60.Rotation = Vector3.new(14.999939, -90, 0)
  842. o60.Anchored = true
  843. o60.CanCollide = false
  844. o60.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
  845. o60.CFrame = CFrame.new(10.7240248, 41.3597794, -71.4254456, 0, 0, -1, -0.25881803, 0.965926111, 0, 0.965926111, 0.25881803, 0)
  846. o60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  847. o60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  848. o60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  849. o60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  850. o60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  851. o60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  852. o60.Color = Color3.new(0.623529, 0.631373, 0.67451)
  853. o60.Position = Vector3.new(10.7240248, 41.3597794, -71.4254456)
  854. o61.Parent = o60
  855. o61.Scale = Vector3.new(0.405518085, 0.135172486, 1)
  856. o62.Parent = o53
  857. o62.Material = Enum.Material.SmoothPlastic
  858. o62.BrickColor = BrickColor.new("Fossil")
  859. o62.Position = Vector3.new(10.9673338, 41.3597794, -71.6687622)
  860. o62.Rotation = Vector3.new(-0, 0, 14.9999952)
  861. o62.Anchored = true
  862. o62.CanCollide = false
  863. o62.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
  864. o62.CFrame = CFrame.new(10.9673338, 41.3597794, -71.6687622, 0.965925872, -0.258818984, 0, 0.258818984, 0.965925872, 0, 0, 0, 1)
  865. o62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  866. o62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  867. o62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  868. o62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  869. o62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  870. o62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  871. o62.Color = Color3.new(0.623529, 0.631373, 0.67451)
  872. o62.Position = Vector3.new(10.9673338, 41.3597794, -71.6687622)
  873. o63.Parent = o62
  874. o63.Scale = Vector3.new(0.405518085, 0.135172486, 1)
  875. o64.Parent = o53
  876. o64.Material = Enum.Material.SmoothPlastic
  877. o64.BrickColor = BrickColor.new("Fossil")
  878. o64.Position = Vector3.new(11.2106352, 41.3597794, -71.4254532)
  879. o64.Rotation = Vector3.new(-14.9999952, -90, 0)
  880. o64.Anchored = true
  881. o64.CanCollide = false
  882. o64.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
  883. o64.CFrame = CFrame.new(11.2106352, 41.3597794, -71.4254532, 0, 0, -1, 0.258818984, 0.965925872, 0, 0.965925872, -0.258818984, 0)
  884. o64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  885. o64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  886. o64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  887. o64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  888. o64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  889. o64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  890. o64.Color = Color3.new(0.623529, 0.631373, 0.67451)
  891. o64.Position = Vector3.new(11.2106352, 41.3597794, -71.4254532)
  892. o65.Parent = o64
  893. o65.Scale = Vector3.new(0.405518085, 0.135172486, 1)
  894. o66.Parent = o1
  895. o66.Material = Enum.Material.SmoothPlastic
  896. o66.BrickColor = BrickColor.new("Institutional white")
  897. o66.Position = Vector3.new(13.0515203, 40.6163445, -70.1642685)
  898. o66.Anchored = true
  899. o66.CanCollide = false
  900. o66.Size = Vector3.new(0.200000003, 0.200000003, 0.216275766)
  901. o66.CFrame = CFrame.new(13.0515203, 40.6163445, -70.1642685, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  902. o66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  903. o66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  904. o66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  905. o66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  906. o66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  907. o66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  908. o66.Color = Color3.new(0.972549, 0.972549, 0.972549)
  909. o66.Position = Vector3.new(13.0515203, 40.6163445, -70.1642685)
  910. o67.Parent = o66
  911. o67.Scale = Vector3.new(0.337930918, 0.94620645, 1)
  912. o68.Name = "SmgShutter"
  913. o68.Parent = o1
  914. o68.Material = Enum.Material.SmoothPlastic
  915. o68.BrickColor = BrickColor.new("Institutional white")
  916. o68.Position = Vector3.new(13.0515203, 40.6163445, -69.9479904)
  917. o68.Anchored = true
  918. o68.CanCollide = false
  919. o68.Size = Vector3.new(0.200000003, 0.200000003, 0.216275766)
  920. o68.CFrame = CFrame.new(13.0515203, 40.6163445, -69.9479904, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  921. o68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  922. o68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  923. o68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  924. o68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  925. o68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  926. o68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  927. o68.Color = Color3.new(0.972549, 0.972549, 0.972549)
  928. o68.Position = Vector3.new(13.0515203, 40.6163445, -69.9479904)
  929. o69.Parent = o68
  930. o69.Scale = Vector3.new(0.337930918, 0.94620645, 1)
  931. o70.Parent = o1
  932. o70.Material = Enum.Material.SmoothPlastic
  933. o70.BrickColor = BrickColor.new("Institutional white")
  934. o70.Position = Vector3.new(12.0242186, 40.8325996, -70.0561218)
  935. o70.Anchored = true
  936. o70.Size = Vector3.new(1.98703384, 0.865103006, 1.62206864)
  937. o70.CFrame = CFrame.new(12.0242186, 40.8325996, -70.0561218, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  938. o70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  939. o70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  940. o70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  941. o70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  942. o70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  943. o70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  944. o70.Color = Color3.new(0.972549, 0.972549, 0.972549)
  945. o70.Position = Vector3.new(12.0242186, 40.8325996, -70.0561218)
  946. o71.Name = "Rotor1"
  947. o71.Parent = o1
  948. o71.PrimaryPart = o72
  949. o72.Name = "Main"
  950. o72.Parent = o71
  951. o72.Material = Enum.Material.SmoothPlastic
  952. o72.BrickColor = BrickColor.new("Fossil")
  953. o72.Position = Vector3.new(13.1571112, 41.1367531, -68.6949692)
  954. o72.Anchored = true
  955. o72.CanCollide = false
  956. o72.Size = Vector3.new(0.200000003, 0.36496532, 0.200000003)
  957. o72.CFrame = CFrame.new(13.1571112, 41.1367531, -68.6949692, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  958. o72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  959. o72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  960. o72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  961. o72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  962. o72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  963. o72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  964. o72.Color = Color3.new(0.623529, 0.631373, 0.67451)
  965. o72.Position = Vector3.new(13.1571112, 41.1367531, -68.6949692)
  966. o73.Parent = o72
  967. o73.Scale = Vector3.new(0.405518085, 1, 0.40551728)
  968. o74.Parent = o71
  969. o74.Material = Enum.Material.SmoothPlastic
  970. o74.BrickColor = BrickColor.new("Fossil")
  971. o74.Position = Vector3.new(13.1571112, 41.3597794, -68.6949692)
  972. o74.Anchored = true
  973. o74.CanCollide = false
  974. o74.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  975. o74.CFrame = CFrame.new(13.1571112, 41.3597794, -68.6949692, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  976. o74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  977. o74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  978. o74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  979. o74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  980. o74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  981. o74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  982. o74.Color = Color3.new(0.623529, 0.631373, 0.67451)
  983. o74.Position = Vector3.new(13.1571112, 41.3597794, -68.6949692)
  984. o75.Parent = o74
  985. o75.Scale = Vector3.new(0.540690422, 0.540689468, 0.540689766)
  986. o76.Parent = o71
  987. o76.Material = Enum.Material.SmoothPlastic
  988. o76.BrickColor = BrickColor.new("Fossil")
  989. o76.Position = Vector3.new(13.1571112, 41.3597794, -68.4516602)
  990. o76.Rotation = Vector3.new(-0, 0, -14.9999666)
  991. o76.Anchored = true
  992. o76.CanCollide = false
  993. o76.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
  994. o76.CFrame = CFrame.new(13.1571112, 41.3597794, -68.4516602, 0.965925932, 0.258818477, 0, -0.258818448, 0.965926051, 0, 0, 0, 1)
  995. o76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  996. o76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  997. o76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  998. o76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  999. o76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1000. o76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1001. o76.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1002. o76.Position = Vector3.new(13.1571112, 41.3597794, -68.4516602)
  1003. o77.Parent = o76
  1004. o77.Scale = Vector3.new(0.405518085, 0.135172486, 1)
  1005. o78.Parent = o71
  1006. o78.Material = Enum.Material.SmoothPlastic
  1007. o78.BrickColor = BrickColor.new("Fossil")
  1008. o78.Position = Vector3.new(12.9138021, 41.3597794, -68.6949692)
  1009. o78.Rotation = Vector3.new(14.999939, -90, 0)
  1010. o78.Anchored = true
  1011. o78.CanCollide = false
  1012. o78.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
  1013. o78.CFrame = CFrame.new(12.9138021, 41.3597794, -68.6949692, 0, 0, -1, -0.25881803, 0.965926111, 0, 0.965926111, 0.25881803, 0)
  1014. o78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1015. o78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1016. o78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1017. o78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1018. o78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1019. o78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1020. o78.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1021. o78.Position = Vector3.new(12.9138021, 41.3597794, -68.6949692)
  1022. o79.Parent = o78
  1023. o79.Scale = Vector3.new(0.405518085, 0.135172486, 1)
  1024. o80.Parent = o71
  1025. o80.Material = Enum.Material.SmoothPlastic
  1026. o80.BrickColor = BrickColor.new("Fossil")
  1027. o80.Position = Vector3.new(13.1571112, 41.3597794, -68.9382782)
  1028. o80.Rotation = Vector3.new(-0, 0, 14.9999952)
  1029. o80.Anchored = true
  1030. o80.CanCollide = false
  1031. o80.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
  1032. o80.CFrame = CFrame.new(13.1571112, 41.3597794, -68.9382782, 0.965925872, -0.258818984, 0, 0.258818984, 0.965925872, 0, 0, 0, 1)
  1033. o80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1034. o80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1035. o80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1036. o80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1037. o80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1038. o80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1039. o80.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1040. o80.Position = Vector3.new(13.1571112, 41.3597794, -68.9382782)
  1041. o81.Parent = o80
  1042. o81.Scale = Vector3.new(0.405518085, 0.135172486, 1)
  1043. o82.Parent = o71
  1044. o82.Material = Enum.Material.SmoothPlastic
  1045. o82.BrickColor = BrickColor.new("Fossil")
  1046. o82.Position = Vector3.new(13.4004259, 41.3597794, -68.6949692)
  1047. o82.Rotation = Vector3.new(-14.9999952, -90, 0)
  1048. o82.Anchored = true
  1049. o82.CanCollide = false
  1050. o82.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
  1051. o82.CFrame = CFrame.new(13.4004259, 41.3597794, -68.6949692, 0, 0, -1, 0.258818984, 0.965925872, 0, 0.965925872, -0.258818984, 0)
  1052. o82.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1053. o82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1054. o82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1055. o82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1056. o82.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1057. o82.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1058. o82.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1059. o82.Position = Vector3.new(13.4004259, 41.3597794, -68.6949692)
  1060. o83.Parent = o82
  1061. o83.Scale = Vector3.new(0.405518085, 0.135172486, 1)
  1062. o84.Name = "Rotor2"
  1063. o84.Parent = o1
  1064. o84.PrimaryPart = o85
  1065. o85.Name = "Main"
  1066. o85.Parent = o84
  1067. o85.Material = Enum.Material.SmoothPlastic
  1068. o85.BrickColor = BrickColor.new("Fossil")
  1069. o85.Position = Vector3.new(10.9403028, 41.1367531, -68.6949692)
  1070. o85.Anchored = true
  1071. o85.CanCollide = false
  1072. o85.Size = Vector3.new(0.200000003, 0.36496532, 0.200000003)
  1073. o85.CFrame = CFrame.new(10.9403028, 41.1367531, -68.6949692, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1074. o85.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1075. o85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1076. o85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1077. o85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1078. o85.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1079. o85.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1080. o85.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1081. o85.Position = Vector3.new(10.9403028, 41.1367531, -68.6949692)
  1082. o86.Parent = o85
  1083. o86.Scale = Vector3.new(0.405518085, 1, 0.40551728)
  1084. o87.Parent = o84
  1085. o87.Material = Enum.Material.SmoothPlastic
  1086. o87.BrickColor = BrickColor.new("Fossil")
  1087. o87.Position = Vector3.new(10.9403028, 41.3597794, -68.6949692)
  1088. o87.Anchored = true
  1089. o87.CanCollide = false
  1090. o87.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1091. o87.CFrame = CFrame.new(10.9403028, 41.3597794, -68.6949692, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1092. o87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1093. o87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1094. o87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1095. o87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1096. o87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1097. o87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1098. o87.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1099. o87.Position = Vector3.new(10.9403028, 41.3597794, -68.6949692)
  1100. o88.Parent = o87
  1101. o88.Scale = Vector3.new(0.540690422, 0.540689468, 0.540689766)
  1102. o89.Parent = o84
  1103. o89.Material = Enum.Material.SmoothPlastic
  1104. o89.BrickColor = BrickColor.new("Fossil")
  1105. o89.Position = Vector3.new(10.9403028, 41.3597794, -68.4516602)
  1106. o89.Rotation = Vector3.new(-0, 0, -14.9999666)
  1107. o89.Anchored = true
  1108. o89.CanCollide = false
  1109. o89.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
  1110. o89.CFrame = CFrame.new(10.9403028, 41.3597794, -68.4516602, 0.965925932, 0.258818477, 0, -0.258818448, 0.965926051, 0, 0, 0, 1)
  1111. o89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1112. o89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1113. o89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1114. o89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1115. o89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1116. o89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1117. o89.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1118. o89.Position = Vector3.new(10.9403028, 41.3597794, -68.4516602)
  1119. o90.Parent = o89
  1120. o90.Scale = Vector3.new(0.405518085, 0.135172486, 1)
  1121. o91.Parent = o84
  1122. o91.Material = Enum.Material.SmoothPlastic
  1123. o91.BrickColor = BrickColor.new("Fossil")
  1124. o91.Position = Vector3.new(10.6969938, 41.3597794, -68.6949692)
  1125. o91.Rotation = Vector3.new(14.999939, -90, 0)
  1126. o91.Anchored = true
  1127. o91.CanCollide = false
  1128. o91.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
  1129. o91.CFrame = CFrame.new(10.6969938, 41.3597794, -68.6949692, 0, 0, -1, -0.25881803, 0.965926111, 0, 0.965926111, 0.25881803, 0)
  1130. o91.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1131. o91.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1132. o91.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1133. o91.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1134. o91.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1135. o91.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1136. o91.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1137. o91.Position = Vector3.new(10.6969938, 41.3597794, -68.6949692)
  1138. o92.Parent = o91
  1139. o92.Scale = Vector3.new(0.405518085, 0.135172486, 1)
  1140. o93.Parent = o84
  1141. o93.Material = Enum.Material.SmoothPlastic
  1142. o93.BrickColor = BrickColor.new("Fossil")
  1143. o93.Position = Vector3.new(10.9403028, 41.3597794, -68.9382782)
  1144. o93.Rotation = Vector3.new(-0, 0, 14.9999952)
  1145. o93.Anchored = true
  1146. o93.CanCollide = false
  1147. o93.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
  1148. o93.CFrame = CFrame.new(10.9403028, 41.3597794, -68.9382782, 0.965925872, -0.258818984, 0, 0.258818984, 0.965925872, 0, 0, 0, 1)
  1149. o93.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1150. o93.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1151. o93.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1152. o93.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1153. o93.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1154. o93.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1155. o93.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1156. o93.Position = Vector3.new(10.9403028, 41.3597794, -68.9382782)
  1157. o94.Parent = o93
  1158. o94.Scale = Vector3.new(0.405518085, 0.135172486, 1)
  1159. o95.Parent = o84
  1160. o95.Material = Enum.Material.SmoothPlastic
  1161. o95.BrickColor = BrickColor.new("Fossil")
  1162. o95.Position = Vector3.new(11.1836042, 41.3597794, -68.6949692)
  1163. o95.Rotation = Vector3.new(-14.9999952, -90, 0)
  1164. o95.Anchored = true
  1165. o95.CanCollide = false
  1166. o95.Size = Vector3.new(0.200000003, 0.200000003, 0.405517161)
  1167. o95.CFrame = CFrame.new(11.1836042, 41.3597794, -68.6949692, 0, 0, -1, 0.258818984, 0.965925872, 0, 0.965925872, -0.258818984, 0)
  1168. o95.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1169. o95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1170. o95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1171. o95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1172. o95.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1173. o95.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1174. o95.Color = Color3.new(0.623529, 0.631373, 0.67451)
  1175. o95.Position = Vector3.new(11.1836042, 41.3597794, -68.6949692)
  1176. o96.Parent = o95
  1177. o96.Scale = Vector3.new(0.405518085, 0.135172486, 1)
  1178. o97.Parent = o1
  1179. o97.Material = Enum.Material.SmoothPlastic
  1180. o97.BrickColor = BrickColor.new("Institutional white")
  1181. o97.Position = Vector3.new(12.0309782, 40.8393707, -69.5154419)
  1182. o97.Anchored = true
  1183. o97.Size = Vector3.new(2.10868883, 0.7434479, 0.648827374)
  1184. o97.CFrame = CFrame.new(12.0309782, 40.8393707, -69.5154419, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1185. o97.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1186. o97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1187. o97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1188. o97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1189. o97.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1190. o97.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1191. o97.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1192. o97.Position = Vector3.new(12.0309782, 40.8393707, -69.5154419)
  1193. o98.Name = "Smg"
  1194. o98.Parent = o1
  1195. o99.Parent = o98
  1196. o99.Material = Enum.Material.SmoothPlastic
  1197. o99.BrickColor = BrickColor.new("Smoky grey")
  1198. o99.Position = Vector3.new(12.7068396, 40.616333, -69.9344788)
  1199. o99.Rotation = Vector3.new(-0, 0, -89.9999771)
  1200. o99.Anchored = true
  1201. o99.CanCollide = false
  1202. o99.Size = Vector3.new(0.200000003, 0.216275766, 0.200000003)
  1203. o99.CFrame = CFrame.new(12.7068396, 40.616333, -69.9344788, 4.17232513e-07, 1.00000525, 0, -1.00000525, 4.17232513e-07, 0, 0, 0, 1)
  1204. o99.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1205. o99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1206. o99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1207. o99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1208. o99.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1209. o99.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1210. o99.Color = Color3.new(0.356863, 0.364706, 0.411765)
  1211. o99.Position = Vector3.new(12.7068396, 40.616333, -69.9344788)
  1212. o100.Parent = o99
  1213. o100.Scale = Vector3.new(0.946206272, 1, 0.946206272)
  1214. o101.Parent = o98
  1215. o101.Material = Enum.Material.SmoothPlastic
  1216. o101.BrickColor = BrickColor.new("Smoky grey")
  1217. o101.Position = Vector3.new(12.8217306, 40.616333, -69.9344788)
  1218. o101.Rotation = Vector3.new(-0, 0, -89.9999771)
  1219. o101.Anchored = true
  1220. o101.CanCollide = false
  1221. o101.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1222. o101.CFrame = CFrame.new(12.8217306, 40.616333, -69.9344788, 4.17232513e-07, 1.00000525, 0, -1.00000525, 4.17232513e-07, 0, 0, 0, 1)
  1223. o101.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1224. o101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1225. o101.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1226. o101.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1227. o101.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1228. o101.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1229. o101.Color = Color3.new(0.356863, 0.364706, 0.411765)
  1230. o101.Position = Vector3.new(12.8217306, 40.616333, -69.9344788)
  1231. o102.Parent = o101
  1232. o102.Scale = Vector3.new(0.811033964, 0.20275867, 0.946206272)
  1233. o103.Parent = o98
  1234. o103.Material = Enum.Material.SmoothPlastic
  1235. o103.BrickColor = BrickColor.new("Smoky grey")
  1236. o103.Position = Vector3.new(12.9095907, 40.6298485, -69.9344788)
  1237. o103.Rotation = Vector3.new(-0, 0, -89.9999771)
  1238. o103.Anchored = true
  1239. o103.CanCollide = false
  1240. o103.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1241. o103.CFrame = CFrame.new(12.9095907, 40.6298485, -69.9344788, 4.17232513e-07, 1.00000525, 0, -1.00000525, 4.17232513e-07, 0, 0, 0, 1)
  1242. o103.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1243. o103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1244. o103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1245. o103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1246. o103.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1247. o103.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1248. o103.Color = Color3.new(0.356863, 0.364706, 0.411765)
  1249. o103.Position = Vector3.new(12.9095907, 40.6298485, -69.9344788)
  1250. o104.Parent = o103
  1251. o104.Scale = Vector3.new(0.54068929, 0.811033964, 0.946206272)
  1252. o105.Name = "SMGPipeH"
  1253. o105.Parent = o98
  1254. o105.Material = Enum.Material.SmoothPlastic
  1255. o105.BrickColor = BrickColor.new("Really black")
  1256. o105.Position = Vector3.new(12.9974585, 40.6298485, -69.9344788)
  1257. o105.Rotation = Vector3.new(-0, 0, -89.9999771)
  1258. o105.Anchored = true
  1259. o105.CanCollide = false
  1260. o105.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1261. o105.CFrame = CFrame.new(12.9974585, 40.6298485, -69.9344788, 4.17232513e-07, 1.00000525, 0, -1.00000525, 4.17232513e-07, 0, 0, 0, 1)
  1262. o105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1263. o105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1264. o105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1265. o105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1266. o105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1267. o105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1268. o105.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1269. o105.Position = Vector3.new(12.9974585, 40.6298485, -69.9344788)
  1270. o106.Parent = o105
  1271. o106.Scale = Vector3.new(0.270344585, 0.0675861686, 0.946206272)
  1272. o107.Parent = o98
  1273. o107.Material = Enum.Material.SmoothPlastic
  1274. o107.BrickColor = BrickColor.new("Smoky grey")
  1275. o107.Position = Vector3.new(12.8758001, 40.5825348, -69.9344788)
  1276. o107.Rotation = Vector3.new(-0, 0, -89.9999771)
  1277. o107.Anchored = true
  1278. o107.CanCollide = false
  1279. o107.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1280. o107.CFrame = CFrame.new(12.8758001, 40.5825348, -69.9344788, 4.17232513e-07, 1.00000525, 0, -1.00000525, 4.17232513e-07, 0, 0, 0, 1)
  1281. o107.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1282. o107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1283. o107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1284. o107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1285. o107.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1286. o107.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1287. o107.Color = Color3.new(0.356863, 0.364706, 0.411765)
  1288. o107.Position = Vector3.new(12.8758001, 40.5825348, -69.9344788)
  1289. o108.Parent = o107
  1290. o108.Scale = Vector3.new(0.337930739, 0.473103255, 0.946206272)
  1291. o109.Name = "Controller"
  1292. o109.Parent = o1
  1293. o109.Material = Enum.Material.SmoothPlastic
  1294. o109.BrickColor = BrickColor.new("Institutional white")
  1295. o109.Position = Vector3.new(12.0515394, 40.7946739, -70.0561295)
  1296. o109.Anchored = true
  1297. o109.CanCollide = false
  1298. o109.Size = Vector3.new(0.200000003, 0.400000006, 0.432551533)
  1299. o109.CFrame = CFrame.new(12.0515394, 40.7946739, -70.0561295, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1300. o109.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1301. o109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1302. o109.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1303. o109.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1304. o109.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1305. o109.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1306. o109.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1307. o109.Position = Vector3.new(12.0515394, 40.7946739, -70.0561295)
  1308. o1.PrimaryPart = o109
  1309. s.SoundId = "rbxassetid://146830287"
  1310. s.Parent = o1.PrimaryPart
  1311. s.Pitch = 1
  1312. s.Volume = 2
  1313. s.Looped = true
  1314. wait(0.1)
  1315. s:play()
  1316.  
  1317.  
  1318. local seat = Instance.new("Seat",o1)
  1319. seat.Name = "Seat"
  1320. seat.Size = Vector3.new(1,1,1)
  1321. seat.Transparency = 1
  1322. seat.CFrame = o1.Controller.CFrame * CFrame.Angles(math.rad(0),math.rad(-90),math.rad(0))
  1323. seat.CanCollide = false
  1324.  
  1325. local soisoi = Instance.new("Sound",o1.Controller)
  1326. soisoi.SoundId = "rbxassetid://151800925"
  1327. soisoi.Volume = 0.3
  1328. soisoi.Pitch = 3
  1329. soisoi.Looped = true
  1330. soisoi:Play()
  1331.  
  1332. o1:FindFirstChild("Rotor1").PrimaryPart = o1:FindFirstChild("Rotor1").Main
  1333. o1:FindFirstChild("Rotor2").PrimaryPart = o1:FindFirstChild("Rotor2").Main
  1334. o1:FindFirstChild("Rotor3").PrimaryPart = o1:FindFirstChild("Rotor3").Main
  1335. o1:FindFirstChild("Rotor4").PrimaryPart = o1:FindFirstChild("Rotor4").Main
  1336. o1:FindFirstChild("Smg").PrimaryPart = o1:FindFirstChild("Smg").SMGPipeH
  1337.  
  1338. o1:FindFirstChild("Eye").Changed:connect(function()
  1339. o1:FindFirstChild("Eye").Light.Color = o1:FindFirstChild("Eye").Color
  1340. end)
  1341.  
  1342. o1:FindFirstChild("Eye").BrickColor = BrickColor.new("New Yeller")
  1343.  
  1344. for i,v in pairs(o1:GetChildren()) do
  1345. if v:IsA("Part") or v:IsA("UnionOperation") or v:IsA("WedgePart") then
  1346. if v.BrickColor == BrickColor.new("Institutional white") then
  1347. v.BrickColor = BrickColor.new("Really black")
  1348. end
  1349. if v.Material ~= Enum.Material.Neon then
  1350. v.Material = "Metal"
  1351. end
  1352. local w = Instance.new("Weld",o109)
  1353. w.Part0 = o109
  1354. w.Part1 = v
  1355. w.C0 = CFrame.new(v.Position-o109.CFrame.p)*CFrame.Angles(math.rad(v.Rotation.X),math.rad(v.Rotation.Y),math.rad(v.Rotation.Z))
  1356. end
  1357. end
  1358.  
  1359. for i,v in pairs(o1:FindFirstChild("Rotor1"):GetChildren()) do
  1360. v.BrickColor = BrickColor.new("Really black")
  1361. end
  1362. for i,v in pairs(o1:FindFirstChild("Rotor2"):GetChildren()) do
  1363. v.BrickColor = BrickColor.new("Really black")
  1364. end
  1365. for i,v in pairs(o1:FindFirstChild("Rotor3"):GetChildren()) do
  1366. v.BrickColor = BrickColor.new("Really black")
  1367. end
  1368. for i,v in pairs(o1:FindFirstChild("Rotor4"):GetChildren()) do
  1369. v.BrickColor = BrickColor.new("Really black")
  1370. end
  1371.  
  1372. --o1.SmgShutter.Material = "DiamondPlate"
  1373.  
  1374. local plr = game:GetService("Players").LocalPlayer
  1375. local msgidGlob = 0
  1376. local state = true
  1377. local font = "Arcade"
  1378. local tcol = Color3.fromRGB(255,217,0)
  1379. local tscol = Color3.fromRGB(0,0,0)
  1380. local fsiz = 28
  1381. local tr = true
  1382. local fade = 2
  1383.  
  1384. local p = Instance.new("Part",game.Workspace)
  1385. p.Size = Vector3.new(0.2,0.2,0.2)
  1386. p.Transparency = 1
  1387. p.Anchored = true
  1388. p.CanCollide = false
  1389. p.Name = "Msg"
  1390. p.CFrame = o1.PrimaryPart.CFrame + Vector3.new(0,2.25,0)
  1391.  
  1392. local r = 255
  1393. local b = 0
  1394. local g = 0
  1395.  
  1396. function cMsg(c)
  1397. msgidGlob = msgidGlob + 1
  1398. local curMsgId = msgidGlob
  1399. for i,v in pairs(p:GetChildren()) do
  1400. if v:IsA("BillboardGui") and v.Name == "J2CMSG" then
  1401. v:Destroy()
  1402. end
  1403. end
  1404. local bbgui = Instance.new("BillboardGui",p)
  1405. bbgui.Name = "J2CMSG"
  1406. bbgui.AlwaysOnTop = true
  1407. bbgui.ExtentsOffsetWorldSpace = Vector3.new(0,4.5,0)
  1408. bbgui.Size = UDim2.new(0.2,0,0.14,0)
  1409. local tl = Instance.new("TextLabel",bbgui)
  1410. tl.BackgroundTransparency = 1
  1411. tl.BorderSizePixel = 0
  1412. tl.Size = UDim2.new(1,0,10,0)
  1413. tl.Position = UDim2.new(0,0,-5,0)
  1414. tl.Font = font or "Arcade"
  1415. tl.FontSize = "Size"..fsiz or "Size28"
  1416. tl.TextColor3 = tcol
  1417. tl.TextScaled = false
  1418. tl.TextWrapped = false
  1419. tl.TextStrokeColor3 = tscol
  1420. tl.TextStrokeTransparency = 0
  1421.  
  1422. game:GetService("RunService").RenderStepped:connect(function()
  1423. if tr then
  1424. if tl.Parent ~= nil then
  1425. tl.TextColor3 = Color3.fromRGB(r,g,b)
  1426. end
  1427. end
  1428. end)
  1429.  
  1430. for i=1,#c do
  1431. if msgidGlob == curMsgId then
  1432. tl.Text = string.sub(c,1,i)
  1433. if string.sub(c,i,i) ~= " " then
  1434. local s = Instance.new("Sound",p)
  1435. s.SoundId = "rbxassetid://418252437"
  1436. s.Volume = 1
  1437. s.Pitch = 1
  1438. s:Play()
  1439. game.Debris:AddItem(s,2)
  1440. end
  1441. wait()
  1442. end
  1443. end
  1444. wait(fade)
  1445. if msgidGlob == curMsgId then
  1446. for i=1,10 do
  1447. if msgidGlob == curMsgId then
  1448. tl.TextTransparency = tl.TextTransparency + 0.1
  1449. tl.TextStrokeTransparency = tl.TextStrokeTransparency + 0.1
  1450. tl.Position = tl.Position + UDim2.new(0,0,0,-3)
  1451. wait()
  1452. end
  1453. end
  1454. if msgidGlob == curMsgId then
  1455. bbgui:Destroy()
  1456. end
  1457. end
  1458. end
  1459.  
  1460. mouse.KeyDown:connect(function(key)
  1461. if key == "b" then
  1462. if fly == false then
  1463. fly = true
  1464. campos = camera.CoordinateFrame
  1465. cMsg("Remote control!")
  1466. else
  1467. fly = false
  1468. returnhome = false
  1469. cMsg("Standby.")
  1470. end
  1471. end
  1472. if key == "w" then
  1473. wd = true
  1474. elseif key == "a" then
  1475. ad = true
  1476. elseif key == "s" then
  1477. sd = true
  1478. elseif key == "d" then
  1479. dd = true
  1480. elseif key == "q" then
  1481. qd = true
  1482. elseif key == "e" then
  1483. ed = true
  1484. elseif key == "r" then
  1485. rd = true
  1486. elseif key == "f" then
  1487. fd = true
  1488. elseif key == "t" then
  1489. if fly == false and returnhome == false then
  1490. returnhome = true
  1491. cMsg("Returning home!")
  1492. elseif fly == false and returnhome == true then
  1493. returnhome = false
  1494. cMsg("Standby.")
  1495. end
  1496. elseif key == "g" then
  1497. if gcd == false and moused == false then
  1498. gcd = true
  1499. if gun == false then
  1500. spawn(function() cMsg("Activating gun mode.") end)
  1501. gun = true
  1502. o1.SmgShutter.Transparency = 1
  1503. for i=1,30 do
  1504. o1.Smg:SetPrimaryPartCFrame(o1.Smg.PrimaryPart.CFrame * CFrame.new(0,0.01,0))
  1505. wait()
  1506. end
  1507. else
  1508. spawn(function() cMsg("Deactivating gun mode.") end)
  1509. gun = false
  1510. for i=1,30 do
  1511. o1.Smg:SetPrimaryPartCFrame(o1.Smg.PrimaryPart.CFrame * CFrame.new(0,-0.01,0))
  1512. wait()
  1513. end
  1514. o1.SmgShutter.Transparency = 0
  1515. end
  1516. wait(1)
  1517. gcd = false
  1518. end
  1519. end
  1520. end)
  1521.  
  1522. mouse.KeyUp:connect(function(key)
  1523. if key == "w" then
  1524. wd = false
  1525. elseif key == "a" then
  1526. ad = false
  1527. elseif key == "s" then
  1528. sd = false
  1529. elseif key == "d" then
  1530. dd = false
  1531. elseif key == "q" then
  1532. qd = false
  1533. elseif key == "e" then
  1534. ed = false
  1535. elseif key == "r" then
  1536. rd = false
  1537. elseif key == "f" then
  1538. fd = false
  1539. end
  1540. end)
  1541.  
  1542. mouse.Button1Down:connect(function()
  1543. if moused == false and gun == true then
  1544. moused = true
  1545. local frms = 0
  1546. frm = game:GetService("RunService").RenderStepped:connect(function()
  1547. if math.floor(frms/5) == frms/5 then
  1548. spawn(function()
  1549. local ray = Ray.new(o1.Smg.SMGPipeH.CFrame.p,((mouse.Hit.p - o1.Smg.SMGPipeH.CFrame.p).unit*2048) + Vector3.new(math.random(-1000,1000)/50,math.random(-1000,1000)/50,math.random(-1000,1000)/50))
  1550. local part,pos,normal = game:GetService("Workspace"):FindPartOnRayWithIgnoreList(ray,char:GetChildren(),false,true)
  1551. local trace = Instance.new("Part")
  1552. trace.BrickColor = BrickColor.new("New Yeller")
  1553. trace.Size = Vector3.new(0.2,0.2,(o1.Smg.SMGPipeH.CFrame.p - pos).Magnitude)
  1554. trace.Anchored = true
  1555. trace.Material = "Neon"
  1556. trace.CanCollide = false
  1557. trace.Parent = game:GetService("Workspace")
  1558. trace.CFrame = CFrame.new(o1.Smg.SMGPipeH.CFrame.p,pos)*CFrame.new(0,0,-((o1.Smg.SMGPipeH.CFrame.p - pos).Magnitude/2))
  1559. local s = Instance.new("Sound",o1.Smg.SMGPipeH)
  1560. s.SoundId = "rbxassetid://131257506"
  1561. s:Play()
  1562. spawn(function()
  1563. wait(2)
  1564. s:Destroy()
  1565. end)
  1566.  
  1567. if part then
  1568. if part.Parent:IsA("Model") then
  1569. if part.Parent:FindFirstChild("Humanoid") then
  1570. part.Parent.Humanoid.Health = part.Parent.Humanoid.Health - 15
  1571. end
  1572. elseif part.Parent.Parent:IsA("Model") then
  1573. if part.Parent.Parent:FindFirstChild("Humanoid") then
  1574. part.Parent.Parent.Humanoid.Health = part.Parent.Parent.Humanoid.Health - 15
  1575. end
  1576. end
  1577. end
  1578.  
  1579. wait(0.05)
  1580. trace:Destroy()
  1581. end)
  1582. end
  1583. frms = frms + 1
  1584. end)
  1585. mbup = mouse.Button1Up:connect(function()
  1586. moused = false
  1587. frm:disconnect()
  1588. mbup:disconnect()
  1589. end)
  1590. end
  1591. end)
  1592.  
  1593. game:GetService("RunService").RenderStepped:connect(function()
  1594. local xt = 0
  1595. local yt = 0
  1596. local zt = 0
  1597. local pspd = 0
  1598. if wd == true or ad == true or sd == true or dd == true or qd == true or ed == true or rd == true or fd == true then
  1599. tPitch = 3.4
  1600. pspd = -30
  1601. else
  1602. tPitch = 3
  1603. pspd = -15
  1604. end
  1605. local pChange = (tPitch - soisoi.Pitch)/10
  1606. soisoi.Pitch = soisoi.Pitch + pChange
  1607. if fly == true then
  1608. if wd == true then
  1609. tCf = tCf * CFrame.new(0.5,0,0)
  1610. yt = yt + 5
  1611. end
  1612. if ad == true then
  1613. tCf = tCf * CFrame.new(0,0,-0.5)
  1614. zt = zt - 5
  1615. end
  1616. if sd == true then
  1617. tCf = tCf * CFrame.new(-0.5,0,0)
  1618. yt = yt - 5
  1619. end
  1620. if dd == true then
  1621. tCf = tCf * CFrame.new(0,0,0.5)
  1622. zt = zt + 5
  1623. end
  1624. if qd == true then
  1625. tCf = tCf * CFrame.Angles(math.rad(0),math.rad(3),math.rad(0))
  1626. end
  1627. if ed == true then
  1628. tCf = tCf * CFrame.Angles(math.rad(0),math.rad(-3),math.rad(0))
  1629. end
  1630. if rd == true then
  1631. tCf = tCf * CFrame.new(0,0.5,0)
  1632. end
  1633. if fd == true then
  1634. tCf = tCf * CFrame.new(0,-0.5,0)
  1635. end
  1636. local nvec = Vector3.new(0,2,7)
  1637. if seat.Occupant ~= nil then
  1638. nvec = Vector3.new(2,4,7)
  1639. end
  1640. campos = campos:lerp((o37.CFrame * CFrame.Angles(math.rad(90 - xt),math.rad(0 - yt),math.rad(90 - zt))) * CFrame.new(nvec),0.33)
  1641. camera.CoordinateFrame = campos
  1642. char:FindFirstChild("Humanoid").WalkSpeed = 0
  1643. char:FindFirstChild("Humanoid").JumpPower = 0
  1644. else
  1645. if returnhome == true then
  1646. tCf = (char:FindFirstChild("Head").CFrame + Vector3.new(0,5,0)) * CFrame.Angles(math.rad(0),math.rad(90),math.rad(0))
  1647. end
  1648. char:FindFirstChild("Humanoid").WalkSpeed = 16
  1649. char:FindFirstChild("Humanoid").JumpPower = 50
  1650. end
  1651. o1:FindFirstChild("Rotor1"):SetPrimaryPartCFrame(o1:FindFirstChild("Rotor1").PrimaryPart.CFrame * CFrame.Angles(math.rad(0),math.rad(pspd),math.rad(0)))
  1652. o1:FindFirstChild("Rotor2"):SetPrimaryPartCFrame(o1:FindFirstChild("Rotor2").PrimaryPart.CFrame * CFrame.Angles(math.rad(0),math.rad(pspd),math.rad(0)))
  1653. o1:FindFirstChild("Rotor3"):SetPrimaryPartCFrame(o1:FindFirstChild("Rotor3").PrimaryPart.CFrame * CFrame.Angles(math.rad(0),math.rad(pspd),math.rad(0)))
  1654. o1:FindFirstChild("Rotor4"):SetPrimaryPartCFrame(o1:FindFirstChild("Rotor4").PrimaryPart.CFrame * CFrame.Angles(math.rad(0),math.rad(pspd),math.rad(0)))
  1655. o1:SetPrimaryPartCFrame(o1.PrimaryPart.CFrame:lerp((tCf + Vector3.new(0,math.sin(tick()*4)/5,0)) * CFrame.Angles(math.rad(zt*2),math.rad(0*2),math.rad(-(yt*2))),0.06))
  1656. end)
  1657.  
  1658. plr.Chatted:connect(function(c)
  1659. if o1.PrimaryPart ~= nil and fly == true then
  1660. if string.lower(string.sub(c,1,3)) == "/e " then
  1661. cMsg(string.sub(c,4,#c))
  1662. else
  1663. cMsg(c)
  1664. end
  1665. end
  1666. end)
  1667.  
  1668. coroutine.resume(coroutine.create(function()
  1669. while wait() do
  1670. for i=0,255,10 do g = i wait() end
  1671. for i=255,0,-10 do r = i wait() end
  1672. for i=0,255,10 do b = i wait() end
  1673. for i=255,0,-10 do g = i wait() end
  1674. for i=0,255,10 do r = i wait() end
  1675. for i=255,0,-10 do b = i wait() end
  1676. end
  1677. end))
  1678.  
  1679. game:GetService("RunService").RenderStepped:connect(function()
  1680. if p.Parent ~= nil then
  1681. p.CFrame = p.CFrame:lerp(o1.PrimaryPart.CFrame + Vector3.new(0,1,0),0.16)
  1682. else
  1683. p = Instance.new("Part",game.Workspace)
  1684. p.Size = Vector3.new(0.2,0.2,0.2)
  1685. p.Transparency = 1
  1686. p.Anchored = true
  1687. p.CanCollide = false
  1688. p.Name = "Msg"
  1689. p.CFrame = o1.PrimaryPart.CFrame + Vector3.new(0,1,0)
  1690. end
  1691. end)
Add Comment
Please, Sign In to add comment