Advertisement
Guest User

56565746

a guest
Mar 22nd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 47.76 KB | None | 0 0
  1. -- Objects
  2.  
  3. local GamesGUI = Instance.new("ScreenGui")
  4. local Body = Instance.new("Frame")
  5. local TextLabel = Instance.new("TextLabel")
  6. local TextLabel_2 = Instance.new("TextLabel")
  7. local CreeperR6 = Instance.new("TextButton")
  8. local Fly = Instance.new("TextButton")
  9. local Animations = Instance.new("TextButton")
  10. local Chatlogs = Instance.new("TextButton")
  11. local Nolimbs = Instance.new("TextButton")
  12. local Glitchmax = Instance.new("TextButton")
  13. local FEbtools = Instance.new("TextButton")
  14. local Flyinghead = Instance.new("TextButton")
  15. local Drophats = Instance.new("TextButton")
  16. local TextLabel_3 = Instance.new("TextLabel")
  17. local WaterPark = Instance.new("TextButton")
  18. local Citylifehammer = Instance.new("TextButton")
  19. local Citylifebombvest = Instance.new("TextButton")
  20. local Soon = Instance.new("TextButton")
  21. local Soon_2 = Instance.new("TextButton")
  22. local Soon_3 = Instance.new("TextButton")
  23. local Soon_4 = Instance.new("TextButton")
  24. local Open = Instance.new("TextButton")
  25.  
  26. -- Properties
  27.  
  28. GamesGUI.Name = "Games GUI"
  29. GamesGUI.Parent = game.Players.LocalPlayer.PlayerGui
  30.  
  31. Body.Name = "Body"
  32. Body.Parent = GamesGUI
  33. Body.Active = true
  34. Body.BackgroundColor3 = Color3.new(0, 1, 0.0823529)
  35. Body.Position = UDim2.new(0.613003194, 0, 0.0890688598, 0)
  36. Body.Selectable = true
  37. Body.Size = UDim2.new(0, 331, 0, 272)
  38.  
  39. TextLabel.Parent = Body
  40. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  41. TextLabel.Size = UDim2.new(0, 331, 0, 16)
  42. TextLabel.Font = Enum.Font.SourceSans
  43. TextLabel.Text = ""
  44. TextLabel.TextSize = 14
  45.  
  46. TextLabel_2.Parent = Body
  47. TextLabel_2.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  48. TextLabel_2.Position = UDim2.new(0, 0, 0.0588235296, 0)
  49. TextLabel_2.Size = UDim2.new(0, 331, 0, 28)
  50. TextLabel_2.Font = Enum.Font.SciFi
  51. TextLabel_2.Text = "Troll FE V1.2"
  52. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  53. TextLabel_2.TextSize = 14
  54. TextLabel_2.TextXAlignment = Enum.TextXAlignment.Left
  55.  
  56. CreeperR6.Name = "Creeper R6"
  57. CreeperR6.Parent = Body
  58. CreeperR6.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  59. CreeperR6.Position = UDim2.new(0.0332326293, 0, 0.216911763, 0)
  60. CreeperR6.Size = UDim2.new(0, 71, 0, 18)
  61. CreeperR6.Font = Enum.Font.Fantasy
  62. CreeperR6.Text = "Creeper R6"
  63. CreeperR6.TextColor3 = Color3.new(1, 1, 1)
  64. CreeperR6.TextSize = 14
  65.  
  66. CreeperR6.MouseButton1Down:connect(function()
  67. game.Players.LocalPlayer.Character.Head.Mesh:Destroy()
  68. game.Players.LocalPlayer.Character["Left Arm"]:Destroy()
  69. game.Players.LocalPlayer.Character["Right Arm"]:Destroy()
  70. end)
  71.  
  72. Fly.Name = "Fly"
  73. Fly.Parent = Body
  74. Fly.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  75. Fly.Position = UDim2.new(0.374622345, 0, 0.216911793, 0)
  76. Fly.Size = UDim2.new(0, 71, 0, 18)
  77. Fly.Font = Enum.Font.Fantasy
  78. Fly.Text = "Fly [E]"
  79. Fly.TextColor3 = Color3.new(1, 1, 1)
  80. Fly.TextSize = 14
  81.  
  82. Fly.MouseButton1Down:connect(function()
  83. repeat wait()
  84. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  85. local mouse = game.Players.LocalPlayer:GetMouse()
  86. repeat wait() until mouse
  87. local plr = game.Players.LocalPlayer
  88. local torso = plr.Character.Torso
  89. local flying = true
  90. local deb = true
  91. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  92. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  93. local maxspeed = 50
  94. local speed = 0
  95.  
  96. function Fly()
  97. local bg = Instance.new("BodyGyro", torso)
  98. bg.P = 9e4
  99. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  100. bg.cframe = torso.CFrame
  101. local bv = Instance.new("BodyVelocity", torso)
  102. bv.velocity = Vector3.new(0,0.1,0)
  103. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  104. repeat wait()
  105. plr.Character.Humanoid.PlatformStand = true
  106. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  107. speed = speed+.5+(speed/maxspeed)
  108. if speed > maxspeed then
  109. speed = maxspeed
  110. end
  111. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  112. speed = speed-1
  113. if speed < 0 then
  114. speed = 0
  115. end
  116. end
  117. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  118. 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
  119. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  120. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  121. 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
  122. else
  123. bv.velocity = Vector3.new(0,0.1,0)
  124. end
  125. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  126. until not flying
  127. ctrl = {f = 0, b = 0, l = 0, r = 0}
  128. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  129. speed = 0
  130. bg:Destroy()
  131. bv:Destroy()
  132. plr.Character.Humanoid.PlatformStand = false
  133. end
  134. mouse.KeyDown:connect(function(key)
  135. if key:lower() == "e" then
  136. if flying then flying = false
  137. else
  138. flying = true
  139. Fly()
  140. end
  141. elseif key:lower() == "w" then
  142. ctrl.f = 1
  143. elseif key:lower() == "s" then
  144. ctrl.b = -1
  145. elseif key:lower() == "a" then
  146. ctrl.l = -1
  147. elseif key:lower() == "d" then
  148. ctrl.r = 1
  149. end
  150. end)
  151. mouse.KeyUp:connect(function(key)
  152. if key:lower() == "w" then
  153. ctrl.f = 0
  154. elseif key:lower() == "s" then
  155. ctrl.b = 0
  156. elseif key:lower() == "a" then
  157. ctrl.l = 0
  158. elseif key:lower() == "d" then
  159. ctrl.r = 0
  160. end
  161. end)
  162. Fly()
  163. end)
  164.  
  165. Animations.Name = "Animations"
  166. Animations.Parent = Body
  167. Animations.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  168. Animations.Position = UDim2.new(0.682779431, 0, 0.216911793, 0)
  169. Animations.Size = UDim2.new(0, 71, 0, 18)
  170. Animations.Font = Enum.Font.Fantasy
  171. Animations.Text = "Animations"
  172. Animations.TextColor3 = Color3.new(1, 1, 1)
  173. Animations.TextSize = 14
  174.  
  175. Animations.MouseButton1Down:connect(function()
  176. local Gui = Instance.new("ScreenGui", game.CoreGui)
  177. Gui.Name = "FE Animations"
  178. local Background = Instance.new("Frame",Gui)
  179. Background.Name = "Background"
  180. Background.Active = true
  181. Background.BackgroundColor3 = Color3.fromRGB(220,220,255)
  182. Background.Transparency = 0.3
  183. Background.BorderSizePixel = 5
  184. Background.Draggable = true
  185. Background.Position = UDim2.new(0,300,0,300)
  186. Background.Size = UDim2.new(0,345,0,190)
  187. local Title = Instance.new("TextLabel",Background)
  188. Title.BackgroundTransparency = 1
  189. Title.Position = UDim2.new(0,0,0,-80)
  190. Title.Size = UDim2.new(0,290,1,0)
  191. Title.Font = "SourceSansLight"
  192. Title.FontSize = "Size18"
  193. Title.Text = "FE Animations [by illremember]"
  194. Title.TextColor3 = Color3.fromRGB(20,20,25)
  195.  
  196. local Chop = Instance.new("TextButton", Background)
  197. Chop.Name = "Chop"
  198. Chop.BackgroundColor3 = Color3.fromRGB(20,20,20)
  199. Chop.BackgroundTransparency = 0.1
  200. Chop.BorderSizePixel = 0
  201. Chop.Position = UDim2.new(0,120,0,30)
  202. Chop.Size = UDim2.new(0,100,0,30)
  203. Chop.Font = "SourceSansItalic"
  204. Chop.FontSize = "Size18"
  205. Chop.Text = "Chop"
  206. Chop.TextColor3 = Color3.fromRGB(230,230,230)
  207. Chop.TextWrapped = true
  208.  
  209. local Dance = Chop:Clone()
  210. Dance.Name = "Dance"
  211. Dance.Parent = Background
  212. Dance.Position = UDim2.new(0,120,0,70)
  213. Dance.Text = "Dance"
  214.  
  215. local ArmsOut = Chop:Clone()
  216. ArmsOut.Name = "ArmsOut"
  217. ArmsOut.Parent = Background
  218. ArmsOut.Position = UDim2.new(0,10,0,110)
  219. ArmsOut.Text = "ArmsOut"
  220.  
  221. local Stab = Chop:Clone()
  222. Stab.Name = "Stab"
  223. Stab.Parent = Background
  224. Stab.Position = UDim2.new(0,10,0,30)
  225. Stab.Text = "Stab"
  226.  
  227. local SmellyRun = Chop:Clone()
  228. SmellyRun.Name = "SmellyRun"
  229. SmellyRun.Parent = Background
  230. SmellyRun.Position = UDim2.new(0,10,0,70)
  231. SmellyRun.Text = "SmellyRun"
  232.  
  233. local rando = Chop:Clone()
  234. rando.Name = "rando"
  235. rando.Parent = Background
  236. rando.Position = UDim2.new(0,120,0,110)
  237. rando.Text = "rando"
  238.  
  239. local hmm = Chop:Clone()
  240. hmm.Name = "hmm"
  241. hmm.Parent = Background
  242. hmm.Position = UDim2.new(0,120,0,150)
  243. hmm.Text = "hmm"
  244.  
  245. local Kick = Chop:Clone()
  246. Kick.Name = "Kick"
  247. Kick.Parent = Background
  248. Kick.Position = UDim2.new(0,10,0,150)
  249. Kick.Size = UDim2.new(0,100,0,30)
  250. Kick.Text = "Kick"
  251.  
  252. local Flying = Chop:Clone()
  253. Flying.Name = "Flying"
  254. Flying.Parent = Background
  255. Flying.Position = UDim2.new(0,230,0,30)
  256. Flying.Size = UDim2.new(0,100,0,30)
  257. Flying.Text = "Flying"
  258.  
  259. local Arms = Chop:Clone()
  260. Arms.Name = "Arms"
  261. Arms.Parent = Background
  262. Arms.Position = UDim2.new(0,230,0,70)
  263. Arms.Size = UDim2.new(0,100,0,30)
  264. Arms.Text = "Arms"
  265.  
  266. local Sword = Chop:Clone()
  267. Sword.Name = "Sword"
  268. Sword.Parent = Background
  269. Sword.Position = UDim2.new(0,230,0,110)
  270. Sword.Size = UDim2.new(0,100,0,30)
  271. Sword.Text = "Sword"
  272.  
  273. local Insane = Chop:Clone()
  274. Insane.Name = "Insane"
  275. Insane.Parent = Background
  276. Insane.Position = UDim2.new(0,230,0,150)
  277. Insane.Size = UDim2.new(0,100,0,30)
  278. Insane.Text = "Insane"
  279.  
  280. --
  281. local plr = game.Players.LocalPlayer
  282.  
  283. local mouse = plr:GetMouse()
  284.  
  285. lpc = game.Players.LocalPlayer.Character
  286.  
  287. weld1 = Instance.new("Weld")
  288.  
  289. Chop.MouseButton1Down:connect(function()
  290. local gg = mouse.Target
  291. if gg ~= nil then
  292. for i,v in pairs(game.Players:GetPlayers()) do
  293. AnimationId = "33169596"
  294. local Anim = Instance.new("Animation")
  295. Anim.AnimationId = "rbxassetid://"..AnimationId
  296. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  297. k:Play()
  298. k:AdjustSpeed(1)
  299. end
  300. end
  301. end)
  302.  
  303. Insane.MouseButton1Down:connect(function()
  304. local gg = mouse.Target
  305. if gg ~= nil then
  306. for i,v in pairs(game.Players:GetPlayers()) do
  307. AnimationId = "33796059"
  308. local Anim = Instance.new("Animation")
  309. Anim.AnimationId = "rbxassetid://"..AnimationId
  310. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  311. k:Play()
  312. k:AdjustSpeed(10000)
  313. end
  314. end
  315. end)
  316.  
  317. Arms.MouseButton1Down:connect(function()
  318. local gg = mouse.Target
  319. if gg ~= nil then
  320. for i,v in pairs(game.Players:GetPlayers()) do
  321. AnimationId = "33169583"
  322. local Anim = Instance.new("Animation")
  323. Anim.AnimationId = "rbxassetid://"..AnimationId
  324. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  325. k:Play()
  326. k:AdjustSpeed(1)
  327. end
  328. end
  329. end)
  330.  
  331. Sword.MouseButton1Click:connect(function()
  332. local gg = mouse.Target
  333. if gg ~= nil then
  334. for i,v in pairs(game.Players:GetPlayers()) do
  335. AnimationId = "35978879"
  336. local Anim = Instance.new("Animation")
  337. Anim.AnimationId = "rbxassetid://"..AnimationId
  338. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  339. k:Play()
  340. k:AdjustSpeed(1)
  341. end
  342. end
  343. end)
  344.  
  345. hmm.MouseButton1Down:connect(function()
  346. local gg = mouse.Target
  347. if gg ~= nil then
  348. for i,v in pairs(game.Players:GetPlayers()) do
  349. AnimationId = "33855276"
  350. local Anim = Instance.new("Animation")
  351. Anim.AnimationId = "rbxassetid://"..AnimationId
  352. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  353. k:Play()
  354. k:AdjustSpeed(1)
  355. end
  356. end
  357. end)
  358.  
  359. rando.MouseButton1Down:connect(function()
  360. local gg = mouse.Target
  361. if gg ~= nil then
  362. for i,v in pairs(game.Players:GetPlayers()) do
  363. AnimationId = "48977286"
  364. local Anim = Instance.new("Animation")
  365. Anim.AnimationId = "rbxassetid://"..AnimationId
  366. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  367. k:Play()
  368. k:AdjustSpeed(1)
  369. end
  370. end
  371. end)
  372.  
  373. Dance.MouseButton1Down:connect(function()
  374. local gg = mouse.Target
  375. if gg ~= nil then
  376. for i,v in pairs(game.Players:GetPlayers()) do
  377. AnimationId = "35654637"
  378. local Anim = Instance.new("Animation")
  379. Anim.AnimationId = "rbxassetid://"..AnimationId
  380. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  381. k:Play()
  382. k:AdjustSpeed(1)
  383. end
  384. end
  385. end)
  386.  
  387. Stab.MouseButton1Down:connect(function()
  388. local gg = mouse.Target
  389. if gg ~= nil then
  390. for i,v in pairs(game.Players:GetPlayers()) do
  391. AnimationId = "66703241"
  392. local Anim = Instance.new("Animation")
  393. Anim.AnimationId = "rbxassetid://"..AnimationId
  394. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  395. k:Play()
  396. k:AdjustSpeed(1)
  397. end
  398. end
  399. end)
  400.  
  401. Kick.MouseButton1Down:connect(function()
  402. local gg = mouse.Target
  403. if gg ~= nil then
  404. for i,v in pairs(game.Players:GetPlayers()) do
  405. AnimationId = "45737360"
  406. local Anim = Instance.new("Animation")
  407. Anim.AnimationId = "rbxassetid://"..AnimationId
  408. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  409. k:Play()
  410. k:AdjustSpeed(1)
  411. end
  412. end
  413. end)
  414.  
  415. Flying.MouseButton1Down:connect(function()
  416. flying = not flying
  417. repeat wait()
  418. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  419. local mouse = game.Players.LocalPlayer:GetMouse()
  420. repeat wait() until mouse
  421. local plr = game.Players.LocalPlayer
  422. local torso = plr.Character.Torso
  423. local deb = true
  424. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  425. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  426. local maxspeed = 70
  427. local speed = 0
  428. if flying then
  429. Fly.BackgroundColor3 = loc
  430. else
  431. Fly.BackgroundColor3 = col
  432. end
  433.  
  434. function FlyFunction()
  435. local bg = Instance.new("BodyGyro", torso)
  436. bg.P = 9e4
  437. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  438. bg.cframe = torso.CFrame
  439. local bv = Instance.new("BodyVelocity", torso)
  440. bv.velocity = Vector3.new(0,0.1,0)
  441. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  442. repeat wait()
  443. plr.Character.Humanoid.PlatformStand = true
  444. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  445. speed = speed+.5+(speed/maxspeed)
  446. if speed > maxspeed then
  447. speed = maxspeed
  448. end
  449. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  450. speed = speed-1
  451. if speed < 0 then
  452. speed = 0
  453. end
  454. end
  455. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  456. 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
  457. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  458. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  459. 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
  460. else
  461. bv.velocity = Vector3.new(0,0.1,0)
  462. end
  463. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  464. until not flying
  465. ctrl = {f = 0, b = 0, l = 0, r = 0}
  466. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  467. speed = 0
  468. bg:Destroy()
  469. bv:Destroy()
  470. plr.Character.Humanoid.PlatformStand = false
  471. end
  472. mouse.KeyDown:connect(function(key)
  473. if key:lower() == "w" then
  474. ctrl.f = 1
  475. elseif key:lower() == "s" then
  476. ctrl.b = -1
  477. elseif key:lower() == "a" then
  478. ctrl.l = -1
  479. elseif key:lower() == "d" then
  480. ctrl.r = 1
  481. end
  482. end)
  483. mouse.KeyUp:connect(function(key)
  484. if key:lower() == "w" then
  485. ctrl.f = 0
  486. elseif key:lower() == "s" then
  487. ctrl.b = 0
  488. elseif key:lower() == "a" then
  489. ctrl.l = 0
  490. elseif key:lower() == "d" then
  491. ctrl.r = 0
  492. end
  493. end)
  494. FlyFunction()
  495. end)
  496.  
  497. SmellyRun.MouseButton1Down:connect(function()
  498. local gg = mouse.Target
  499. if gg ~= nil then
  500. for i,v in pairs(game.Players:GetPlayers()) do
  501. AnimationId = "30235165"
  502. local Anim = Instance.new("Animation")
  503. Anim.AnimationId = "rbxassetid://"..AnimationId
  504. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  505. k:Play()
  506. k:AdjustSpeed(1)
  507. end
  508. end
  509. end)
  510.  
  511. ArmsOut.MouseButton1Down:connect(function()
  512. local gg = mouse.Target
  513. if gg ~= nil then
  514. for i,v in pairs(game.Players:GetPlayers()) do
  515. AnimationId = "27432691"
  516. local Anim = Instance.new("Animation")
  517. Anim.AnimationId = "rbxassetid://"..AnimationId
  518. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  519. k:Play()
  520. k:AdjustSpeed(1)
  521. end
  522. end
  523. end)
  524. end)
  525.  
  526. Chatlogs.Name = "Chat logs"
  527. Chatlogs.Parent = Body
  528. Chatlogs.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  529. Chatlogs.Position = UDim2.new(0.0332326293, 0, 0.349264741, 0)
  530. Chatlogs.Size = UDim2.new(0, 71, 0, 18)
  531. Chatlogs.Font = Enum.Font.Fantasy
  532. Chatlogs.Text = "Chat logs"
  533. Chatlogs.TextColor3 = Color3.new(1, 1, 1)
  534. Chatlogs.TextSize = 14
  535.  
  536. Chatlogs.MouseButton1Down:connect(function()
  537. loadstring(game:GetObjects("rbxassetid://1295331911")[1].Source)()
  538. end)
  539.  
  540.  
  541. Nolimbs.Name = "No limbs"
  542. Nolimbs.Parent = Body
  543. Nolimbs.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  544. Nolimbs.Position = UDim2.new(0.374622345, 0, 0.349264741, 0)
  545. Nolimbs.Size = UDim2.new(0, 71, 0, 18)
  546. Nolimbs.Font = Enum.Font.Fantasy
  547. Nolimbs.Text = "No limbs"
  548. Nolimbs.TextColor3 = Color3.new(1, 1, 1)
  549. Nolimbs.TextSize = 14
  550.  
  551. Nolimbs.MouseButton1Down:connect(function()
  552.  
  553. end)
  554.  
  555. Glitchmax.Name = "Glitch max"
  556. Glitchmax.Parent = Body
  557. Glitchmax.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  558. Glitchmax.Position = UDim2.new(0.682779431, 0, 0.349264741, 0)
  559. Glitchmax.Size = UDim2.new(0, 71, 0, 18)
  560. Glitchmax.Font = Enum.Font.Fantasy
  561. Glitchmax.Text = "GlitchMax"
  562. Glitchmax.TextColor3 = Color3.new(1, 1, 1)
  563. Glitchmax.TextSize = 14
  564.  
  565. Glitchmax.MouseButton1Down:connect(function()
  566. -- Objects
  567.  
  568. local GlitchMax = Instance.new("ScreenGui")
  569. local MainFrame = Instance.new("Frame")
  570. local TopFrame = Instance.new("Frame")
  571. local Title = Instance.new("TextLabel")
  572. local CloseGUI = Instance.new("TextButton")
  573. local Credit = Instance.new("TextLabel")
  574. local DetailTopFrame = Instance.new("Frame")
  575. local ButtonFrame = Instance.new("Frame")
  576. local UserBox = Instance.new("TextBox")
  577. local Flatten = Instance.new("TextButton")
  578. local Push = Instance.new("TextButton")
  579. local LockOn = Instance.new("TextButton")
  580. local Float = Instance.new("TextButton")
  581. local Stick = Instance.new("TextButton")
  582. local Experimental = Instance.new("TextButton")
  583. local SideFrame = Instance.new("Frame")
  584. local OpenGUI = Instance.new("TextButton")
  585. local SideCredit = Instance.new("TextLabel")
  586. local SideTitle = Instance.new("TextLabel")
  587.  
  588. -- Properties
  589.  
  590. GlitchMax.Name = "GlitchMax"
  591. GlitchMax.Parent = game.CoreGui
  592.  
  593. MainFrame.Name = "MainFrame"
  594. MainFrame.Parent = GlitchMax
  595. MainFrame.Active = true
  596. MainFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  597. MainFrame.BackgroundTransparency = 1
  598. MainFrame.Draggable = true
  599. MainFrame.Position = UDim2.new(0, 570, 0, 61)
  600. MainFrame.Size = UDim2.new(0, 376, 0, 285)
  601.  
  602. TopFrame.Name = "TopFrame"
  603. TopFrame.Parent = MainFrame
  604. TopFrame.BackgroundColor3 = Color3.new(0.466667, 0.47451, 1)
  605. TopFrame.Size = UDim2.new(0, 376, 0, 36)
  606.  
  607. Title.Name = "Title"
  608. Title.Parent = TopFrame
  609. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  610. Title.BackgroundTransparency = 1
  611. Title.Size = UDim2.new(0, 376, 0, 36)
  612. Title.Font = Enum.Font.Highway
  613. Title.FontSize = Enum.FontSize.Size14
  614. Title.Text = "GlitchMax"
  615. Title.TextColor3 = Color3.new(0.243137, 0.372549, 0.4)
  616. Title.TextScaled = true
  617. Title.TextSize = 14
  618. Title.TextStrokeColor3 = Color3.new(1, 1, 1)
  619. Title.TextStrokeTransparency = 0
  620. Title.TextWrapped = true
  621.  
  622. CloseGUI.Name = "CloseGUI"
  623. CloseGUI.Parent = TopFrame
  624. CloseGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  625. CloseGUI.BackgroundTransparency = 1
  626. CloseGUI.Position = UDim2.new(0, 327, 0, 0)
  627. CloseGUI.Size = UDim2.new(0, 49, 0, 36)
  628. CloseGUI.Font = Enum.Font.SourceSans
  629. CloseGUI.FontSize = Enum.FontSize.Size60
  630. CloseGUI.Text = "X"
  631. CloseGUI.TextSize = 50
  632.  
  633. Credit.Name = "Credit"
  634. Credit.Parent = TopFrame
  635. Credit.BackgroundColor3 = Color3.new(1, 1, 1)
  636. Credit.BackgroundTransparency = 1
  637. Credit.Position = UDim2.new(0, 16, 0, 0)
  638. Credit.Size = UDim2.new(0, 96, 0, 36)
  639. Credit.Font = Enum.Font.Highway
  640. Credit.FontSize = Enum.FontSize.Size14
  641. Credit.Text = "illremember"
  642. Credit.TextColor3 = Color3.new(0.431373, 0.662745, 0.709804)
  643. Credit.TextScaled = true
  644. Credit.TextSize = 14
  645. Credit.TextStrokeColor3 = Color3.new(1, 1, 1)
  646. Credit.TextStrokeTransparency = 0
  647. Credit.TextWrapped = true
  648.  
  649. DetailTopFrame.Name = "DetailTopFrame"
  650. DetailTopFrame.Parent = MainFrame
  651. DetailTopFrame.BackgroundColor3 = Color3.new(0.541176, 0.678431, 1)
  652. DetailTopFrame.Position = UDim2.new(0, 0, 0, 37)
  653. DetailTopFrame.Size = UDim2.new(0, 376, 0, 11)
  654.  
  655. ButtonFrame.Name = "ButtonFrame"
  656. ButtonFrame.Parent = MainFrame
  657. ButtonFrame.BackgroundColor3 = Color3.new(0.945098, 0.945098, 0.945098)
  658. ButtonFrame.Position = UDim2.new(0, 0, 0, 49)
  659. ButtonFrame.Size = UDim2.new(0, 376, 0, 236)
  660.  
  661. UserBox.Name = "UserBox"
  662. UserBox.Parent = ButtonFrame
  663. UserBox.BackgroundColor3 = Color3.new(0.898039, 0.898039, 0.898039)
  664. UserBox.BorderColor3 = Color3.new(0.360784, 0.384314, 0.392157)
  665. UserBox.BorderSizePixel = 5
  666. UserBox.Position = UDim2.new(0, 33, 0, 15)
  667. UserBox.Size = UDim2.new(0, 310, 0, 31)
  668. UserBox.Font = Enum.Font.SourceSans
  669. UserBox.FontSize = Enum.FontSize.Size14
  670. UserBox.Text = ""
  671. UserBox.TextScaled = true
  672. UserBox.TextSize = 14
  673. UserBox.TextWrapped = true
  674.  
  675. Flatten.Name = "Flatten"
  676. Flatten.Parent = ButtonFrame
  677. Flatten.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  678. Flatten.BorderColor3 = Color3.new(0.368627, 0.576471, 0.72549)
  679. Flatten.BorderSizePixel = 2
  680. Flatten.Position = UDim2.new(0, 22, 0, 66)
  681. Flatten.Size = UDim2.new(0, 135, 0, 36)
  682. Flatten.Font = Enum.Font.Highway
  683. Flatten.FontSize = Enum.FontSize.Size32
  684. Flatten.Text = "Flatten"
  685. Flatten.TextColor3 = Color3.new(0.827451, 0.827451, 0.827451)
  686. Flatten.TextScaled = true
  687. Flatten.TextSize = 30
  688. Flatten.TextWrapped = true
  689.  
  690. Push.Name = "Push"
  691. Push.Parent = ButtonFrame
  692. Push.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  693. Push.BorderColor3 = Color3.new(0.368627, 0.576471, 0.72549)
  694. Push.BorderSizePixel = 2
  695. Push.Position = UDim2.new(0, 22, 0, 126)
  696. Push.Size = UDim2.new(0, 135, 0, 36)
  697. Push.Font = Enum.Font.Highway
  698. Push.FontSize = Enum.FontSize.Size32
  699. Push.Text = "Push"
  700. Push.TextColor3 = Color3.new(0.827451, 0.827451, 0.827451)
  701. Push.TextScaled = true
  702. Push.TextSize = 30
  703. Push.TextWrapped = true
  704.  
  705. LockOn.Name = "LockOn"
  706. LockOn.Parent = ButtonFrame
  707. LockOn.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  708. LockOn.BorderColor3 = Color3.new(0.368627, 0.576471, 0.72549)
  709. LockOn.BorderSizePixel = 2
  710. LockOn.Position = UDim2.new(0, 22, 0, 186)
  711. LockOn.Size = UDim2.new(0, 135, 0, 36)
  712. LockOn.Font = Enum.Font.Highway
  713. LockOn.FontSize = Enum.FontSize.Size32
  714. LockOn.Text = "LockOn"
  715. LockOn.TextColor3 = Color3.new(0.827451, 0.827451, 0.827451)
  716. LockOn.TextSize = 30
  717. LockOn.TextWrapped = true
  718.  
  719. Float.Name = "Float"
  720. Float.Parent = ButtonFrame
  721. Float.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  722. Float.BorderColor3 = Color3.new(0.368627, 0.576471, 0.72549)
  723. Float.BorderSizePixel = 2
  724. Float.Position = UDim2.new(0, 218, 0, 66)
  725. Float.Size = UDim2.new(0, 135, 0, 36)
  726. Float.Font = Enum.Font.Highway
  727. Float.FontSize = Enum.FontSize.Size32
  728. Float.Text = "Float"
  729. Float.TextColor3 = Color3.new(0.827451, 0.827451, 0.827451)
  730. Float.TextScaled = true
  731. Float.TextSize = 30
  732. Float.TextWrapped = true
  733.  
  734. Stick.Name = "Stick"
  735. Stick.Parent = ButtonFrame
  736. Stick.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  737. Stick.BorderColor3 = Color3.new(0.368627, 0.576471, 0.72549)
  738. Stick.BorderSizePixel = 2
  739. Stick.Position = UDim2.new(0, 218, 0, 126)
  740. Stick.Size = UDim2.new(0, 135, 0, 36)
  741. Stick.Font = Enum.Font.Highway
  742. Stick.FontSize = Enum.FontSize.Size32
  743. Stick.Text = "Stick"
  744. Stick.TextColor3 = Color3.new(0.827451, 0.827451, 0.827451)
  745. Stick.TextSize = 30
  746. Stick.TextWrapped = true
  747.  
  748. Experimental.Name = "Experimental"
  749. Experimental.Parent = ButtonFrame
  750. Experimental.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  751. Experimental.BorderColor3 = Color3.new(0.368627, 0.576471, 0.72549)
  752. Experimental.BorderSizePixel = 2
  753. Experimental.Position = UDim2.new(0, 218, 0, 186)
  754. Experimental.Size = UDim2.new(0, 135, 0, 36)
  755. Experimental.Font = Enum.Font.Highway
  756. Experimental.FontSize = Enum.FontSize.Size28
  757. Experimental.Text = "Experimental"
  758. Experimental.TextColor3 = Color3.new(0.827451, 0.827451, 0.827451)
  759. Experimental.TextSize = 25
  760. Experimental.TextWrapped = true
  761.  
  762. SideFrame.Name = "SideFrame"
  763. SideFrame.Parent = GlitchMax
  764. SideFrame.Active = true
  765. SideFrame.BackgroundColor3 = Color3.new(0.466667, 0.47451, 1)
  766. SideFrame.Draggable = true
  767. SideFrame.Position = UDim2.new(0, 570, 0, 61)
  768. SideFrame.Size = UDim2.new(0, 376, 0, 36)
  769. SideFrame.Visible = false
  770.  
  771. OpenGUI.Name = "OpenGUI"
  772. OpenGUI.Parent = SideFrame
  773. OpenGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  774. OpenGUI.BackgroundTransparency = 1
  775. OpenGUI.Position = UDim2.new(0, 327, 0, 0)
  776. OpenGUI.Size = UDim2.new(0, 49, 0, 36)
  777. OpenGUI.Font = Enum.Font.SourceSans
  778. OpenGUI.FontSize = Enum.FontSize.Size60
  779. OpenGUI.Text = "X"
  780. OpenGUI.TextSize = 50
  781.  
  782. SideCredit.Name = "SideCredit"
  783. SideCredit.Parent = SideFrame
  784. SideCredit.BackgroundColor3 = Color3.new(1, 1, 1)
  785. SideCredit.BackgroundTransparency = 1
  786. SideCredit.Position = UDim2.new(0, 16, 0, 0)
  787. SideCredit.Size = UDim2.new(0, 96, 0, 36)
  788. SideCredit.Font = Enum.Font.Highway
  789. SideCredit.FontSize = Enum.FontSize.Size14
  790. SideCredit.Text = "illremember"
  791. SideCredit.TextColor3 = Color3.new(0.431373, 0.662745, 0.709804)
  792. SideCredit.TextScaled = true
  793. SideCredit.TextSize = 14
  794. SideCredit.TextStrokeColor3 = Color3.new(1, 1, 1)
  795. SideCredit.TextStrokeTransparency = 0
  796. SideCredit.TextWrapped = true
  797.  
  798. SideTitle.Name = "SideTitle"
  799. SideTitle.Parent = SideFrame
  800. SideTitle.BackgroundColor3 = Color3.new(1, 1, 1)
  801. SideTitle.BackgroundTransparency = 1
  802. SideTitle.Size = UDim2.new(0, 376, 0, 36)
  803. SideTitle.Font = Enum.Font.Highway
  804. SideTitle.FontSize = Enum.FontSize.Size14
  805. SideTitle.Text = "GlitchMax"
  806. SideTitle.TextColor3 = Color3.new(0.243137, 0.372549, 0.4)
  807. SideTitle.TextScaled = true
  808. SideTitle.TextSize = 14
  809. SideTitle.TextStrokeColor3 = Color3.new(1, 1, 1)
  810. SideTitle.TextStrokeTransparency = 0
  811. SideTitle.TextWrapped = true
  812.  
  813. -- Buttons
  814.  
  815. col = Color3.new(0.254902, 0.254902, 0.254902)
  816. loc = Color3.new(0.40, 0.40, 0.40)
  817.  
  818. CloseGUI.MouseButton1Click:connect(function()
  819. MainFrame.Visible = false
  820. SideFrame.Visible = true
  821. SideFrame.Position = MainFrame.Position
  822. end)
  823.  
  824. OpenGUI.MouseButton1Click:connect(function()
  825. MainFrame.Visible = true
  826. SideFrame.Visible = false
  827. MainFrame.Position = SideFrame.Position
  828. end)
  829.  
  830. function shortnames(username)
  831. local nameshort = {}
  832. for i,v in pairs(game.Players:GetPlayers()) do
  833. if v.Name:lower():sub(1, #username) == username:lower() then
  834. table.insert(nameshort,v)
  835. end
  836. end
  837. return nameshort
  838. end
  839.  
  840. local Anim = Instance.new("Animation")
  841. Anim.AnimationId = "rbxassetid://282574440"
  842. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  843. flattening = false
  844. Flatten.MouseButton1Click:connect(function()
  845. flattening = not flattening
  846. if flattening then
  847. Flatten.BackgroundColor3 = loc
  848. local y = Instance.new("RocketPropulsion")
  849. y.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  850. y.CartoonFactor = 1
  851. y.MaxThrust = 50000
  852. y.MaxSpeed = 1000
  853. y.ThrustP = 50000
  854. y.Name = "Flatten"
  855. for i,v in pairs(shortnames(UserBox.Text))do
  856. y.Target = game.Players[v.name].Character["Left Leg"]
  857. y:Fire()
  858. track:Play(.1, 1, 1)
  859. game:GetService('RunService').Stepped:connect(function()
  860. if flattening then
  861. game.Players.LocalPlayer.Character.Head.CanCollide = false
  862. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  863. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  864. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  865. end
  866. end)
  867. while wait(0.3) do
  868. if flattening then
  869. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame + Vector3.new(0,2,0)
  870. end
  871. end
  872. end
  873. else
  874. game.Players.LocalPlayer.Character.HumanoidRootPart.Flatten:Destroy()
  875. track:Stop()
  876. Flatten.BackgroundColor3 = col
  877. end
  878. end)
  879.  
  880. floating = false
  881. Float.MouseButton1Click:connect(function()
  882. floating = not floating
  883. if floating then
  884. Float.BackgroundColor3 = loc
  885. local y = Instance.new("RocketPropulsion")
  886. y.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  887. y.CartoonFactor = 1
  888. y.MaxThrust = 50000
  889. y.MaxSpeed = 1000
  890. y.ThrustP = 50000
  891. y.Name = "Float"
  892. for i,v in pairs(shortnames(UserBox.Text))do
  893. y.Target = game.Players[v.Name].Character.Head
  894. y:Fire()
  895. game:GetService('RunService').Stepped:connect(function()
  896. if floating then
  897. game.Players.LocalPlayer.Character.Head.CanCollide = false
  898. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  899. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  900. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  901. end
  902. end)
  903. while wait(0.3) do
  904. if floating then
  905. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character["Left Leg"].CFrame
  906. end
  907. end
  908. end
  909. else
  910. game.Players.LocalPlayer.Character.HumanoidRootPart.Float:Destroy()
  911. Float.BackgroundColor3 = col
  912. end
  913. end)
  914.  
  915. LockOnACTIVE = false
  916. LockOn.MouseButton1Click:connect(function()
  917. LockOnACTIVE = not LockOnACTIVE
  918. for i,v in pairs(shortnames(UserBox.Text))do
  919. while wait() do
  920. if LockOnACTIVE then
  921. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  922. LockOn.BackgroundColor3 = loc
  923. else
  924. LockOn.BackgroundColor3 = col
  925. end
  926. end
  927. end
  928. end)
  929.  
  930. pushing = false
  931. Push.MouseButton1Click:connect(function()
  932. pushing = not pushing
  933. if pushing then
  934. Push.BackgroundColor3 = loc
  935. local b = Instance.new("RocketPropulsion")
  936. b.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  937. b.TurnP = 2500
  938. b.MaxThrust = 50000
  939. b.MaxSpeed = 1000
  940. b.ThrustP = 50000
  941. b.CartoonFactor = 1
  942. b.Name = "Push"
  943. for i,v in pairs(shortnames(UserBox.Text))do
  944. b.Target = game.Players[v.Name].Character.HumanoidRootPart
  945. b:Fire()
  946. game:GetService('RunService').Stepped:connect(function()
  947. if pushing then
  948. game.Players.LocalPlayer.Character.Head.CanCollide = false
  949. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  950. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  951. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  952. end
  953. end)
  954. b:Fire()
  955. end
  956. else
  957. game.Players.LocalPlayer.Character.HumanoidRootPart.Push:Destroy()
  958. Push.BackgroundColor3 = col
  959. end
  960. end)
  961.  
  962. local Anim = Instance.new("Animation")
  963. Anim.AnimationId = "rbxassetid://215384594"
  964. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  965. experi = false
  966. Experimental.MouseButton1Click:connect(function()
  967. experi = not experi
  968. if experi then
  969. Experimental.BackgroundColor3 = loc
  970. local h = Instance.new("RocketPropulsion")
  971. h.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  972. h.Name = "Experimental"
  973. for i,v in pairs(shortnames(UserBox.Text))do
  974. h.Target = game.Players[v.Name].Character.HumanoidRootPart
  975. h:Fire()
  976. track:Play(.1,1,1)
  977. game:GetService('RunService').Stepped:connect(function()
  978. if experi then
  979. game.Players.LocalPlayer.Character.Head.CanCollide = false
  980. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  981. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  982. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  983. end
  984. end)
  985. end
  986. else
  987. game.Players.LocalPlayer.Character.HumanoidRootPart.Experimental:Destroy()
  988. track:Stop()
  989. Stick.BackgroundColor3 = col
  990. end
  991. end)
  992.  
  993. stuck = false
  994. Stick.MouseButton1Click:connect(function()
  995. stuck = not stuck
  996. if stuck then
  997. Stick.BackgroundColor3 = loc
  998. local h = Instance.new("RocketPropulsion")
  999. h.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  1000. h.MaxSpeed = 1000
  1001. h.MaxThrust = 10000
  1002. h.Name = "Stick"
  1003. for i,v in pairs(shortnames(UserBox.Text))do
  1004. h.Target = game.Players[v.Name].Character.HumanoidRootPart
  1005. h:Fire()
  1006. game:GetService('RunService').Stepped:connect(function()
  1007. if stuck then
  1008. game.Players.LocalPlayer.Character.Head.CanCollide = false
  1009. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  1010. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  1011. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  1012. end
  1013. end)
  1014. end
  1015. else
  1016. game.Players.LocalPlayer.Character.HumanoidRootPart.Stick:Destroy()
  1017. Stick.BackgroundColor3 = col
  1018. end
  1019. end)
  1020. end)
  1021.  
  1022.  
  1023. FEFloatinghead.Name = "FE Floating head"
  1024. FEFloatinghead.Parent = MainBody
  1025. FEFloatinghead.BackgroundColor3 = Color3.new(0, 0.615686, 1)
  1026. FEFloatinghead.Position = UDim2.new(0.347598583, 0, 0.653591216, 0)
  1027. FEFloatinghead.Size = UDim2.new(0, 106, 0, 27)
  1028. FEFloatinghead.Font = Enum.Font.SciFi
  1029. FEFloatinghead.Text = "FE FloatingHead"
  1030. FEFloatinghead.TextColor3 = Color3.new(1, 1, 1)
  1031. FEFloatinghead.TextSize = 14
  1032.  
  1033. FEFloatinghead.MouseButton1Down:connect(function()
  1034. local speed = 50 -- This is the fly speed. Change it to whatever you like. The variable can be changed while running
  1035. local c
  1036. local h
  1037. local bv
  1038. local bav
  1039. local cam
  1040. local flying
  1041. local p = game:GetService'Players'.LocalPlayer
  1042. local buttons = {W = false, S = false, A = false, D = false, Moving = false}
  1043. local startFly = function () -- Call this function to begin flying
  1044. if not p.Character or not p.Character.Head or flying then return end
  1045. c = p.Character
  1046. h = c.Humanoid
  1047. h.PlatformStand = true
  1048. cam = workspace:WaitForChild('Camera')
  1049. bv = Instance.new("BodyVelocity")
  1050. bav = Instance.new("BodyAngularVelocity")
  1051. bv.Velocity, bv.MaxForce, bv.P = Vector3.new(0, 0, 0), Vector3.new(10000, 10000, 10000), 1000
  1052. bav.AngularVelocity, bav.MaxTorque, bav.P = Vector3.new(0, 0, 0), Vector3.new(10000, 10000, 10000), 1000
  1053. bv.Parent = c.Head
  1054. bav.Parent = c.Head
  1055. flying = true
  1056. h.Died:connect(function() flying = false end)
  1057. end
  1058. local endFly = function () -- Call this function to stop flying
  1059. if not p.Character or not flying then return end
  1060. h.PlatformStand = false
  1061. bv:Destroy()
  1062. bav:Destroy()
  1063. flying = false
  1064. end
  1065. game:GetService("UserInputService").InputBegan:connect(function (input, GPE)
  1066. if GPE then return end
  1067. for i, e in pairs(buttons) do
  1068. if i ~= "Moving" and input.KeyCode == Enum.KeyCode[i] then
  1069. buttons[i] = true
  1070. buttons.Moving = true
  1071. end
  1072. end
  1073. end)
  1074. game:GetService("UserInputService").InputEnded:connect(function (input, GPE)
  1075. if GPE then return end
  1076. local a = false
  1077. for i, e in pairs(buttons) do
  1078. if i ~= "Moving" then
  1079. if input.KeyCode == Enum.KeyCode[i] then
  1080. buttons[i] = false
  1081. end
  1082. if buttons[i] then a = true end
  1083. end
  1084. end
  1085. buttons.Moving = a
  1086. end)
  1087. local setVec = function (vec)
  1088. return vec * (speed / vec.Magnitude)
  1089. end
  1090. game:GetService("RunService").Heartbeat:connect(function (step) -- The actual fly function, called every frame
  1091. if flying and c and c.PrimaryPart then
  1092. local p = c.PrimaryPart.Position
  1093. local cf = cam.CFrame
  1094. local ax, ay, az = cf:toEulerAnglesXYZ()
  1095. c:SetPrimaryPartCFrame(CFrame.new(p.x, p.y, p.z) * CFrame.Angles(ax, ay, az))
  1096. if buttons.Moving then
  1097. local t = Vector3.new()
  1098. if buttons.W then t = t + (setVec(cf.lookVector)) end
  1099. if buttons.S then t = t - (setVec(cf.lookVector)) end
  1100. if buttons.A then t = t - (setVec(cf.rightVector)) end
  1101. if buttons.D then t = t + (setVec(cf.rightVector)) end
  1102. c:TranslateBy(t * step)
  1103. end
  1104. end
  1105. end)
  1106. FEFloatinghead.MouseButton1Down:connect(function()
  1107. local lol = game:GetService'Players'.LocalPlayer.Character
  1108. pcall(function()
  1109. for i,v in pairs(lol:GetChildren()) do
  1110. if v.Name ~= 'Head' and v.Name ~= 'Torso' and v.Name ~= 'HumanoidRootPart' then
  1111. v:Destroy()
  1112. end
  1113. end
  1114. local ok = lol:FindFirstChild'Torso'
  1115. if ok then ok = ok:FindFirstChild'roblox' if ok then ok:Destroy() end end
  1116. Instance.new('Humanoid', lol)
  1117. if lol.HumanoidRootPart:FindFirstChild'Rank' then lol.HumanoidRootPart:FindFirstChild'Rank':Destroy() end
  1118. local nouxd = lol:FindFirstChild'Torso'
  1119. wait'1'
  1120. lol.Head.Position = lol.Head.Position + Vector3.new(1,1,1)
  1121. if nouxd then nouxd.Transparency = 1 end
  1122. wait'.3'
  1123. startFly()
  1124. end)
  1125. end)
  1126. end)
  1127.  
  1128. FEbtools.Name = "FE btools"
  1129. FEbtools.Parent = Body
  1130. FEbtools.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  1131. FEbtools.Position = UDim2.new(0.0332326293, 0, 0.466911793, 0)
  1132. FEbtools.Size = UDim2.new(0, 71, 0, 18)
  1133. FEbtools.Font = Enum.Font.Fantasy
  1134. FEbtools.Text = "FE Btools"
  1135. FEbtools.TextColor3 = Color3.new(1, 1, 1)
  1136. FEbtools.TextSize = 14
  1137.  
  1138. FEbtools.MouseButton1Down:connect(function()
  1139. loadstring(game:GetObjects("rbxassetid://536904585")[1].Source)()
  1140. end)
  1141.  
  1142. Flyinghead.Name = "Flying head"
  1143. Flyinghead.Parent = Body
  1144. Flyinghead.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  1145. Flyinghead.Position = UDim2.new(0.374622345, 0, 0.466911793, 0)
  1146. Flyinghead.Size = UDim2.new(0, 71, 0, 18)
  1147. Flyinghead.Font = Enum.Font.Fantasy
  1148. Flyinghead.Text = "Flying head"
  1149. Flyinghead.TextColor3 = Color3.new(1, 1, 1)
  1150. Flyinghead.TextSize = 14
  1151.  
  1152. Flyinghead.MouseButton1Down:connect(function()
  1153. local speed = 50 -- This is the fly speed. Change it to whatever you like. The variable can be changed while running
  1154. local c
  1155. local h
  1156. local bv
  1157. local bav
  1158. local cam
  1159. local flying
  1160. local p = game:GetService'Players'.LocalPlayer
  1161. local buttons = {W = false, S = false, A = false, D = false, Moving = false}
  1162. local startFly = function () -- Call this function to begin flying
  1163. if not p.Character or not p.Character.Head or flying then return end
  1164. c = p.Character
  1165. h = c.Humanoid
  1166. h.PlatformStand = true
  1167. cam = workspace:WaitForChild('Camera')
  1168. bv = Instance.new("BodyVelocity")
  1169. bav = Instance.new("BodyAngularVelocity")
  1170. bv.Velocity, bv.MaxForce, bv.P = Vector3.new(0, 0, 0), Vector3.new(10000, 10000, 10000), 1000
  1171. bav.AngularVelocity, bav.MaxTorque, bav.P = Vector3.new(0, 0, 0), Vector3.new(10000, 10000, 10000), 1000
  1172. bv.Parent = c.Head
  1173. bav.Parent = c.Head
  1174. flying = true
  1175. h.Died:connect(function() flying = false end)
  1176. end
  1177. local endFly = function () -- Call this function to stop flying
  1178. if not p.Character or not flying then return end
  1179. h.PlatformStand = false
  1180. bv:Destroy()
  1181. bav:Destroy()
  1182. flying = false
  1183. end
  1184. game:GetService("UserInputService").InputBegan:connect(function (input, GPE)
  1185. if GPE then return end
  1186. for i, e in pairs(buttons) do
  1187. if i ~= "Moving" and input.KeyCode == Enum.KeyCode[i] then
  1188. buttons[i] = true
  1189. buttons.Moving = true
  1190. end
  1191. end
  1192. end)
  1193. game:GetService("UserInputService").InputEnded:connect(function (input, GPE)
  1194. if GPE then return end
  1195. local a = false
  1196. for i, e in pairs(buttons) do
  1197. if i ~= "Moving" then
  1198. if input.KeyCode == Enum.KeyCode[i] then
  1199. buttons[i] = false
  1200. end
  1201. if buttons[i] then a = true end
  1202. end
  1203. end
  1204. buttons.Moving = a
  1205. end)
  1206. local setVec = function (vec)
  1207. return vec * (speed / vec.Magnitude)
  1208. end
  1209. game:GetService("RunService").Heartbeat:connect(function (step) -- The actual fly function, called every frame
  1210. if flying and c and c.PrimaryPart then
  1211. local p = c.PrimaryPart.Position
  1212. local cf = cam.CFrame
  1213. local ax, ay, az = cf:toEulerAnglesXYZ()
  1214. c:SetPrimaryPartCFrame(CFrame.new(p.x, p.y, p.z) * CFrame.Angles(ax, ay, az))
  1215. if buttons.Moving then
  1216. local t = Vector3.new()
  1217. if buttons.W then t = t + (setVec(cf.lookVector)) end
  1218. if buttons.S then t = t - (setVec(cf.lookVector)) end
  1219. if buttons.A then t = t - (setVec(cf.rightVector)) end
  1220. if buttons.D then t = t + (setVec(cf.rightVector)) end
  1221. c:TranslateBy(t * step)
  1222. end
  1223. end
  1224. end)
  1225. FEFloatinghead.MouseButton1Down:connect(function()
  1226. local lol = game:GetService'Players'.LocalPlayer.Character
  1227. pcall(function()
  1228. for i,v in pairs(lol:GetChildren()) do
  1229. if v.Name ~= 'Head' and v.Name ~= 'Torso' and v.Name ~= 'HumanoidRootPart' then
  1230. v:Destroy()
  1231. end
  1232. end
  1233. local ok = lol:FindFirstChild'Torso'
  1234. if ok then ok = ok:FindFirstChild'roblox' if ok then ok:Destroy() end end
  1235. Instance.new('Humanoid', lol)
  1236. if lol.HumanoidRootPart:FindFirstChild'Rank' then lol.HumanoidRootPart:FindFirstChild'Rank':Destroy() end
  1237. local nouxd = lol:FindFirstChild'Torso'
  1238. wait'1'
  1239. lol.Head.Position = lol.Head.Position + Vector3.new(1,1,1)
  1240. if nouxd then nouxd.Transparency = 1 end
  1241. wait'.3'
  1242. startFly()
  1243. end)
  1244. end)
  1245. end)
  1246.  
  1247. Drophats.Name = "Drophats"
  1248. Drophats.Parent = Body
  1249. Drophats.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  1250. Drophats.Position = UDim2.new(0.682779431, 0, 0.466911793, 0)
  1251. Drophats.Size = UDim2.new(0, 71, 0, 18)
  1252. Drophats.Font = Enum.Font.Fantasy
  1253. Drophats.Text = "Drop hats"
  1254. Drophats.TextColor3 = Color3.new(1, 1, 1)
  1255. Drophats.TextSize = 14
  1256.  
  1257. Drophats.MouseButton1Down:connect(function()
  1258.  
  1259. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
  1260. if (key=="e") then
  1261. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  1262. if (v:IsA("Accessory")) then
  1263. v.Parent = workspace
  1264. end
  1265. end
  1266. end
  1267. end)
  1268. end)
  1269.  
  1270. TextLabel_3.Parent = Body
  1271. TextLabel_3.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  1272. TextLabel_3.Position = UDim2.new(0.173716024, 0, 0.577205896, 0)
  1273. TextLabel_3.Size = UDim2.new(0, 204, 0, 19)
  1274. TextLabel_3.Font = Enum.Font.SourceSans
  1275. TextLabel_3.Text = "Specific games"
  1276. TextLabel_3.TextColor3 = Color3.new(1, 1, 1)
  1277. TextLabel_3.TextSize = 14
  1278.  
  1279. WaterPark.Name = "Water Park"
  1280. WaterPark.Parent = Body
  1281. WaterPark.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  1282. WaterPark.Position = UDim2.new(0, 0, 0.702205896, 0)
  1283. WaterPark.Size = UDim2.new(0, 150, 0, 18)
  1284. WaterPark.Font = Enum.Font.Fantasy
  1285. WaterPark.Text = "WaterPark boom boom"
  1286. WaterPark.TextColor3 = Color3.new(1, 1, 1)
  1287. WaterPark.TextSize = 14
  1288.  
  1289. WaterPark.MouseButton1Down:connect(function()
  1290. game.ReplicatedStorage.ClothingService:FireServer("Hat", 001527622 )
  1291. end)
  1292.  
  1293. Citylifehammer.Name = "City life hammer"
  1294. Citylifehammer.Parent = Body
  1295. Citylifehammer.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  1296. Citylifehammer.Position = UDim2.new(0.546827793, 0, 0.702205896, 0)
  1297. Citylifehammer.Size = UDim2.new(0, 150, 0, 18)
  1298. Citylifehammer.Font = Enum.Font.Fantasy
  1299. Citylifehammer.Text = "City life hammer"
  1300. Citylifehammer.TextColor3 = Color3.new(1, 1, 1)
  1301. Citylifehammer.TextSize = 14
  1302.  
  1303. Citylifehammer.MouseButton1Down:connect(function()
  1304. plr = "LocalPlayer" --player to give tool to
  1305.  
  1306.  
  1307. plr = game:GetService'Players'[plr]
  1308. game:GetService'ReplicatedStorage'.ITEM_PURCHASE:InvokeServer('meme', '7', '1055299')
  1309. lp = game:GetService'Players'.LocalPlayer
  1310. hat = lp.Character:WaitForChild'meme'
  1311. hammer = hat.GravityHammer
  1312. hammer.Parent = lp:FindFirstChildOfClass'Backpack'
  1313. --DIRTY HACKS TO PARENT HAT/TOOLS WITH REPLICATION ON FE--
  1314. hat.Parent = nil
  1315. hammer.Parent = lp.Character
  1316. game:GetService'RunService'.Stepped:wait()
  1317. hammer.Parent = plr.Character
  1318. for i = 1,3 do
  1319. local lol = lp:FindFirstChildOfClass'Backpack':FindFirstChildOfClass'HopperBin'
  1320. if lol:FindFirstChild'LocalScript' then destroy() end
  1321. end
  1322. end)
  1323.  
  1324. Citylifebombvest.Name = "City life bomb vest"
  1325. Citylifebombvest.Parent = Body
  1326. Citylifebombvest.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  1327. Citylifebombvest.Position = UDim2.new(0.546827793, 0, 0.76838237, 0)
  1328. Citylifebombvest.Size = UDim2.new(0, 150, 0, 18)
  1329. Citylifebombvest.Font = Enum.Font.Fantasy
  1330. Citylifebombvest.Text = "City life bomb vest"
  1331. Citylifebombvest.TextColor3 = Color3.new(1, 1, 1)
  1332. Citylifebombvest.TextSize = 14
  1333.  
  1334. Citylifebombvest.MouseButton1Down:connect(function()
  1335. local Me = game:GetService("Players").LocalPlayer
  1336. local Char = Me.Character
  1337. local Torso = Char.Torso
  1338. local TickWait = 1
  1339. local Color = "Medium stone gray"
  1340. local Dead = false
  1341.  
  1342. local Tool = Instance.new("HopperBin", Me.Backpack)
  1343. Tool.Name = "Bomb Vest"
  1344.  
  1345. local Position = Vector3.new(0,100,0)
  1346. function NewPart(Parent)
  1347. local Part = Instance.new("Part", Parent)
  1348. Part.CanCollide = false
  1349. Part.FormFactor = "Custom"
  1350. Part.Position = Position
  1351. Part.TopSurface = "Smooth"
  1352. Part.BottomSurface = "Smooth"
  1353. Part.BrickColor = BrickColor.new(Color)
  1354. Position = Position + Vector3.new(0,Part.Size.Y + 10,0)
  1355. return Part
  1356. end
  1357.  
  1358. local Model = Char:FindFirstChild("Bomb")
  1359. if Model then Model:Destroy() end
  1360.  
  1361. Model = Instance.new("Model", Char)
  1362. Model.Name = "Bomb"
  1363.  
  1364. local Belt = NewPart(Model)
  1365. Belt.Size = Vector3.new(2.2,0.5,1.2)
  1366. local Weld = Instance.new("Weld", Belt)
  1367. Weld.Part0 = Belt
  1368. Weld.Part1 = Torso
  1369. Weld.C0 = CFrame.new(0,1.1,0)
  1370. local Light = Instance.new("PointLight", Belt)
  1371. Light.Range = 15
  1372. Light.Brightness = 5
  1373. Light.Color = Color3.new(1,0,0)
  1374. local Beep = Instance.new("Sound", Belt)
  1375. Beep.SoundId = "http://www.roblox.com/asset/?id=188588790"
  1376. local ExplodeSound = Instance.new("Sound", Belt)
  1377. ExplodeSound.SoundId = "http://www.roblox.com/asset/?id="..(tonumber((math.ceil(1776.66^2)+17).."."..string.rep("36",3))*77)+0.00003 --144507765
  1378. ExplodeSound.Pitch = 2.8
  1379. ExplodeSound.Volume = 100
  1380.  
  1381. local Back = NewPart(Model)
  1382. Back.Size = Vector3.new(1.5,1.5,0.5)
  1383. local Weld = Instance.new("Weld", Back)
  1384. Weld.Part0 = Back
  1385. Weld.Part1 = Torso
  1386. Weld.C0 = CFrame.new(0,0.1,-0.75)
  1387.  
  1388. local StrapLeft = NewPart(Model)
  1389. StrapLeft.Size = Vector3.new(0.2,0.5,1.6)
  1390. local Weld = Instance.new("Weld", StrapLeft)
  1391. Weld.Part0 = StrapLeft
  1392. Weld.Part1 = Torso
  1393. Weld.C0 = CFrame.new(0.65,-0.9,-0.2)
  1394.  
  1395. local BuckleLeft = NewPart(Model)
  1396. BuckleLeft.Size = Vector3.new(0.2,1.5,0.2)
  1397. local Weld = Instance.new("Weld", BuckleLeft)
  1398. Weld.Part0 = BuckleLeft
  1399. Weld.Part1 = Torso
  1400. Weld.C0 = CFrame.new(0.65,0.1,0.5)
  1401.  
  1402. local StrapRight = NewPart(Model)
  1403. StrapRight.Size = Vector3.new(0.2,0.5,1.6)
  1404. local Weld = Instance.new("Weld", StrapRight)
  1405. Weld.Part0 = StrapRight
  1406. Weld.Part1 = Torso
  1407. Weld.C0 = CFrame.new(-0.65,-0.9,-0.2)
  1408.  
  1409. local BuckleRight = NewPart(Model)
  1410. BuckleRight.Size = Vector3.new(0.2,1.5,0.2)
  1411. local Weld = Instance.new("Weld", BuckleRight)
  1412. Weld.Part0 = BuckleRight
  1413. Weld.Part1 = Torso
  1414. Weld.C0 = CFrame.new(-0.65,0.1,0.5)
  1415.  
  1416. Tool.Selected:connect(function(Mouse)
  1417. TickWait = 0.3
  1418. Mouse.Icon = "http://www.roblox.com/asset/?id=9109985"
  1419.  
  1420. Mouse.Button1Down:connect(function()
  1421. if Dead == false then
  1422. Dead = true
  1423. ExplodeSound:Play()
  1424. wait(1.4)
  1425. local Explosion = Instance.new("Explosion", Workspace)
  1426. Explosion.Position = Belt.Position
  1427. Explosion.BlastPressure = 100000
  1428. Explosion.DestroyJointRadiusPercent = 0.7
  1429. Explosion.ExplosionType = "CratersAndDebris"
  1430. Explosion.BlastRadius = 50
  1431. Explosion.Hit:connect(function(Part, Distance)
  1432. Part.Anchored = false
  1433. if Distance <= 10 then
  1434. Part:BreakJoints()
  1435. end
  1436. end)
  1437. end
  1438. end)
  1439. end)
  1440.  
  1441. Tool.Deselected:connect(function()
  1442. TickWait = 1
  1443. end)
  1444.  
  1445. coroutine.wrap(function()
  1446. repeat
  1447. wait(TickWait)
  1448. Light.Enabled = not Light.Enabled
  1449. Beep:Play()
  1450. until Dead == true
  1451. end)()
  1452. end)
  1453.  
  1454. Soon.Name = "Soon!"
  1455. Soon.Parent = Body
  1456. Soon.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  1457. Soon.Position = UDim2.new(0, 0, 0.76838237, 0)
  1458. Soon.Size = UDim2.new(0, 150, 0, 18)
  1459. Soon.Font = Enum.Font.Fantasy
  1460. Soon.Text = "Soon!"
  1461. Soon.TextColor3 = Color3.new(1, 1, 1)
  1462. Soon.TextSize = 14
  1463.  
  1464. Soon_2.Name = "Soon!"
  1465. Soon_2.Parent = Body
  1466. Soon_2.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  1467. Soon_2.Position = UDim2.new(0.546827793, 0, 0.834558845, 0)
  1468. Soon_2.Size = UDim2.new(0, 150, 0, 18)
  1469. Soon_2.Font = Enum.Font.Fantasy
  1470. Soon_2.Text = "Soon!"
  1471. Soon_2.TextColor3 = Color3.new(1, 1, 1)
  1472. Soon_2.TextSize = 14
  1473.  
  1474. Soon_3.Name = "Soon!"
  1475. Soon_3.Parent = Body
  1476. Soon_3.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  1477. Soon_3.Position = UDim2.new(0, 0, 0.834558845, 0)
  1478. Soon_3.Size = UDim2.new(0, 150, 0, 18)
  1479. Soon_3.Font = Enum.Font.Fantasy
  1480. Soon_3.Text = "Soon!"
  1481. Soon_3.TextColor3 = Color3.new(1, 1, 1)
  1482. Soon_3.TextSize = 14
  1483.  
  1484. Soon_4.Name = "Soon!"
  1485. Soon_4.Parent = Body
  1486. Soon_4.BackgroundColor3 = Color3.new(0, 1, 0.0823529)
  1487. Soon_4.BorderSizePixel = 0
  1488. Soon_4.Position = UDim2.new(0, 0, 0.952205896, 0)
  1489. Soon_4.Size = UDim2.new(0, 331, 0, 13)
  1490. Soon_4.Font = Enum.Font.Fantasy
  1491. Soon_4.Text = "By 1x7x9x0x3x1x9"
  1492. Soon_4.TextColor3 = Color3.new(0.0666667, 0, 1)
  1493. Soon_4.TextSize = 14
  1494.  
  1495. Open.Name = "Open"
  1496. Open.Parent = GamesGUI
  1497. Open.BackgroundColor3 = Color3.new(0, 0.952941, 1)
  1498. Open.BorderSizePixel = 3
  1499. Open.Position = UDim2.new(0.00928792544, 0, 0.914979756, 0)
  1500. Open.Size = UDim2.new(0, 96, 0, 32)
  1501. Open.Font = Enum.Font.SourceSans
  1502. Open.Text = "Open"
  1503. Open.TextSize = 14
  1504.  
  1505. Open.MouseButton1Down:connect(function()
  1506. local Button = script.Parent
  1507. Frame = script.Parent.Parent.Body
  1508.  
  1509. function onClick()
  1510. if Frame.Visible == false then
  1511. Frame.Visible = true
  1512. elseif Frame.Visible == true then
  1513. Frame.Visible = false
  1514. end
  1515. end
  1516.  
  1517. Button.MouseButton1Click:connect(onClick)
  1518.  
  1519. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement