Advertisement
hjkook

ㄹㄹㄹㄹ

Jul 13th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.51 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local GUI = Instance.new("Frame")
  5. local BAR = Instance.new("Frame")
  6. local minibar = Instance.new("Frame")
  7. local fly = Instance.new("TextButton")
  8. local noclip = Instance.new("TextButton")
  9. local speed = Instance.new("TextButton")
  10. local btool = Instance.new("TextButton")
  11. local weapon = Instance.new("TextButton")
  12. local MEME = Instance.new("TextButton")
  13. local line = Instance.new("Frame")
  14. local line2 = Instance.new("Frame")
  15. local Sqare = Instance.new("Frame")
  16. local line3 = Instance.new("Frame")
  17. local line4 = Instance.new("Frame")
  18.  
  19. -- Properties
  20.  
  21. ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
  22.  
  23. GUI.Name = "GUI"
  24. GUI.Parent = ScreenGui
  25. GUI.BackgroundColor3 = Color3.new(1, 1, 1)
  26. GUI.BorderSizePixel = 0
  27. GUI.Position = UDim2.new(0.452149779, 0, 0.0532994866, 0)
  28. GUI.Size = UDim2.new(0, 384, 0, 265)
  29. GUI.Visible = true
  30.  
  31. BAR.Name = "BAR"
  32. BAR.Parent = GUI
  33. BAR.BackgroundColor3 = Color3.new(1, 0, 0)
  34. BAR.BorderSizePixel = 0
  35. BAR.Size = UDim2.new(0, 384, 0, 33)
  36.  
  37. minibar.Name = "minibar"
  38. minibar.Parent = GUI
  39. minibar.BackgroundColor3 = Color3.new(1, 0.717647, 0)
  40. minibar.BorderSizePixel = 0
  41. minibar.Position = UDim2.new(0, 0, 0.124528304, 0)
  42. minibar.Size = UDim2.new(0, 384, 0, 6)
  43.  
  44. fly.Name = "fly"
  45. fly.Parent = GUI
  46. fly.BackgroundColor3 = Color3.new(1, 1, 1)
  47. fly.Position = UDim2.new(0.046875, 0, 0.203773588, 0)
  48. fly.Size = UDim2.new(0, 94, 0, 50)
  49. fly.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  50. fly.Font = Enum.Font.SourceSans
  51. fly.Text = "날자"
  52. fly.TextColor3 = Color3.new(0, 0, 0)
  53. fly.TextSize = 14
  54. fly.MouseButton1Down:connect(function()
  55. repeat wait()
  56. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  57. local mouse = game.Players.LocalPlayer:GetMouse()
  58. repeat wait() until mouse
  59. local plr = game.Players.LocalPlayer
  60. local torso = plr.Character.Torso
  61. local flying = true
  62. local deb = true
  63. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  64. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  65. local maxspeed = 50
  66. local speed = 0
  67.  
  68. function Fly()
  69. local bg = Instance.new("BodyGyro", torso)
  70. bg.P = 9e4
  71. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  72. bg.cframe = torso.CFrame
  73. local bv = Instance.new("BodyVelocity", torso)
  74. bv.velocity = Vector3.new(0,0.1,0)
  75. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  76. repeat wait()
  77. plr.Character.Humanoid.PlatformStand = true
  78. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  79. speed = speed+.5+(speed/maxspeed)
  80. if speed > maxspeed then
  81. speed = maxspeed
  82. end
  83. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  84. speed = speed-1
  85. if speed < 0 then
  86. speed = 0
  87. end
  88. end
  89. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  90. 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
  91. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  92. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  93. 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
  94. else
  95. bv.velocity = Vector3.new(0,0.1,0)
  96. end
  97. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  98. until not flying
  99. ctrl = {f = 0, b = 0, l = 0, r = 0}
  100. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  101. speed = 0
  102. bg:Destroy()
  103. bv:Destroy()
  104. plr.Character.Humanoid.PlatformStand = false
  105. end
  106. mouse.KeyDown:connect(function(key)
  107. if key:lower() == "e" then
  108. if flying then flying = false
  109. else
  110. flying = true
  111. Fly()
  112. end
  113. elseif key:lower() == "w" then
  114. ctrl.f = 1
  115. elseif key:lower() == "s" then
  116. ctrl.b = -1
  117. elseif key:lower() == "a" then
  118. ctrl.l = -1
  119. elseif key:lower() == "d" then
  120. ctrl.r = 1
  121. end
  122. end)
  123. mouse.KeyUp:connect(function(key)
  124. if key:lower() == "w" then
  125. ctrl.f = 0
  126. elseif key:lower() == "s" then
  127. ctrl.b = 0
  128. elseif key:lower() == "a" then
  129. ctrl.l = 0
  130. elseif key:lower() == "d" then
  131. ctrl.r = 0
  132. end
  133. end)
  134. Fly()
  135. end)
  136.  
  137. noclip.Name = "noclip"
  138. noclip.Parent = GUI
  139. noclip.BackgroundColor3 = Color3.new(1, 1, 1)
  140. noclip.Position = UDim2.new(0.046875, 0, 0.437735856, 0)
  141. noclip.Size = UDim2.new(0, 94, 0, 50)
  142. noclip.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  143. noclip.Font = Enum.Font.SourceSans
  144. noclip.Text = "벽통과"
  145. noclip.TextColor3 = Color3.new(0, 0, 0)
  146. noclip.TextSize = 14
  147. noclip.MouseButton1Down:connect(function()
  148. wait(2)
  149.  
  150. nam = game.Players.LocalPlayer.Name
  151.  
  152. coroutine.wrap(function()
  153. while wait() do
  154. for a, b in pairs(workspace[nam]:GetChildren()) do
  155. if b:FindFirstChild('Handle') then
  156. b.Handle.CanCollide = false
  157. end
  158. end
  159. end
  160. end)()
  161.  
  162. game:GetService('Players').LocalPlayer.PlayerGui.ChildAdded:connect(function(asd)
  163. delay(0, function()
  164. if asd.Name ~= 'OutputGUI' then
  165. asd:Destroy()
  166. end
  167. end)
  168. end)
  169.  
  170. game:GetService('RunService').Stepped:connect(function()
  171. workspace[nam].Torso.CanCollide = false
  172. workspace[nam].Head.CanCollide = false
  173. end)
  174.  
  175. workspace[nam].Torso.Changed:connect(function()
  176. workspace[nam].Torso.CanCollide = false
  177. workspace[nam].Head.CanCollide = false
  178. end)
  179. end)
  180.  
  181. speed.Name = "speed"
  182. speed.Parent = GUI
  183. speed.BackgroundColor3 = Color3.new(1, 1, 1)
  184. speed.Position = UDim2.new(0.046875, 0, 0.679245293, 0)
  185. speed.Size = UDim2.new(0, 94, 0, 50)
  186. speed.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  187. speed.Font = Enum.Font.SourceSans
  188. speed.Text = "속도업!"
  189. speed.TextColor3 = Color3.new(0, 0, 0)
  190. speed.TextSize = 14
  191. speed.MouseButton1Down:connect(function()
  192. local Player=game.Players.LocalPlayer
  193. local Speed=200
  194. local Hum=Player.Character:FindFirstChild("Humanoid")
  195. if Hum==nil then return end
  196. Hum.WalkSpeed=Speed
  197. end)
  198.  
  199. btool.Name = "btool"
  200. btool.Parent = GUI
  201. btool.BackgroundColor3 = Color3.new(1, 1, 1)
  202. btool.Position = UDim2.new(0.359375, 0, 0.203773588, 0)
  203. btool.Size = UDim2.new(0, 94, 0, 50)
  204. btool.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  205. btool.Font = Enum.Font.SourceSans
  206. btool.Text = "관리자툴"
  207. btool.TextColor3 = Color3.new(0, 0, 0)
  208. btool.TextSize = 14
  209. btool.MouseButton1Down:connect(function()
  210. for i, p in pairs(game.Players:GetChildren()) do
  211. local a = Instance.new("HopperBin")
  212. a.BinType = "GameTool"
  213. a.Parent = p.Backpack
  214. local a = Instance.new("HopperBin")
  215. a.BinType = "Clone"
  216. a.Parent = p.Backpack
  217. local a = Instance.new("HopperBin")
  218. a.BinType = "Hammer"
  219. a.Parent = p.Backpack
  220. end
  221. end)
  222. weapon.Name = "weapon"
  223. weapon.Parent = GUI
  224. weapon.BackgroundColor3 = Color3.new(1, 1, 1)
  225. weapon.Position = UDim2.new(0.359375, 0, 0.437735856, 0)
  226. weapon.Size = UDim2.new(0, 94, 0, 50)
  227. weapon.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  228. weapon.Font = Enum.Font.SourceSans
  229. weapon.Text = "무기"
  230. weapon.TextColor3 = Color3.new(0, 0, 0)
  231. weapon.TextSize = 14
  232.  
  233. MEME.Name = "MEME"
  234. MEME.Parent = GUI
  235. MEME.BackgroundColor3 = Color3.new(1, 1, 1)
  236. MEME.Position = UDim2.new(0.359375, 0, 0.679245293, 0)
  237. MEME.Size = UDim2.new(0, 94, 0, 50)
  238. MEME.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  239. MEME.Font = Enum.Font.SourceSans
  240. MEME.Text = "밈들"
  241. MEME.TextColor3 = Color3.new(0, 0, 0)
  242. MEME.TextSize = 14
  243. MEME.MouseButton1Down:connect(function()
  244. Memes = {
  245. 47594659,
  246. 342697845,
  247. 74142203,
  248. 60298055,
  249. 48989071,
  250. 63175216,
  251. 63186465,
  252. 45120559,
  253. 62079221,
  254. 48258623,
  255. 62677682,
  256. 63174888,
  257. 47595647,
  258. 62830600,
  259. 53646377,
  260. 62677045,
  261. 48260066,
  262. 47596170,
  263. 48293007,
  264. 53645378,
  265. 48290678,
  266. 53646388,
  267. 45031979,
  268. 74885351,
  269. 278201073,
  270. }
  271. Player = game.Players.LocalPlayer
  272. repeat wait() until Player.Character
  273. local Character = Player.Character
  274. MEME = 47594659
  275. MAX = #Memes
  276. AT = 1
  277. local Billboard = Instance.new("BillboardGui", Character.Head)
  278. Image = Instance.new("ImageLabel", Billboard)
  279. Billboard.AlwaysOnTop = true
  280. Billboard.Adornee = Character.Head
  281. Billboard.Size = UDim2.new(1, 0, 1,0)
  282. Image.BackgroundTransparency = 1
  283. Image.Position = UDim2.new(-2, 0,-2, 0)
  284. Image.Size = UDim2.new(5, 0, 4, 0)
  285. s = Instance.new("ScreenGui", Player.PlayerGui)
  286. local f = Instance.new("Frame", s)
  287. local b = Instance.new("TextButton", f)
  288. il = Instance.new("ImageLabel", f)
  289. f.Position = UDim2.new(0.8, 0, 0.6, 0)
  290. f.Size = UDim2.new(0.2, 0, 0.3, 0)
  291. b.Position = UDim2.new(0, 0, 0.9, 0)
  292. b.Size = UDim2.new(1, 0, 0.1, 0)
  293. b.Style = "RobloxRoundDropdownButton"
  294. b.Font = "Legacy"
  295. b.Text = "Next > "
  296. il.Size = UDim2.new(1, 0, 0.9, 0)
  297. il.Image = "rbxassetid://"..MEME
  298. b.MouseButton1Down:connect(function()
  299. MEME = Memes[AT]
  300. if AT >= MAX then
  301. AT = 1
  302. else
  303. AT = AT+1
  304. end
  305. end)
  306. coroutine.wrap(function()
  307. repeat
  308. il.Image = "rbxassetid://"..MEME
  309. Image.Image = "rbxassetid://"..MEME
  310. wait()
  311. until Player.Character.Humanoid.Health == 0
  312. end)()
  313. end)
  314.  
  315. line.Name = "line"
  316. line.Parent = GUI
  317. line.BackgroundColor3 = Color3.new(1, 0.388235, 0.309804)
  318. line.BorderSizePixel = 0
  319. line.Position = UDim2.new(0.768229187, 0, 0.147169814, 0)
  320. line.Size = UDim2.new(0, 14, 0, 85)
  321.  
  322. line2.Name = "line2"
  323. line2.Parent = GUI
  324. line2.BackgroundColor3 = Color3.new(1, 0.388235, 0.309804)
  325. line2.BorderSizePixel = 0
  326. line2.Position = UDim2.new(0.830729187, 0, 0.147169814, 0)
  327. line2.Size = UDim2.new(0, 14, 0, 85)
  328.  
  329. Sqare.Name = "Sqare"
  330. Sqare.Parent = GUI
  331. Sqare.BackgroundColor3 = Color3.new(1, 0.682353, 0.0431373)
  332. Sqare.BorderColor3 = Color3.new(0.0823529, 0.0823529, 0.0823529)
  333. Sqare.BorderSizePixel = 0
  334. Sqare.Position = UDim2.new(0.734375, 0, 0.437735856, 0)
  335. Sqare.Size = UDim2.new(0, 65, 0, 72)
  336.  
  337. line3.Name = "line3"
  338. line3.Parent = GUI
  339. line3.BackgroundColor3 = Color3.new(1, 0.388235, 0.309804)
  340. line3.BorderColor3 = Color3.new(0.0823529, 0.0823529, 0.0823529)
  341. line3.BorderSizePixel = 0
  342. line3.Position = UDim2.new(0.768229187, 0, 0.709433973, 0)
  343. line3.Size = UDim2.new(0, 14, 0, 77)
  344.  
  345. line4.Name = "line4"
  346. line4.Parent = GUI
  347. line4.BackgroundColor3 = Color3.new(1, 0.388235, 0.309804)
  348. line4.BorderColor3 = Color3.new(0.0823529, 0.0823529, 0.0823529)
  349. line4.BorderSizePixel = 0
  350. line4.Position = UDim2.new(0.830729187, 0, 0.709433973, 0)
  351. line4.Size = UDim2.new(0, 14, 0, 77)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement