Advertisement
Guest User

rrrrrrrrrrrrrrrrrr

a guest
Mar 22nd, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.80 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. .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. .MouseButton1Down:connect(function()
  566.  
  567. end)
  568.  
  569. FEbtools.Name = "FE btools"
  570. FEbtools.Parent = Body
  571. FEbtools.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  572. FEbtools.Position = UDim2.new(0.0332326293, 0, 0.466911793, 0)
  573. FEbtools.Size = UDim2.new(0, 71, 0, 18)
  574. FEbtools.Font = Enum.Font.Fantasy
  575. FEbtools.Text = "FE Btools"
  576. FEbtools.TextColor3 = Color3.new(1, 1, 1)
  577. FEbtools.TextSize = 14
  578.  
  579. .MouseButton1Down:connect(function()
  580.  
  581. end)
  582.  
  583. Flyinghead.Name = "Flying head"
  584. Flyinghead.Parent = Body
  585. Flyinghead.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  586. Flyinghead.Position = UDim2.new(0.374622345, 0, 0.466911793, 0)
  587. Flyinghead.Size = UDim2.new(0, 71, 0, 18)
  588. Flyinghead.Font = Enum.Font.Fantasy
  589. Flyinghead.Text = "Flying head"
  590. Flyinghead.TextColor3 = Color3.new(1, 1, 1)
  591. Flyinghead.TextSize = 14
  592.  
  593. .MouseButton1Down:connect(function()
  594.  
  595. end)
  596.  
  597. Drophats.Name = "Drophats"
  598. Drophats.Parent = Body
  599. Drophats.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  600. Drophats.Position = UDim2.new(0.682779431, 0, 0.466911793, 0)
  601. Drophats.Size = UDim2.new(0, 71, 0, 18)
  602. Drophats.Font = Enum.Font.Fantasy
  603. Drophats.Text = "Drop hats"
  604. Drophats.TextColor3 = Color3.new(1, 1, 1)
  605. Drophats.TextSize = 14
  606.  
  607. .MouseButton1Down:connect(function()
  608.  
  609. end)
  610.  
  611. TextLabel_3.Parent = Body
  612. TextLabel_3.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  613. TextLabel_3.Position = UDim2.new(0.173716024, 0, 0.577205896, 0)
  614. TextLabel_3.Size = UDim2.new(0, 204, 0, 19)
  615. TextLabel_3.Font = Enum.Font.SourceSans
  616. TextLabel_3.Text = "Specific games"
  617. TextLabel_3.TextColor3 = Color3.new(1, 1, 1)
  618. TextLabel_3.TextSize = 14
  619.  
  620. WaterPark.Name = "Water Park"
  621. WaterPark.Parent = Body
  622. WaterPark.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  623. WaterPark.Position = UDim2.new(0, 0, 0.702205896, 0)
  624. WaterPark.Size = UDim2.new(0, 150, 0, 18)
  625. WaterPark.Font = Enum.Font.Fantasy
  626. WaterPark.Text = "WaterPark boom boom"
  627. WaterPark.TextColor3 = Color3.new(1, 1, 1)
  628. WaterPark.TextSize = 14
  629.  
  630. .MouseButton1Down:connect(function()
  631.  
  632. end)
  633.  
  634. Citylifehammer.Name = "City life hammer"
  635. Citylifehammer.Parent = Body
  636. Citylifehammer.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  637. Citylifehammer.Position = UDim2.new(0.546827793, 0, 0.702205896, 0)
  638. Citylifehammer.Size = UDim2.new(0, 150, 0, 18)
  639. Citylifehammer.Font = Enum.Font.Fantasy
  640. Citylifehammer.Text = "City life hammer"
  641. Citylifehammer.TextColor3 = Color3.new(1, 1, 1)
  642. Citylifehammer.TextSize = 14
  643.  
  644. Citylifehammer.MouseButton1Down:connect(function()
  645. plr = "LocalPlayer" --player to give tool to
  646.  
  647.  
  648. plr = game:GetService'Players'[plr]
  649. game:GetService'ReplicatedStorage'.ITEM_PURCHASE:InvokeServer('meme', '7', '1055299')
  650. lp = game:GetService'Players'.LocalPlayer
  651. hat = lp.Character:WaitForChild'meme'
  652. hammer = hat.GravityHammer
  653. hammer.Parent = lp:FindFirstChildOfClass'Backpack'
  654. --DIRTY HACKS TO PARENT HAT/TOOLS WITH REPLICATION ON FE--
  655. hat.Parent = nil
  656. hammer.Parent = lp.Character
  657. game:GetService'RunService'.Stepped:wait()
  658. hammer.Parent = plr.Character
  659. for i = 1,3 do
  660. local lol = lp:FindFirstChildOfClass'Backpack':FindFirstChildOfClass'HopperBin'
  661. if lol:FindFirstChild'LocalScript' then destroy() end
  662. end
  663. end)
  664.  
  665. Citylifebombvest.Name = "City life bomb vest"
  666. Citylifebombvest.Parent = Body
  667. Citylifebombvest.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  668. Citylifebombvest.Position = UDim2.new(0.546827793, 0, 0.76838237, 0)
  669. Citylifebombvest.Size = UDim2.new(0, 150, 0, 18)
  670. Citylifebombvest.Font = Enum.Font.Fantasy
  671. Citylifebombvest.Text = "City life bomb vest"
  672. Citylifebombvest.TextColor3 = Color3.new(1, 1, 1)
  673. Citylifebombvest.TextSize = 14
  674.  
  675. Citylifebombvest.MouseButton1Down:connect(function()
  676. local Me = game:GetService("Players").LocalPlayer
  677. local Char = Me.Character
  678. local Torso = Char.Torso
  679. local TickWait = 1
  680. local Color = "Medium stone gray"
  681. local Dead = false
  682.  
  683. local Tool = Instance.new("HopperBin", Me.Backpack)
  684. Tool.Name = "Bomb Vest"
  685.  
  686. local Position = Vector3.new(0,100,0)
  687. function NewPart(Parent)
  688. local Part = Instance.new("Part", Parent)
  689. Part.CanCollide = false
  690. Part.FormFactor = "Custom"
  691. Part.Position = Position
  692. Part.TopSurface = "Smooth"
  693. Part.BottomSurface = "Smooth"
  694. Part.BrickColor = BrickColor.new(Color)
  695. Position = Position + Vector3.new(0,Part.Size.Y + 10,0)
  696. return Part
  697. end
  698.  
  699. local Model = Char:FindFirstChild("Bomb")
  700. if Model then Model:Destroy() end
  701.  
  702. Model = Instance.new("Model", Char)
  703. Model.Name = "Bomb"
  704.  
  705. local Belt = NewPart(Model)
  706. Belt.Size = Vector3.new(2.2,0.5,1.2)
  707. local Weld = Instance.new("Weld", Belt)
  708. Weld.Part0 = Belt
  709. Weld.Part1 = Torso
  710. Weld.C0 = CFrame.new(0,1.1,0)
  711. local Light = Instance.new("PointLight", Belt)
  712. Light.Range = 15
  713. Light.Brightness = 5
  714. Light.Color = Color3.new(1,0,0)
  715. local Beep = Instance.new("Sound", Belt)
  716. Beep.SoundId = "http://www.roblox.com/asset/?id=188588790"
  717. local ExplodeSound = Instance.new("Sound", Belt)
  718. ExplodeSound.SoundId = "http://www.roblox.com/asset/?id="..(tonumber((math.ceil(1776.66^2)+17).."."..string.rep("36",3))*77)+0.00003 --144507765
  719. ExplodeSound.Pitch = 2.8
  720. ExplodeSound.Volume = 100
  721.  
  722. local Back = NewPart(Model)
  723. Back.Size = Vector3.new(1.5,1.5,0.5)
  724. local Weld = Instance.new("Weld", Back)
  725. Weld.Part0 = Back
  726. Weld.Part1 = Torso
  727. Weld.C0 = CFrame.new(0,0.1,-0.75)
  728.  
  729. local StrapLeft = NewPart(Model)
  730. StrapLeft.Size = Vector3.new(0.2,0.5,1.6)
  731. local Weld = Instance.new("Weld", StrapLeft)
  732. Weld.Part0 = StrapLeft
  733. Weld.Part1 = Torso
  734. Weld.C0 = CFrame.new(0.65,-0.9,-0.2)
  735.  
  736. local BuckleLeft = NewPart(Model)
  737. BuckleLeft.Size = Vector3.new(0.2,1.5,0.2)
  738. local Weld = Instance.new("Weld", BuckleLeft)
  739. Weld.Part0 = BuckleLeft
  740. Weld.Part1 = Torso
  741. Weld.C0 = CFrame.new(0.65,0.1,0.5)
  742.  
  743. local StrapRight = NewPart(Model)
  744. StrapRight.Size = Vector3.new(0.2,0.5,1.6)
  745. local Weld = Instance.new("Weld", StrapRight)
  746. Weld.Part0 = StrapRight
  747. Weld.Part1 = Torso
  748. Weld.C0 = CFrame.new(-0.65,-0.9,-0.2)
  749.  
  750. local BuckleRight = NewPart(Model)
  751. BuckleRight.Size = Vector3.new(0.2,1.5,0.2)
  752. local Weld = Instance.new("Weld", BuckleRight)
  753. Weld.Part0 = BuckleRight
  754. Weld.Part1 = Torso
  755. Weld.C0 = CFrame.new(-0.65,0.1,0.5)
  756.  
  757. Tool.Selected:connect(function(Mouse)
  758. TickWait = 0.3
  759. Mouse.Icon = "http://www.roblox.com/asset/?id=9109985"
  760.  
  761. Mouse.Button1Down:connect(function()
  762. if Dead == false then
  763. Dead = true
  764. ExplodeSound:Play()
  765. wait(1.4)
  766. local Explosion = Instance.new("Explosion", Workspace)
  767. Explosion.Position = Belt.Position
  768. Explosion.BlastPressure = 100000
  769. Explosion.DestroyJointRadiusPercent = 0.7
  770. Explosion.ExplosionType = "CratersAndDebris"
  771. Explosion.BlastRadius = 50
  772. Explosion.Hit:connect(function(Part, Distance)
  773. Part.Anchored = false
  774. if Distance <= 10 then
  775. Part:BreakJoints()
  776. end
  777. end)
  778. end
  779. end)
  780. end)
  781.  
  782. Tool.Deselected:connect(function()
  783. TickWait = 1
  784. end)
  785.  
  786. coroutine.wrap(function()
  787. repeat
  788. wait(TickWait)
  789. Light.Enabled = not Light.Enabled
  790. Beep:Play()
  791. until Dead == true
  792. end)()
  793. end)
  794.  
  795. Soon.Name = "Soon!"
  796. Soon.Parent = Body
  797. Soon.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  798. Soon.Position = UDim2.new(0, 0, 0.76838237, 0)
  799. Soon.Size = UDim2.new(0, 150, 0, 18)
  800. Soon.Font = Enum.Font.Fantasy
  801. Soon.Text = "Soon!"
  802. Soon.TextColor3 = Color3.new(1, 1, 1)
  803. Soon.TextSize = 14
  804.  
  805. Soon_2.Name = "Soon!"
  806. Soon_2.Parent = Body
  807. Soon_2.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  808. Soon_2.Position = UDim2.new(0.546827793, 0, 0.834558845, 0)
  809. Soon_2.Size = UDim2.new(0, 150, 0, 18)
  810. Soon_2.Font = Enum.Font.Fantasy
  811. Soon_2.Text = "Soon!"
  812. Soon_2.TextColor3 = Color3.new(1, 1, 1)
  813. Soon_2.TextSize = 14
  814.  
  815. Soon_3.Name = "Soon!"
  816. Soon_3.Parent = Body
  817. Soon_3.BackgroundColor3 = Color3.new(0, 0.709804, 0.0235294)
  818. Soon_3.Position = UDim2.new(0, 0, 0.834558845, 0)
  819. Soon_3.Size = UDim2.new(0, 150, 0, 18)
  820. Soon_3.Font = Enum.Font.Fantasy
  821. Soon_3.Text = "Soon!"
  822. Soon_3.TextColor3 = Color3.new(1, 1, 1)
  823. Soon_3.TextSize = 14
  824.  
  825. Soon_4.Name = "Soon!"
  826. Soon_4.Parent = Body
  827. Soon_4.BackgroundColor3 = Color3.new(0, 1, 0.0823529)
  828. Soon_4.BorderSizePixel = 0
  829. Soon_4.Position = UDim2.new(0, 0, 0.952205896, 0)
  830. Soon_4.Size = UDim2.new(0, 331, 0, 13)
  831. Soon_4.Font = Enum.Font.Fantasy
  832. Soon_4.Text = "By 1x7x9x0x3x1x9"
  833. Soon_4.TextColor3 = Color3.new(0.0666667, 0, 1)
  834. Soon_4.TextSize = 14
  835.  
  836. Open.Name = "Open"
  837. Open.Parent = GamesGUI
  838. Open.BackgroundColor3 = Color3.new(0, 0.952941, 1)
  839. Open.BorderSizePixel = 3
  840. Open.Position = UDim2.new(0.00928792544, 0, 0.914979756, 0)
  841. Open.Size = UDim2.new(0, 96, 0, 32)
  842. Open.Font = Enum.Font.SourceSans
  843. Open.Text = "Open"
  844. Open.TextSize = 14
  845.  
  846. Open.MouseButton1Down:connect(function()
  847. local Button = script.Parent
  848. Frame = script.Parent.Parent.Body
  849.  
  850. function onClick()
  851. if Frame.Visible == false then
  852. Frame.Visible = true
  853. elseif Frame.Visible == true then
  854. Frame.Visible = false
  855. end
  856. end
  857.  
  858. Button.MouseButton1Click:connect(onClick)
  859.  
  860. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement