Advertisement
UnknownExploiter

BoogaGui V1

Feb 14th, 2019
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 8.67 KB | None | 0 0
  1. -- // This is V1 of the gui, V2 will have speed-hack and more mk
  2.  
  3. local Gui = Instance.new("ScreenGui")
  4. local F1 = Instance.new("Frame")
  5. local OpenButton = Instance.new("TextButton")
  6. local CloseButton = Instance.new("TextButton")
  7. local F2 = Instance.new("Frame")
  8. local F2F1 = Instance.new("Frame")
  9. local TL1 = Instance.new("TextLabel")
  10. local B1 = Instance.new("TextButton")
  11. local B2 = Instance.new("TextButton")
  12. local CraftText1 = Instance.new("TextBox")
  13. local B3 = Instance.new("TextButton")
  14. local TL2 = Instance.new("TextLabel")
  15. local F2F1_2 = Instance.new("Frame")
  16. local NextButton = Instance.new("TextButton")
  17. local PreviousButton = Instance.new("TextButton")
  18.  
  19. Gui.Name = "Gui"
  20. Gui.Parent = game.CoreGui
  21. Gui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  22.  
  23. F1.Name = "F1"
  24. F1.Parent = Gui
  25. F1.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  26. F1.BorderSizePixel = 0
  27. F1.Position = UDim2.new(0.702680111, 0, 0.962292552, 0)
  28. F1.Size = UDim2.new(0, 107, 0, 25)
  29.  
  30. OpenButton.Name = "OpenButton"
  31. OpenButton.Parent = F1
  32. OpenButton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  33. OpenButton.BackgroundTransparency = 0.25
  34. OpenButton.BorderSizePixel = 0
  35. OpenButton.Size = UDim2.new(0, 107, 0, 25)
  36. OpenButton.Font = Enum.Font.Fantasy
  37. OpenButton.Text = "Open Gui"
  38. OpenButton.TextColor3 = Color3.new(1, 1, 1)
  39. OpenButton.TextSize = 17
  40. OpenButton.MouseButton1Click:connect(function()
  41.     OpenButton.Visible = false
  42.     CloseButton.Visible = true
  43.     F2.Visible = true
  44.     game.Lighting.FogEnd = 1200000
  45.     game.Lighting.Brightness = 3
  46.     game.Lighting.GlobalShadows = false
  47.    
  48. end)
  49.  
  50. CloseButton.Name = "CloseButton"
  51. CloseButton.Parent = F1
  52. CloseButton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  53. CloseButton.BackgroundTransparency = 0.25
  54. CloseButton.BorderSizePixel = 0
  55. CloseButton.Size = UDim2.new(0, 107, 0, 25)
  56. CloseButton.Visible = false
  57. CloseButton.Font = Enum.Font.Fantasy
  58. CloseButton.Text = "Close Gui"
  59. CloseButton.TextColor3 = Color3.new(1, 1, 1)
  60. CloseButton.TextSize = 17
  61. CloseButton.MouseButton1Click:connect(function()
  62.     OpenButton.Visible = true
  63.     CloseButton.Visible = false
  64.     F2.Visible = false
  65.     game.Lighting.FogEnd = 1200000
  66.     game.Lighting.Brightness = 3
  67.     game.Lighting.GlobalShadows = false
  68. end)
  69.  
  70.  
  71. F2.Name = "F2"
  72. F2.Parent = Gui
  73. F2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  74. F2.BorderSizePixel = 0
  75. F2.Position = UDim2.new(0.399497479, 0, 0.345399708, 0)
  76. F2.Size = UDim2.new(0, 253, 0, 216)
  77. F2.Visible = false
  78.  
  79. F2F1.Name = "F2F1"
  80. F2F1.Parent = F2
  81. F2F1.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  82. F2F1.BorderSizePixel = 0
  83. F2F1.Position = UDim2.new(0.0237154141, 0, 0.027777778, 0)
  84. F2F1.Size = UDim2.new(0, 241, 0, 204)
  85.  
  86. TL1.Name = "TL1"
  87. TL1.Parent = F2F1
  88. TL1.BackgroundColor3 = Color3.new(1, 1, 1)
  89. TL1.BackgroundTransparency = 1
  90. TL1.BorderSizePixel = 0
  91. TL1.Position = UDim2.new(0.0248962659, 0, 0.862745106, 0)
  92. TL1.Size = UDim2.new(0, 191, 0, 22)
  93. TL1.Font = Enum.Font.Fantasy
  94. TL1.Text = "MadeBy: UnknownExploiter"
  95. TL1.TextColor3 = Color3.new(0, 0, 0)
  96. TL1.TextSize = 15
  97. TL1.TextWrapped = true
  98.  
  99. B1.Name = "B1"
  100. B1.Parent = F2F1
  101. B1.BackgroundColor3 = Color3.new(1, 1, 1)
  102. B1.BackgroundTransparency = 0.69999998807907
  103. B1.BorderSizePixel = 0
  104. B1.Position = UDim2.new(0.0248962659, 0, 0.0294117648, 0)
  105. B1.Size = UDim2.new(0, 229, 0, 21)
  106. B1.Font = Enum.Font.Fantasy
  107. B1.Text = "Infinite Jump"
  108. B1.TextColor3 = Color3.new(0, 0, 0)
  109. B1.TextSize = 16
  110. B1.TextWrapped = true
  111. B1.MouseButton1Click:connect(function()
  112. local Player = game:GetService'Players'.LocalPlayer;
  113. local UIS = game:GetService'UserInputService';
  114.  
  115. _G.JumpHeight = 50;
  116.  
  117. function Action(Object, Function) if Object ~= nil then Function(Object); end end
  118.  
  119. UIS.InputBegan:connect(function(UserInput)
  120.     if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode.Space then
  121.         Action(Player.Character.Humanoid, function(self)
  122.             if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then
  123.                 Action(self.Parent.HumanoidRootPart, function(self)
  124.                     self.Velocity = Vector3.new(0, _G.JumpHeight, 0);
  125.                 end)
  126.             end
  127.         end)
  128.     end
  129. end)
  130.  
  131. B2.Name = "B2"
  132. B2.Parent = F2F1
  133. B2.BackgroundColor3 = Color3.new(1, 1, 1)
  134. B2.BackgroundTransparency = 0.69999998807907
  135. B2.BorderSizePixel = 0
  136. B2.Position = UDim2.new(0.0248962659, 0, 0.161764711, 0)
  137. B2.Size = UDim2.new(0, 229, 0, 21)
  138. B2.Font = Enum.Font.Fantasy
  139. B2.Text = "ESP"
  140. B2.TextColor3 = Color3.new(0, 0, 0)
  141. B2.TextSize = 16
  142. B2.TextWrapped = true
  143.  
  144. Important = {Players = game:GetService("Players"), Workspace = game:GetService("Workspace"), CoreGui = game:GetService("CoreGui")}
  145.  
  146. local enabledesp = false
  147.  
  148. function CreateESP(plr)
  149.    
  150.     if plr ~= nil then
  151.        
  152.         local GetChar = plr.Character
  153.         if not GetChar then return end
  154.        
  155.         local GetHead do
  156.            
  157.             repeat wait() until GetChar:FindFirstChild("Head")
  158.            
  159.         end
  160.         GetHead = GetChar.Head        
  161.        
  162.         local bb = Instance.new("BillboardGui", Important.CoreGui)
  163.         bb.Adornee = GetHead
  164.         bb.ExtentsOffset = Vector3.new(0, 1, 0)
  165.         bb.AlwaysOnTop = true
  166.         bb.Size = UDim2.new(0, 5, 0, 5)
  167.         bb.StudsOffset = Vector3.new(0, 3, 0)
  168.         bb.Name = "ESP_PLAYER_" .. plr.Name
  169.  
  170.         local displayframe = Instance.new("Frame", bb)
  171.         displayframe.ZIndex = 10
  172.         displayframe.BackgroundTransparency = 1
  173.         displayframe.Size = UDim2.new(1,0,1,0)
  174.        
  175.         local name = Instance.new("TextLabel", displayframe)
  176.         name.Name = "Name"
  177.         name.ZIndex = 10
  178.         name.Text = plr.Name
  179.         name.Visible = true
  180.         name.TextColor3 = Color3.new(170,0,0)
  181.         name.BackgroundTransparency = 1
  182.         name.Size = UDim2.new(1,0,10,0)
  183.         name.Font = Enum.Font.SourceSansLight
  184.         name.TextSize = 20
  185.         name.TextStrokeTransparency = .5
  186.        
  187.     end
  188.    
  189. end
  190.  
  191. B2.MouseButton1Click:connect(function()
  192.    
  193.     for i,v in pairs(Important.Players:GetChildren()) do
  194.        
  195.         CreateESP(v)
  196.        
  197.     end
  198.    
  199. end)
  200.  
  201. CraftText1.Name = "CraftText1"
  202. CraftText1.Parent = F2F1
  203. CraftText1.BackgroundColor3 = Color3.new(1, 1, 1)
  204. CraftText1.BackgroundTransparency = 0.69999998807907
  205. CraftText1.BorderSizePixel = 0
  206. CraftText1.Position = UDim2.new(0.0248962659, 0, 0.30392158, 0)
  207. CraftText1.Size = UDim2.new(0, 140, 0, 21)
  208. CraftText1.Font = Enum.Font.Fantasy
  209. CraftText1.Text = "[ Item Name Here ]"
  210. CraftText1.TextColor3 = Color3.new(0, 0, 0)
  211. CraftText1.TextSize = 14
  212.  
  213. B3.Name = "B3"
  214. B3.Parent = F2F1
  215. B3.BackgroundColor3 = Color3.new(1, 1, 1)
  216. B3.BackgroundTransparency = 0.69999998807907
  217. B3.BorderSizePixel = 0
  218. B3.Position = UDim2.new(0.630705416, 0, 0.30392158, 0)
  219. B3.Size = UDim2.new(0, 83, 0, 21)
  220. B3.Font = Enum.Font.Fantasy
  221. B3.Text = "Craft"
  222. B3.TextColor3 = Color3.new(0, 0, 0)
  223. B3.TextSize = 16
  224. B3.TextWrapped = true
  225. B3.MouseButton1Click:connect(function()
  226. local ItemName = CraftText1.Text
  227. game:GetService("ReplicatedStorage").Events.CraftItem:FireServer(ItemName) 
  228. end)
  229.  
  230. TL2.Name = "TL2"
  231. TL2.Parent = F2F1
  232. TL2.BackgroundColor3 = Color3.new(1, 1, 1)
  233. TL2.BackgroundTransparency = 1
  234. TL2.BorderSizePixel = 0
  235. TL2.Position = UDim2.new(0.103734441, 0, 0.406862736, 0)
  236. TL2.Size = UDim2.new(0, 191, 0, 66)
  237. TL2.Font = Enum.Font.Fantasy
  238. TL2.Text = "In order to use Anti-Level-Craft you must have the items to craft the item / and you must spell the item correctly"
  239. TL2.TextColor3 = Color3.new(0, 0, 0)
  240. TL2.TextSize = 15
  241. TL2.TextWrapped = true
  242.  
  243. F2F1_2.Name = "F2F1"
  244. F2F1_2.Parent = F2
  245. F2F1_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  246. F2F1_2.BorderSizePixel = 0
  247. F2F1_2.Position = UDim2.new(0.826086938, 0, 0.814814806, 0)
  248. F2F1_2.Size = UDim2.new(0, 44, 0, 40)
  249.  
  250. NextButton.Name = "NextButton"
  251. NextButton.Parent = F2F1_2
  252. NextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  253. NextButton.BackgroundTransparency = 1
  254. NextButton.Size = UDim2.new(0, 38, 0, 34)
  255. NextButton.Font = Enum.Font.Fantasy
  256. NextButton.Text = ">"
  257. NextButton.TextColor3 = Color3.new(0, 0, 0)
  258. NextButton.TextScaled = true
  259. NextButton.TextSize = 14
  260. NextButton.TextWrapped = true
  261.  
  262. PreviousButton.Name = "PreviousButton"
  263. PreviousButton.Parent = F2F1_2
  264. PreviousButton.BackgroundColor3 = Color3.new(1, 1, 1)
  265. PreviousButton.BackgroundTransparency = 1
  266. PreviousButton.Size = UDim2.new(0, 38, 0, 34)
  267. PreviousButton.Visible = false
  268. PreviousButton.Font = Enum.Font.Fantasy
  269. PreviousButton.Text = "<"
  270. PreviousButton.TextColor3 = Color3.new(0, 0, 0)
  271. PreviousButton.TextScaled = true
  272. PreviousButton.TextSize = 14
  273. PreviousButton.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement