Advertisement
Grantrookie

booga booga gui

Jun 27th, 2018
29,666
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.54 KB | None | 0 0
  1. -- Objects
  2.  
  3. local BoogaGUI = Instance.new("ScreenGui")
  4. local MainFrame = Instance.new("Frame")
  5. local bar = Instance.new("Frame")
  6. local bar1 = Instance.new("Frame")
  7. local powered = Instance.new("TextLabel")
  8. local title = Instance.new("TextLabel")
  9. local clicktp = Instance.new("TextButton")
  10. local infjump = Instance.new("TextButton")
  11. local walkspeed = Instance.new("TextButton")
  12. local removeeffects = Instance.new("TextButton")
  13. local jumppower = Instance.new("TextButton")
  14. local xray = Instance.new("TextButton")
  15. local stuffslabel = Instance.new("TextLabel")
  16. local walkspeedkeybind = Instance.new("TextBox")
  17. local walkspeednum = Instance.new("TextBox")
  18. local jpnum = Instance.new("TextBox")
  19. local jplabel = Instance.new("TextLabel")
  20. local wslabel = Instance.new("TextLabel")
  21. local openbtn = Instance.new("TextButton")
  22.  
  23. -- Properties
  24.  
  25. BoogaGUI.Name = "BoogaGUI"
  26. BoogaGUI.Parent = game.Players.LocalPlayer.PlayerGui
  27.  
  28. MainFrame.Name = "MainFrame"
  29. MainFrame.Parent = BoogaGUI
  30. MainFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  31. MainFrame.BorderSizePixel = 0
  32. MainFrame.Position = UDim2.new(0.239999995, 0, 0.170000002, 0)
  33. MainFrame.Size = UDim2.new(0, 707, 0, 381)
  34. MainFrame.Visible = false
  35. MainFrame.Active = true
  36. MainFrame.Draggable = true
  37.  
  38. bar.Name = "bar"
  39. bar.Parent = MainFrame
  40. bar.BackgroundColor3 = Color3.new(0, 0.839216, 0.839216)
  41. bar.BorderSizePixel = 0
  42. bar.Size = UDim2.new(0, 707, 0, 22)
  43.  
  44. bar1.Name = "bar1"
  45. bar1.Parent = MainFrame
  46. bar1.BackgroundColor3 = Color3.new(0, 1, 1)
  47. bar1.BorderSizePixel = 0
  48. bar1.Position = UDim2.new(0, 0, 0.0367454067, 0)
  49. bar1.Size = UDim2.new(0, 707, 0, 58)
  50.  
  51. powered.Name = "powered"
  52. powered.Parent = MainFrame
  53. powered.BackgroundColor3 = Color3.new(1, 1, 1)
  54. powered.BackgroundTransparency = 1
  55. powered.BorderSizePixel = 0
  56. powered.Position = UDim2.new(0, 0, 0.93651861, 0)
  57. powered.Size = UDim2.new(0, 137, 0, 24)
  58. powered.Font = Enum.Font.Fantasy
  59. powered.Text = "Powered By BlueHack"
  60. powered.TextColor3 = Color3.new(0, 0, 0)
  61. powered.TextSize = 14
  62.  
  63. title.Name = "title"
  64. title.Parent = MainFrame
  65. title.BackgroundColor3 = Color3.new(1, 1, 1)
  66. title.BackgroundTransparency = 1
  67. title.BorderSizePixel = 0
  68. title.Position = UDim2.new(0.0410183892, 0, 0.0367454067, 0)
  69. title.Size = UDim2.new(0, 218, 0, 58)
  70. title.Font = Enum.Font.Cartoon
  71. title.Text = "Booga Booga GUI"
  72. title.TextColor3 = Color3.new(1, 1, 1)
  73. title.TextScaled = true
  74. title.TextSize = 14
  75. title.TextWrapped = true
  76.  
  77. clicktp.Name = "clicktp"
  78. clicktp.Parent = MainFrame
  79. clicktp.BackgroundColor3 = Color3.new(1, 1, 1)
  80. clicktp.BorderColor3 = Color3.new(0.505882, 0.792157, 0.992157)
  81. clicktp.BorderSizePixel = 10
  82. clicktp.Position = UDim2.new(0.0410183892, 0, 0.288211465, 0)
  83. clicktp.Size = UDim2.new(0, 218, 0, 50)
  84. clicktp.Font = Enum.Font.SciFi
  85. clicktp.Text = "Ctrl + Click Teleport"
  86. clicktp.TextColor3 = Color3.new(0, 0, 0)
  87. clicktp.TextSize = 20
  88. clicktp.MouseButton1Down:connect(function()
  89. local Plr = game:GetService('Players').LocalPlayer
  90. local Mouse = Plr:GetMouse() Mouse.Button1Down:connect(function()
  91. if not game:GetService('UserInputService'):IsKeyDown(Enum.KeyCode.LeftControl) then
  92. return
  93. end
  94. if not Mouse.Target then return end Plr.Character:MoveTo(Mouse.Hit.p) end)
  95. end)
  96.  
  97. infjump.Name = "infjump"
  98. infjump.Parent = MainFrame
  99. infjump.BackgroundColor3 = Color3.new(1, 1, 1)
  100. infjump.BorderColor3 = Color3.new(0.505882, 0.792157, 0.992157)
  101. infjump.BorderSizePixel = 10
  102. infjump.Position = UDim2.new(0.394625187, 0, 0.288211465, 0)
  103. infjump.Size = UDim2.new(0, 218, 0, 50)
  104. infjump.Font = Enum.Font.SciFi
  105. infjump.Text = "Infinite Jump"
  106. infjump.TextColor3 = Color3.new(0, 0, 0)
  107. infjump.TextSize = 25
  108. infjump.MouseButton1Down:connect(function()
  109. local plr = game:GetService'Players'.LocalPlayer
  110. local m = plr:GetMouse()
  111. m.KeyDown:connect(function(k)
  112. if k == ' ' then
  113. game:GetService'Players'.LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState('Jumping')
  114. wait()
  115. game:GetService'Players'.LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState('Seated')
  116. end
  117. end)
  118. end)
  119.  
  120. walkspeed.Name = "walkspeed"
  121. walkspeed.Parent = MainFrame
  122. walkspeed.BackgroundColor3 = Color3.new(1, 1, 1)
  123. walkspeed.BorderColor3 = Color3.new(0.505882, 0.792157, 0.992157)
  124. walkspeed.BorderSizePixel = 10
  125. walkspeed.Position = UDim2.new(0.0410183892, 0, 0.512921691, 0)
  126. walkspeed.Size = UDim2.new(0, 218, 0, 50)
  127. walkspeed.Font = Enum.Font.SciFi
  128. walkspeed.Text = "Walkspeed [q]"
  129. walkspeed.TextColor3 = Color3.new(0, 0, 0)
  130. walkspeed.TextSize = 25
  131. local plr = game:GetService("Players").LocalPlayer
  132. local char = plr.Character
  133. local mouse = game:GetService("Players").LocalPlayer:GetMouse()
  134. local hum = char:FindFirstChild("HumanoidRootPart")
  135.  
  136. walkspeed.MouseButton1Down:connect(function()
  137. local plr = game:GetService("Players").LocalPlayer
  138. local char = plr.Character
  139. local mouse = game:GetService("Players").LocalPlayer:GetMouse()
  140. local hum = char:FindFirstChild("HumanoidRootPart")
  141. mouse.KeyDown:connect(function(key)
  142. if key == walkspeedkeybind.Text then
  143. loop = true
  144. while loop do
  145. hum.CFrame = hum.CFrame + hum.CFrame.lookVector * walkspeednum.Text
  146. wait()
  147. end
  148. end
  149. end)
  150. end)
  151.  
  152. mouse.KeyUp:connect(function(key)
  153. if key == walkspeedkeybind.Text then
  154. loop = false
  155. end
  156. end)
  157. removeeffects.Name = "removeeffects"
  158. removeeffects.Parent = MainFrame
  159. removeeffects.BackgroundColor3 = Color3.new(1, 1, 1)
  160. removeeffects.BorderColor3 = Color3.new(0.505882, 0.792157, 0.992157)
  161. removeeffects.BorderSizePixel = 10
  162. removeeffects.Position = UDim2.new(0.0410183892, 0, 0.727133334, 0)
  163. removeeffects.Size = UDim2.new(0, 218, 0, 50)
  164. removeeffects.Font = Enum.Font.SciFi
  165. removeeffects.Text = "Remove Effects"
  166. removeeffects.TextColor3 = Color3.new(0, 0, 0)
  167. removeeffects.TextSize = 25
  168. removeeffects.MouseButton1Down:connect(function()
  169. game.Lighting.FogEnd = 1200000
  170. game.Lighting.Brightness = 3
  171. game.Lighting.GlobalShadows = false
  172. end)
  173.  
  174. jumppower.Name = "jumppower"
  175. jumppower.Parent = MainFrame
  176. jumppower.BackgroundColor3 = Color3.new(1, 1, 1)
  177. jumppower.BorderColor3 = Color3.new(0.505882, 0.792157, 0.992157)
  178. jumppower.BorderSizePixel = 10
  179. jumppower.Position = UDim2.new(0.394625187, 0, 0.512921691, 0)
  180. jumppower.Size = UDim2.new(0, 218, 0, 50)
  181. jumppower.Font = Enum.Font.SciFi
  182. jumppower.Text = "JumpPower"
  183. jumppower.TextColor3 = Color3.new(0, 0, 0)
  184. jumppower.TextSize = 25
  185. jumppower.MouseButton1Down:connect(function()
  186. game.Players.LocalPlayer.Character.Humanoid.JumpPower = jpnum.text
  187. end)
  188.  
  189. xray.Name = "xray"
  190. xray.Parent = MainFrame
  191. xray.BackgroundColor3 = Color3.new(1, 1, 1)
  192. xray.BorderColor3 = Color3.new(0.505882, 0.792157, 0.992157)
  193. xray.BorderSizePixel = 10
  194. xray.Position = UDim2.new(0.394625187, 0, 0.727133334, 0)
  195. xray.Size = UDim2.new(0, 218, 0, 50)
  196. xray.Font = Enum.Font.SciFi
  197. xray.Text = "Xray"
  198. xray.TextColor3 = Color3.new(0, 0, 0)
  199. xray.TextSize = 25
  200. Important = {Players = game:GetService("Players"), Workspace = game:GetService("Workspace"), CoreGui = game.Players.LocalPlayer.PlayerGui}
  201.  
  202. local enabledesp = false
  203.  
  204. function CreateESP(plr)
  205.  
  206. if plr ~= nil then
  207.  
  208. local GetChar = plr.Character
  209. if not GetChar then return end
  210.  
  211. local GetHead do
  212.  
  213. repeat wait() until GetChar:FindFirstChild("Head")
  214.  
  215. end
  216. GetHead = GetChar.Head
  217.  
  218. local bb = Instance.new("BillboardGui", Important.CoreGui)
  219. bb.Adornee = GetHead
  220. bb.ExtentsOffset = Vector3.new(0, 1, 0)
  221. bb.AlwaysOnTop = true
  222. bb.Size = UDim2.new(0, 5, 0, 5)
  223. bb.StudsOffset = Vector3.new(0, 3, 0)
  224. bb.Name = "ESP_PLAYER_" .. plr.Name
  225.  
  226. local displayframe = Instance.new("Frame", bb)
  227. displayframe.ZIndex = 10
  228. displayframe.BackgroundTransparency = 1
  229. displayframe.Size = UDim2.new(1,0,1,0)
  230.  
  231. local name = Instance.new("TextLabel", displayframe)
  232. name.Name = "Name"
  233. name.ZIndex = 10
  234. name.Text = plr.Name
  235. name.Visible = true
  236. name.TextColor3 = Color3.new(170,0,0)
  237. name.BackgroundTransparency = 1
  238. name.Size = UDim2.new(1,0,10,0)
  239. name.Font = Enum.Font.SourceSansLight
  240. name.TextSize = 20
  241. name.TextStrokeTransparency = .5
  242.  
  243. end
  244.  
  245. end
  246.  
  247. xray.MouseButton1Down:connect(function()
  248. for i,v in pairs(Important.Players:GetChildren()) do
  249. CreateESP(v)
  250. end
  251. end)
  252.  
  253. stuffslabel.Name = "stuffslabel"
  254. stuffslabel.Parent = MainFrame
  255. stuffslabel.BackgroundColor3 = Color3.new(1, 1, 1)
  256. stuffslabel.BorderSizePixel = 0
  257. stuffslabel.Position = UDim2.new(0.717114568, 0, 0.265091866, 0)
  258. stuffslabel.Size = UDim2.new(0, 200, 0, 50)
  259. stuffslabel.Font = Enum.Font.Cartoon
  260. stuffslabel.Text = "Stuffs"
  261. stuffslabel.TextColor3 = Color3.new(0, 0, 0)
  262. stuffslabel.TextSize = 30
  263. stuffslabel.TextWrapped = true
  264.  
  265. wslabel.Name = "wslabel"
  266. wslabel.Parent = MainFrame
  267. wslabel.BackgroundColor3 = Color3.new(1, 1, 1)
  268. wslabel.BackgroundTransparency = 1
  269. wslabel.Position = UDim2.new(0.717114568, 0, 0.367454022, 0)
  270. wslabel.Size = UDim2.new(0, 200, 0, 20)
  271. wslabel.Font = Enum.Font.SourceSans
  272. wslabel.Text = "WalkSpeed"
  273. wslabel.TextColor3 = Color3.new(0, 0, 0)
  274. wslabel.TextSize = 14
  275.  
  276. jplabel.Name = "jplabel"
  277. jplabel.Parent = MainFrame
  278. jplabel.BackgroundColor3 = Color3.new(1, 1, 1)
  279. jplabel.BackgroundTransparency = 1
  280. jplabel.Position = UDim2.new(0.717114568, 0, 0.6404199, 0)
  281. jplabel.Size = UDim2.new(0, 200, 0, 20)
  282. jplabel.Font = Enum.Font.SourceSans
  283. jplabel.Text = "JumpPower"
  284. jplabel.TextColor3 = Color3.new(0, 0, 0)
  285. jplabel.TextSize = 14
  286.  
  287. jpnum.Name = "jpnum"
  288. jpnum.Parent = MainFrame
  289. jpnum.BackgroundColor3 = Color3.new(1, 1, 1)
  290. jpnum.BorderColor3 = Color3.new(0, 1, 1)
  291. jpnum.BorderSizePixel = 2
  292. jpnum.Position = UDim2.new(0.731258869, 0, 0.692913353, 0)
  293. jpnum.Size = UDim2.new(0, 179, 0, 28)
  294. jpnum.Font = Enum.Font.SourceSans
  295. jpnum.Text = "100"
  296. jpnum.TextColor3 = Color3.new(0, 0, 0)
  297. jpnum.TextSize = 14
  298.  
  299. walkspeedkeybind.Name = "walkspeedkeybind"
  300. walkspeedkeybind.Parent = MainFrame
  301. walkspeedkeybind.BackgroundColor3 = Color3.new(1, 1, 1)
  302. walkspeedkeybind.BorderColor3 = Color3.new(0, 1, 1)
  303. walkspeedkeybind.BorderSizePixel = 2
  304. walkspeedkeybind.Position = UDim2.new(0.732673287, 0, 0.419947505, 0)
  305. walkspeedkeybind.Size = UDim2.new(0, 179, 0, 28)
  306. walkspeedkeybind.Font = Enum.Font.SourceSans
  307. walkspeedkeybind.Text = "q"
  308. walkspeedkeybind.TextColor3 = Color3.new(0, 0, 0)
  309. walkspeedkeybind.TextSize = 14
  310.  
  311. walkspeednum.Name = "walkspeednum"
  312. walkspeednum.Parent = MainFrame
  313. walkspeednum.BackgroundColor3 = Color3.new(1, 1, 1)
  314. walkspeednum.BorderColor3 = Color3.new(0, 1, 1)
  315. walkspeednum.BorderSizePixel = 2
  316. walkspeednum.Position = UDim2.new(0.732673287, 0, 0.511811018, 0)
  317. walkspeednum.Size = UDim2.new(0, 179, 0, 28)
  318. walkspeednum.Font = Enum.Font.SourceSans
  319. walkspeednum.Text = "3"
  320. walkspeednum.TextColor3 = Color3.new(0, 0, 0)
  321. walkspeednum.TextSize = 14
  322.  
  323. openbtn.Name = "openbtn"
  324. openbtn.Parent = BoogaGUI
  325. openbtn.BackgroundColor3 = Color3.new(0.666667, 1, 1)
  326. openbtn.BorderColor3 = Color3.new(0, 0.756863, 0.756863)
  327. openbtn.BorderSizePixel = 10
  328. openbtn.Position = UDim2.new(0.0139705883, 0, 0.752079844, 0)
  329. openbtn.Size = UDim2.new(0, 200, 0, 75)
  330. openbtn.Font = Enum.Font.Cartoon
  331. openbtn.Text = "Open"
  332. openbtn.TextColor3 = Color3.new(1, 1, 1)
  333. openbtn.TextScaled = true
  334. openbtn.TextSize = 14
  335. openbtn.TextWrapped = true
  336. openbtn.MouseButton1Down:connect(function()
  337. if openbtn.Text == "Close" then
  338. MainFrame.Visible = false
  339. openbtn.Text = "Open"
  340. else
  341. MainFrame.Visible = true
  342. openbtn.Text = "Close"
  343. end
  344. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement