PareX

fe gui

May 14th, 2019
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 19.24 KB | None | 0 0
  1. -- Objects
  2.  
  3. local FeHax1337 = Instance.new("ScreenGui")
  4. local Base = Instance.new("Frame")
  5. local Annoy = Instance.new("TextButton")
  6. local Hatspin = Instance.new("TextButton")
  7. local Creeper = Instance.new("TextButton")
  8. local Username = Instance.new("TextBox")
  9. local Naked = Instance.new("TextButton")
  10. local Rape = Instance.new("TextButton")
  11. local DropHats = Instance.new("TextButton")
  12. local GameRuiner = Instance.new("TextButton")
  13. local Fly = Instance.new("TextButton")
  14. local Noclip = Instance.new("TextButton")
  15. local GUILine = Instance.new("Frame")
  16. local no = Instance.new("Frame")
  17. local FE = Instance.new("TextLabel")
  18. local GUILine_2 = Instance.new("Frame")
  19. local no_2 = Instance.new("Frame")
  20. local Creditz = Instance.new("TextLabel")
  21.  
  22. -- Properties
  23.  
  24. FeHax1337.Name = "FeHax1337"
  25. FeHax1337.Parent = game.CoreGui
  26.  
  27. Base.Name = "Base"
  28. Base.Parent = FeHax1337
  29. Base.Active = true
  30. Base.BackgroundColor3 = Color3.new(1, 1, 1)
  31. Base.BorderSizePixel = 0
  32. Base.Draggable = true
  33. Base.Position = UDim2.new(0.314787179, 0, 0.224938855, 0)
  34. Base.Selectable = true
  35. Base.Size = UDim2.new(0, 496, 0, 449)
  36.  
  37. Annoy.Name = "Annoy"
  38. Annoy.Parent = Base
  39. Annoy.BackgroundColor3 = Color3.new(0.0588235, 0.513726, 0.164706)
  40. Annoy.BorderSizePixel = 0
  41. Annoy.Position = UDim2.new(0.362454742, 0, 0.374793768, 0)
  42. Annoy.Size = UDim2.new(0, 144, 0, 50)
  43. Annoy.Font = Enum.Font.Highway
  44. Annoy.Text = "Annoy"
  45. Annoy.TextColor3 = Color3.new(0, 0, 0)
  46. Annoy.TextSize = 25
  47. Annoy.MouseButton1Down:connect(function()
  48. local Victim = Username.Text
  49. local P=game:GetService'Players'.LocalPlayer
  50. local C=P.Character or P.CharacterAdded:Wait()
  51. game:GetService'RunService'.Stepped:Connect(function()
  52.    C:WaitForChild'HumanoidRootPart'.CFrame=CFrame.new(game:GetService'Players':FindFirstChild(Victim).Character:WaitForChild'HumanoidRootPart'.Position)
  53. end)
  54. end)
  55.  
  56. Hatspin.Name = "Hatspin"
  57. Hatspin.Parent = Base
  58. Hatspin.BackgroundColor3 = Color3.new(0.0588235, 0.513726, 0.164706)
  59. Hatspin.BorderSizePixel = 0
  60. Hatspin.Position = UDim2.new(0.0277176313, 0, 0.374793768, 0)
  61. Hatspin.Size = UDim2.new(0, 144, 0, 50)
  62. Hatspin.Font = Enum.Font.Highway
  63. Hatspin.Text = "Hatspin"
  64. Hatspin.TextColor3 = Color3.new(0, 0, 0)
  65. Hatspin.TextSize = 25
  66. Hatspin.MouseButton1Down:connect(function()
  67. local obese = game:GetService('Players')
  68. for i,v in pairs(obese.LocalPlayer.Character:GetChildren()) do
  69. if v.ClassName == "Accessory" then
  70. local stg = v.Handle:FindFirstChildOfClass("BodyForce")
  71. if stg == nil then
  72. local a = Instance.new("BodyPosition")
  73. local b = Instance.new("BodyAngularVelocity")
  74. a.Parent = v.Handle
  75. b.Parent = v.Handle
  76. v.Handle.AccessoryWeld:Destroy()
  77. b.AngularVelocity = Vector3.new(0,100,0)
  78. b.MaxTorque = Vector3.new(0,200,0)
  79. a.P = 30000
  80. a.D = 50
  81. game:GetService('RunService').Stepped:connect(function()
  82. a.Position = obese.LocalPlayer.Character.Head.Position
  83. end)
  84. end
  85. end
  86. end
  87. end)
  88.  
  89. Creeper.Name = "Creeper"
  90. Creeper.Parent = Base
  91. Creeper.BackgroundColor3 = Color3.new(0.0588235, 0.513726, 0.164706)
  92. Creeper.BorderSizePixel = 0
  93. Creeper.Position = UDim2.new(0.691692233, 0, 0.374793768, 0)
  94. Creeper.Size = UDim2.new(0, 144, 0, 50)
  95. Creeper.Font = Enum.Font.Highway
  96. Creeper.Text = "Creeper"
  97. Creeper.TextColor3 = Color3.new(0, 0, 0)
  98. Creeper.TextSize = 25
  99. Creeper.MouseButton1Down:connect(function()
  100. local plr = game.Players.LocalPlayer.Character.Humanoid
  101. if plr.RigType == R15 then
  102. game.Players.LocalPlayer.Character.Head.Mesh:Destroy()
  103. game.Players.LocalPlayer.Character.LeftHand:Destroy()
  104. game.Players.LocalPlayer.Character.LeftLowerArm:Destroy()
  105. game.Players.LocalPlayer.Character.LeftUpperArm:Destroy()
  106. game.Players.LocalPlayer.Character.RightHand:Destroy()
  107. game.Players.LocalPlayer.Character.RightLowerArm:Destroy()
  108. game.Players.LocalPlayer.Character.RightUpperArm:Destroy()
  109. else
  110. game.Players.LocalPlayer.Character.Head.Mesh:Destroy()
  111. game.Players.LocalPlayer.Character["Left Arm"]:Destroy()
  112. game.Players.LocalPlayer.Character["Right Arm"]:Destroy()
  113. end
  114. end)
  115.  
  116.  
  117. Username.Name = "Username"
  118. Username.Parent = Base
  119. Username.BackgroundColor3 = Color3.new(0.721569, 0.721569, 0.721569)
  120. Username.BackgroundTransparency = 0.25
  121. Username.BorderSizePixel = 0
  122. Username.Position = UDim2.new(0.0927419364, 0, 0.209354118, 0)
  123. Username.Size = UDim2.new(0, 403, 0, 50)
  124. Username.Font = Enum.Font.Highway
  125. Username.Text = "Username"
  126. Username.TextColor3 = Color3.new(0, 0, 0)
  127. Username.TextSize = 28
  128. Username.TextWrapped = true
  129.  
  130. Naked.Name = "Naked"
  131. Naked.Parent = Base
  132. Naked.BackgroundColor3 = Color3.new(0.0588235, 0.513726, 0.164706)
  133. Naked.BorderSizePixel = 0
  134. Naked.Position = UDim2.new(0.0277176313, 0, 0.557128489, 0)
  135. Naked.Size = UDim2.new(0, 144, 0, 50)
  136. Naked.Font = Enum.Font.Highway
  137. Naked.Text = "Naked"
  138. Naked.TextColor3 = Color3.new(0, 0, 0)
  139. Naked.TextSize = 25
  140. Naked.MouseButton1Down:connect(function()
  141. hummy = game:GetService("Players").LocalPlayer.Character.Humanoid
  142. pcall(function()
  143.    hummy.Parent.Pants:Destroy()
  144. end)
  145. pcall(function()
  146.    hummy.Parent.Shirt:Destroy()
  147. end)
  148. end)
  149.  
  150.  
  151. Rape.Name = "Rape"
  152. Rape.Parent = Base
  153. Rape.BackgroundColor3 = Color3.new(0.0588235, 0.513726, 0.164706)
  154. Rape.BorderSizePixel = 0
  155. Rape.Position = UDim2.new(0.362419903, 0, 0.557128489, 0)
  156. Rape.Size = UDim2.new(0, 144, 0, 50)
  157. Rape.Font = Enum.Font.Highway
  158. Rape.Text = "Rape"
  159. Rape.TextColor3 = Color3.new(0, 0, 0)
  160. Rape.TextSize = 25
  161. Rape.MouseButton1Down:connect(function()
  162.  
  163. player = Username.Text
  164. stupid = Instance.new('Animation')
  165. stupid.AnimationId = 'rbxassetid://148840371'
  166. hummy = game:GetService("Players").LocalPlayer.Character.Humanoid
  167. pcall(function()
  168.    hummy.Parent.Pants:Destroy()
  169. end)
  170. pcall(function()
  171.    hummy.Parent.Shirt:Destroy()
  172. end)
  173. notfunny = hummy:LoadAnimation(stupid)
  174. notfunny:Play()
  175. notfunny:AdjustSpeed(10)
  176. while hummy.Parent.Parent ~= nil do
  177. wait()
  178. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[Username.Text].Character.HumanoidRootPart.CFrame
  179. end
  180. end)
  181.  
  182. DropHats.Name = "Drop Hats"
  183. DropHats.Parent = Base
  184. DropHats.BackgroundColor3 = Color3.new(0.0588235, 0.513726, 0.164706)
  185. DropHats.BorderSizePixel = 0
  186. DropHats.Position = UDim2.new(0.690962017, 0, 0.557128489, 0)
  187. DropHats.Size = UDim2.new(0, 144, 0, 50)
  188. DropHats.Font = Enum.Font.Highway
  189. DropHats.Text = "Drop Hats"
  190. DropHats.TextColor3 = Color3.new(0, 0, 0)
  191. DropHats.TextSize = 25
  192. DropHats.MouseButton1Down:connect(function()
  193. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  194. if (v:IsA("Accessory")) then
  195. v.Parent = workspace
  196. end
  197. end
  198. end)
  199.  
  200. GameRuiner.Name = "GameRuiner"
  201. GameRuiner.Parent = Base
  202. GameRuiner.BackgroundColor3 = Color3.new(0.0588235, 0.513726, 0.164706)
  203. GameRuiner.BorderSizePixel = 0
  204. GameRuiner.Position = UDim2.new(0.0277424753, 0, 0.724166334, 0)
  205. GameRuiner.Size = UDim2.new(0, 144, 0, 50)
  206. GameRuiner.Font = Enum.Font.Highway
  207. GameRuiner.Text = "GameRuiner"
  208. GameRuiner.TextColor3 = Color3.new(0, 0, 0)
  209. GameRuiner.TextSize = 25
  210. GameRuiner.MouseButton1Down:connect(function()
  211. -- Objects
  212.  
  213. local GameRuiner = Instance.new("ScreenGui")
  214. local Main = Instance.new("Frame")
  215. local info = Instance.new("TextLabel")
  216. local close = Instance.new("TextButton")
  217. local username = Instance.new("TextBox")
  218. local shutdown = Instance.new("TextButton")
  219. local give = Instance.new("TextButton")
  220. local goto = Instance.new("TextButton")
  221.  
  222. -- Properties
  223.  
  224. GameRuiner.Name = "GameRuiner"
  225. GameRuiner.Parent = game.Players.LocalPlayer.PlayerGui
  226.  
  227. Main.Name = "Main"
  228. Main.Parent = GameRuiner
  229. Main.Active = true
  230. Main.Selectable = true
  231. Main.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  232. Main.BorderColor3 = Color3.new(1, 1, 1)
  233. Main.Draggable = true
  234. Main.Position = UDim2.new(0.400000006, 0, 0.400000006, 0)
  235. Main.Size = UDim2.new(0, 400, 0, 300)
  236.  
  237. info.Name = "info"
  238. info.Parent = Main
  239. info.BackgroundColor3 = Color3.new(0.4, 0.4, 0.4)
  240. info.BorderColor3 = Color3.new(1, 1, 1)
  241. info.Size = UDim2.new(0, 350, 0, 50)
  242. info.Font = Enum.Font.SourceSansLight
  243. info.FontSize = Enum.FontSize.Size32
  244. info.Text = "GameRuiner GUI V2.0"
  245. info.TextColor3 = Color3.new(0, 0, 0)
  246. info.TextSize = 30
  247. info.TextWrapped = true
  248.  
  249. close.Name = "close"
  250. close.Parent = Main
  251. close.BackgroundColor3 = Color3.new(1, 0, 0)
  252. close.BorderColor3 = Color3.new(1, 1, 1)
  253. close.Position = UDim2.new(0, 350, 0, 0)
  254. close.Size = UDim2.new(0, 50, 0, 50)
  255. close.Font = Enum.Font.SourceSansLight
  256. close.FontSize = Enum.FontSize.Size14
  257. close.Text = "X"
  258. close.TextColor3 = Color3.new(0, 0, 0)
  259. close.TextScaled = true
  260. close.TextSize = 14
  261. close.TextWrapped = true
  262.  
  263. username.Name = "username"
  264. username.Parent = Main
  265. username.BackgroundColor3 = Color3.new(0.901961, 0.901961, 0.901961)
  266. username.BorderColor3 = Color3.new(0, 0, 0)
  267. username.Position = UDim2.new(0, 50, 0, 100)
  268. username.Size = UDim2.new(0, 300, 0, 50)
  269. username.Font = Enum.Font.SourceSansLight
  270. username.FontSize = Enum.FontSize.Size14
  271. username.Text = "Username"
  272. username.TextColor3 = Color3.new(0, 0, 0)
  273. username.TextScaled = true
  274. username.TextSize = 14
  275. username.TextWrapped = true
  276.  
  277. shutdown.Name = "shutdown"
  278. shutdown.Parent = Main
  279. shutdown.BackgroundColor3 = Color3.new(1, 0, 1)
  280. shutdown.BorderColor3 = Color3.new(1, 1, 1)
  281. shutdown.ClipsDescendants = true
  282. shutdown.Position = UDim2.new(0, 50, 0, 250)
  283. shutdown.Size = UDim2.new(0, 300, 0, 50)
  284. shutdown.AutoButtonColor = false
  285. shutdown.Font = Enum.Font.SourceSansLight
  286. shutdown.FontSize = Enum.FontSize.Size14
  287. shutdown.Text = "FE Shutdown"
  288. shutdown.TextColor3 = Color3.new(0, 0, 0)
  289. shutdown.TextScaled = true
  290. shutdown.TextSize = 14
  291. shutdown.TextWrapped = true
  292.  
  293. give.Name = "give"
  294. give.Parent = Main
  295. give.BackgroundColor3 = Color3.new(0, 0.501961, 0)
  296. give.BorderColor3 = Color3.new(1, 1, 1)
  297. give.ClipsDescendants = true
  298. give.Position = UDim2.new(0, 50, 0, 175)
  299. give.Size = UDim2.new(0, 125, 0, 50)
  300. give.AutoButtonColor = false
  301. give.Font = Enum.Font.SourceSansLight
  302. give.FontSize = Enum.FontSize.Size14
  303. give.Text = "Give"
  304. give.TextColor3 = Color3.new(0, 0, 0)
  305. give.TextScaled = true
  306. give.TextSize = 14
  307. give.TextWrapped = true
  308.  
  309. goto.Name = "goto"
  310. goto.Parent = Main
  311. goto.BackgroundColor3 = Color3.new(0, 0.501961, 0)
  312. goto.BorderColor3 = Color3.new(1, 1, 1)
  313. goto.ClipsDescendants = true
  314. goto.Position = UDim2.new(0, 225, 0, 175)
  315. goto.Size = UDim2.new(0, 125, 0, 50)
  316. goto.AutoButtonColor = false
  317. goto.Font = Enum.Font.SourceSansLight
  318. goto.FontSize = Enum.FontSize.Size14
  319. goto.Text = "Goto"
  320. goto.TextColor3 = Color3.new(0, 0, 0)
  321. goto.TextScaled = true
  322. goto.TextSize = 14
  323. goto.TextWrapped = true
  324.  
  325. function GetPlayers(Name)
  326. if Name:lower() == "me" then
  327. return {game.Players.LocalPlayer}
  328. elseif Name:lower() == "all" then
  329. return game.Players:GetChildren()
  330. elseif Name:lower() == "others" then
  331. local t = {}
  332. for i,v in pairs(game.Players:GetChildren()) do
  333. if v.Name ~= game.Players.LocalPlayer.Name then
  334. table.insert(t, v)
  335. end
  336. end
  337. return t
  338. else
  339. local t = {}
  340. for i,v in pairs(game.Players:GetChildren()) do
  341. if v.Name:sub(1, #Name):lower() == Name:lower() then
  342. table.insert(t, v)
  343. end
  344. end
  345. return t
  346. end
  347. end
  348.  
  349. close.MouseButton1Down:connect(function()
  350. Main:TweenPosition(UDim2.new(0.400000006, 0, -0.5, 0), "Out", "Quad", 0.5)
  351. wait(0.5)
  352. Main:Destroy()
  353. end)
  354.  
  355. give.MouseButton1Down:connect(function(X, Y)
  356. if not give:FindFirstChild('Circle') then
  357. local C = Instance.new('ImageLabel', give)
  358. C.BackgroundTransparency = 1
  359. C.Position = UDim2.new(0, X - 0, 0, Y - 35) - UDim2.new(0, give.AbsolutePosition.X, 0, give.AbsolutePosition.Y)
  360. C.Size = UDim2.new(0, 0, 0, 0)
  361. C.ZIndex = give.ZIndex
  362. C.Image = 'rbxassetid://200182847'
  363. C.ImageColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  364. C.Name = 'Circle'
  365. C:TweenSizeAndPosition(UDim2.new(0, 500, 0, 500), C.Position - UDim2.new(0, 250, 0, 250), 'Out', 'Quart', 2.5)
  366. for i = 0, 1, 0.03 do
  367. C.ImageTransparency = i
  368. game:GetService('RunService').RenderStepped:wait()
  369. end
  370. C:destroy()
  371. end
  372. for a,v in pairs(GetPlayers(username.Text)) do
  373. for b,x in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  374. if x:IsA("Tool") then
  375. x.Parent = v.Character
  376. end
  377. end
  378. end
  379. end)
  380.  
  381. shutdown.MouseButton1Down:connect(function(X, Y)
  382. if not shutdown:FindFirstChild('Circle') then
  383. local C = Instance.new('ImageLabel', shutdown)
  384. C.BackgroundTransparency = 1
  385. C.Position = UDim2.new(0, X - 0, 0, Y - 35) - UDim2.new(0, shutdown.AbsolutePosition.X, 0, shutdown.AbsolutePosition.Y)
  386. C.Size = UDim2.new(0, 0, 0, 0)
  387. C.ZIndex = shutdown.ZIndex
  388. C.Image = 'rbxassetid://200182847'
  389. C.ImageColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  390. C.Name = 'Circle'
  391. C:TweenSizeAndPosition(UDim2.new(0, 500, 0, 500), C.Position - UDim2.new(0, 250, 0, 250), 'Out', 'Quart', 2.5)
  392. for i = 0, 1, 0.03 do
  393. C.ImageTransparency = i
  394. game:GetService('RunService').RenderStepped:wait()
  395. end
  396. C:destroy()
  397. end
  398. while wait() do
  399. for a,v in pairs(game.Players:GetChildren()) do
  400. if v.Character ~= nil and v.Character:FindFirstChild("Head") then
  401. for b,x in pairs(v.Character.Head:GetChildren()) do
  402. if x:IsA("Sound") then
  403. x.Playing = true
  404. end
  405. end
  406. end
  407. end
  408. end
  409. while wait() do
  410. for a,v in pairs(game.Players:GetChildren()) do
  411. if v.Character ~= nil and v.Character:FindFirstChild("Head") then
  412. for b,x in pairs(v.Character.Head:GetChildren()) do
  413. if x:IsA("Sound") then
  414. x.Playing = true
  415. end
  416. end
  417. end
  418. end
  419. end
  420. end)
  421.  
  422. goto.MouseButton1Down:connect(function(X, Y)
  423. if not goto:FindFirstChild('Circle') then
  424. local C = Instance.new('ImageLabel', goto)
  425. C.BackgroundTransparency = 1
  426. C.Position = UDim2.new(0, X - 0, 0, Y - 35) - UDim2.new(0, goto.AbsolutePosition.X, 0, goto.AbsolutePosition.Y)
  427. C.Size = UDim2.new(0, 0, 0, 0)
  428. C.ZIndex = goto.ZIndex
  429. C.Image = 'rbxassetid://200182847'
  430. C.ImageColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  431. C.Name = 'Circle'
  432. C:TweenSizeAndPosition(UDim2.new(0, 500, 0, 500), C.Position - UDim2.new(0, 250, 0, 250), 'Out', 'Quart', 2.5)
  433. for i = 0, 1, 0.03 do
  434. C.ImageTransparency = i
  435. game:GetService('RunService').RenderStepped:wait()
  436. end
  437. C:destroy()
  438. end
  439. for a,v in pairs(GetPlayers(username.Text)) do
  440. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
  441. end
  442. end)
  443. end)
  444.  
  445. local Flying = true
  446.  
  447. Fly.Name = "Fly"
  448. Fly.Parent = Base
  449. Fly.BackgroundColor3 = Color3.new(0.0588235, 0.513726, 0.164706)
  450. Fly.BorderSizePixel = 0
  451. Fly.Position = UDim2.new(0.362419903, 0, 0.724166334, 0)
  452. Fly.Size = UDim2.new(0, 144, 0, 50)
  453. Fly.Font = Enum.Font.Highway
  454. Fly.Text = "Fly"
  455. Fly.TextColor3 = Color3.new(0, 0, 0)
  456. Fly.TextSize = 25
  457. Fly.MouseButton1Down:connect(function()
  458. repeat wait()
  459.   until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  460. local mouse = game.Players.LocalPlayer:GetMouse()
  461. repeat wait() until mouse
  462. local plr = game.Players.LocalPlayer
  463. local torso = plr.Character.Torso
  464. local flying = true
  465. local deb = true
  466. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  467. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  468. local maxspeed = 50
  469. local speed = 0
  470.  
  471. function Fly()
  472. local bg = Instance.new("BodyGyro", torso)
  473. bg.P = 9e4
  474. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  475. bg.cframe = torso.CFrame
  476. local bv = Instance.new("BodyVelocity", torso)
  477. bv.velocity = Vector3.new(0,0.1,0)
  478. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  479. repeat wait()
  480. plr.Character.Humanoid.PlatformStand = true
  481. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  482. speed = speed+.5+(speed/maxspeed)
  483. if speed > maxspeed then
  484. speed = maxspeed
  485. end
  486. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  487. speed = speed-1
  488. if speed < 0 then
  489. speed = 0
  490. end
  491. end
  492. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  493. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  494. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  495. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  496. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  497. else
  498. bv.velocity = Vector3.new(0,0.1,0)
  499. end
  500. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  501. until not flying
  502. ctrl = {f = 0, b = 0, l = 0, r = 0}
  503. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  504. speed = 0
  505. bg:Destroy()
  506. bv:Destroy()
  507. plr.Character.Humanoid.PlatformStand = false
  508. end
  509. mouse.KeyDown:connect(function(key)
  510. if key:lower() == "e" then
  511. if flying then flying = false
  512. else
  513. flying = true
  514. Fly()
  515. end
  516. elseif key:lower() == "w" then
  517. ctrl.f = 1
  518. elseif key:lower() == "s" then
  519. ctrl.b = -1
  520. elseif key:lower() == "a" then
  521. ctrl.l = -1
  522. elseif key:lower() == "d" then
  523. ctrl.r = 1
  524. end
  525. end)
  526. mouse.KeyUp:connect(function(key)
  527. if key:lower() == "w" then
  528. ctrl.f = 0
  529. elseif key:lower() == "s" then
  530. ctrl.b = 0
  531. elseif key:lower() == "a" then
  532. ctrl.l = 0
  533. elseif key:lower() == "d" then
  534. ctrl.r = 0
  535. end
  536. end)
  537. Fly()
  538. end)
  539.  
  540.  
  541. local noclip = false
  542.  
  543. Noclip.Name = "Noclip"
  544. Noclip.Parent = Base
  545. Noclip.BackgroundColor3 = Color3.new(0.0588235, 0.513726, 0.164706)
  546. Noclip.BorderSizePixel = 0
  547. Noclip.Position = UDim2.new(0.69104898, 0, 0.724166334, 0)
  548. Noclip.Size = UDim2.new(0, 144, 0, 50)
  549. Noclip.Font = Enum.Font.Highway
  550. Noclip.Text = "Noclip"
  551. Noclip.TextColor3 = Color3.new(0, 0, 0)
  552. Noclip.TextSize = 25
  553. Noclip.MouseButton1Down:connect(function()
  554. if Noclip == false then
  555. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  556. NoClip.Text = "Clip"
  557. else
  558. game.Players.LocalPlayer.Character.Humanoid:ChangeState(9)
  559. Noclip = true
  560. end
  561. end)
  562.  
  563.  
  564. GUILine.Name = "GUI Line"
  565. GUILine.Parent = Base
  566. GUILine.BackgroundColor3 = Color3.new(0.0823529, 0.639216, 0.219608)
  567. GUILine.BorderSizePixel = 0
  568. GUILine.Position = UDim2.new(-0.000363619998, 0, -0.00101011992, 0)
  569. GUILine.Selectable = true
  570. GUILine.Size = UDim2.new(0, 496, 0, 12)
  571.  
  572. no.Name = "no"
  573. no.Parent = GUILine
  574. no.BackgroundColor3 = Color3.new(0.0901961, 0.780392, 0.239216)
  575. no.BorderSizePixel = 0
  576. no.Position = UDim2.new(0, 0, 1, 0)
  577. no.Size = UDim2.new(0, 496, 0, 67)
  578.  
  579. FE.Name = "FE"
  580. FE.Parent = GUILine
  581. FE.BackgroundColor3 = Color3.new(1, 1, 1)
  582. FE.BackgroundTransparency = 1
  583. FE.Position = UDim2.new(0.258244455, 0, 0.00167793036, 0)
  584. FE.Size = UDim2.new(0, 240, 0, 86)
  585. FE.Font = Enum.Font.Highway
  586. FE.Text = "FE Hax 1337"
  587. FE.TextSize = 35
  588.  
  589. GUILine_2.Name = "GUI Line"
  590. GUILine_2.Parent = Base
  591. GUILine_2.BackgroundColor3 = Color3.new(0.0823529, 0.639216, 0.219608)
  592. GUILine_2.BorderSizePixel = 0
  593. GUILine_2.Position = UDim2.new(-0.000363620929, 0, 0.960183144, 0)
  594. GUILine_2.Size = UDim2.new(0, 496, 0, 18)
  595.  
  596. no_2.Name = "no"
  597. no_2.Parent = GUILine_2
  598. no_2.BackgroundColor3 = Color3.new(0.0901961, 0.780392, 0.239216)
  599. no_2.BorderSizePixel = 0
  600. no_2.Position = UDim2.new(0, 0, -1.43478262, 0)
  601. no_2.Size = UDim2.new(0, 496, 0, 33)
  602.  
  603. Creditz.Name = "Creditz"
  604. Creditz.Parent = GUILine_2
  605. Creditz.BackgroundColor3 = Color3.new(1, 1, 1)
  606. Creditz.BackgroundTransparency = 1
  607. Creditz.BorderSizePixel = 0
  608. Creditz.Position = UDim2.new(0.00806450844, 0, -1.91666675, 0)
  609. Creditz.Size = UDim2.new(0, 488, 0, 50)
  610. Creditz.Font = Enum.Font.Highway
  611. Creditz.Text = "Credits : Stick_Smart, iVerzide and Cookie1890 for the scripts."
  612. Creditz.TextSize = 20
Add Comment
Please, Sign In to add comment