Advertisement
DaOMEGAa32

fe drone

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