Advertisement
Guest User

Untitled

a guest
May 12th, 2019
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.45 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local open = Instance.new("Frame")
  3. local ob = Instance.new("TextButton")
  4. local main = Instance.new("Frame")
  5. local name = Instance.new("TextLabel")
  6. local made = Instance.new("TextLabel")
  7. local money = Instance.new("TextButton")
  8. local energy = Instance.new("TextButton")
  9. local hider = Instance.new("TextButton")
  10. local X = Instance.new("TextButton")
  11. local afkon = Instance.new("TextButton")
  12. local taunt = Instance.new("TextButton")
  13. local health = Instance.new("TextButton")
  14. local kill = Instance.new("TextButton")
  15. local gamepasson = Instance.new("TextButton")
  16. local ws = Instance.new("TextButton")
  17. local number = Instance.new("TextBox")
  18. local tele = Instance.new("TextButton")
  19. local username = Instance.new("TextBox")
  20. local noclipon = Instance.new("TextButton")
  21. local noclipoff = Instance.new("TextButton")
  22. local gamepassoff = Instance.new("TextButton")
  23. local afkoff = Instance.new("TextButton")
  24. local credits = Instance.new("TextLabel")
  25. --Properties:
  26. ScreenGui.Parent = game.CoreGui
  27.  
  28. open.Name = "open"
  29. open.Parent = ScreenGui
  30. open.BackgroundColor3 = Color3.new(0, 1, 0.164706)
  31. open.BorderColor3 = Color3.new(1, 1, 1)
  32. open.BorderSizePixel = 3
  33. open.Position = UDim2.new(0, 0, 0.474766344, 0)
  34. open.Size = UDim2.new(0, 81, 0, 20)
  35.  
  36. ob.Name = "ob"
  37. ob.Parent = open
  38. ob.BackgroundColor3 = Color3.new(0, 1, 0.164706)
  39. ob.BorderColor3 = Color3.new(1, 1, 1)
  40. ob.BorderSizePixel = 0
  41. ob.Size = UDim2.new(0, 81, 0, 20)
  42. ob.Font = Enum.Font.Fantasy
  43. ob.Text = "OPEN"
  44. ob.TextColor3 = Color3.new(0, 0, 0)
  45. ob.TextSize = 14
  46. ob.MouseButton1Down:connect(function()
  47. main.Visible = true
  48. open.Visible = false
  49. end)
  50.  
  51. main.Name = "main"
  52. main.Parent = ScreenGui
  53. main.BackgroundColor3 = Color3.new(0, 1, 0.164706)
  54. main.BorderColor3 = Color3.new(1, 1, 1)
  55. main.BorderSizePixel = 5
  56. main.Position = UDim2.new(0.25629124, 0, 0.138317764, 0)
  57. main.Size = UDim2.new(0, 324, 0, 386)
  58. main.Visible = false
  59. main.Active = true
  60. main.Draggable = true
  61.  
  62. name.Name = "name"
  63. name.Parent = main
  64. name.BackgroundColor3 = Color3.new(0, 1, 0.164706)
  65. name.BorderColor3 = Color3.new(1, 1, 1)
  66. name.BorderSizePixel = 3
  67. name.Position = UDim2.new(0.000210219994, 0, 0, 0)
  68. name.Size = UDim2.new(0, 323, 0, 24)
  69. name.Font = Enum.Font.Cartoon
  70. name.Text = "BloxHunt GUI"
  71. name.TextColor3 = Color3.new(0, 0, 0)
  72. name.TextSize = 19
  73.  
  74. made.Name = "made"
  75. made.Parent = main
  76. made.BackgroundColor3 = Color3.new(0, 1, 0.164706)
  77. made.BorderColor3 = Color3.new(1, 1, 1)
  78. made.BorderSizePixel = 3
  79. made.Position = UDim2.new(0.592482567, 0, 0.937165141, 0)
  80. made.Size = UDim2.new(0, 131, 0, 24)
  81. made.Font = Enum.Font.Cartoon
  82. made.Text = "Made by Vugam#0025"
  83. made.TextColor3 = Color3.new(0, 0, 0)
  84. made.TextSize = 14
  85.  
  86. money.Name = "money"
  87. money.Parent = main
  88. money.BackgroundColor3 = Color3.new(0, 1, 0.164706)
  89. money.BorderColor3 = Color3.new(1, 1, 1)
  90. money.BorderSizePixel = 2
  91. money.Position = UDim2.new(0, 0, 0.100487396, 0)
  92. money.Size = UDim2.new(0, 91, 0, 32)
  93. money.Font = Enum.Font.Fantasy
  94. money.Text = "Money"
  95. money.TextColor3 = Color3.new(0, 0, 0)
  96. money.TextSize = 14
  97. money.MouseButton1Down:connect(function()
  98. local coin = workspace.Lobby.LobbyObby.Token
  99. coin.CanCollide = false
  100. for i = 1,50,1 do
  101. wait()
  102. coin.CFrame = (game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame)
  103. end
  104. coin.CanCollide = true
  105. end)
  106.  
  107. energy.Name = "energy"
  108. energy.Parent = main
  109. energy.BackgroundColor3 = Color3.new(0, 1, 0.164706)
  110. energy.BorderColor3 = Color3.new(1, 1, 1)
  111. energy.BorderSizePixel = 2
  112. energy.Position = UDim2.new(0.358024687, 0, 0.231908411, 0)
  113. energy.Size = UDim2.new(0, 91, 0, 32)
  114. energy.Font = Enum.Font.Fantasy
  115. energy.Text = "Unlim Energy"
  116. energy.TextColor3 = Color3.new(0, 0, 0)
  117. energy.TextSize = 14
  118. energy.MouseButton1Down:connect(function()
  119. game.ReplicatedStorage.GameFunctions.StatChange:FireServer("Energy", 10000)
  120. end)
  121.  
  122. hider.Name = "hider"
  123. hider.Parent = main
  124. hider.BackgroundColor3 = Color3.new(0, 1, 0.164706)
  125. hider.BorderColor3 = Color3.new(1, 1, 1)
  126. hider.BorderSizePixel = 2
  127. hider.Position = UDim2.new(0, 0, 0.232732117, 0)
  128. hider.Size = UDim2.new(0, 91, 0, 32)
  129. hider.Font = Enum.Font.Fantasy
  130. hider.Text = "View Hider"
  131. hider.TextColor3 = Color3.new(0, 0, 0)
  132. hider.TextSize = 14
  133. hider.MouseButton1Click:Connect(function()
  134. players = game:GetService("Players")
  135. while wait(1) do
  136. for i, v in pairs(players:GetChildren()) do
  137. if v.Name ~= players.LocalPlayer.Name then
  138. if v.Character and v.Character:FindFirstChild("Object") then
  139. for j, k in pairs(v.Character.Object:GetChildren()) do
  140. if k:IsA("Part") then
  141. k.BrickColor = BrickColor.new("Hot pink")
  142. end
  143. end
  144. end
  145. end
  146. end
  147. end
  148. end)
  149.  
  150. X.Name = "X"
  151. X.Parent = main
  152. X.BackgroundColor3 = Color3.new(0, 1, 0.164706)
  153. X.BorderColor3 = Color3.new(1, 1, 1)
  154. X.BorderSizePixel = 2
  155. X.Position = UDim2.new(0.929168344, 0, 0, 0)
  156. X.Size = UDim2.new(0, 22, 0, 24)
  157. X.Font = Enum.Font.Fantasy
  158. X.Text = "X"
  159. X.TextColor3 = Color3.new(0, 0, 0)
  160. X.TextSize = 14
  161. X.MouseButton1Down:connect(function()
  162. open.Visible = true
  163. main.Visible = false
  164. end)
  165.  
  166. afkon.Name = "afkon"
  167. afkon.Parent = main
  168. afkon.BackgroundColor3 = Color3.new(0, 1, 0.164706)
  169. afkon.BorderColor3 = Color3.new(1, 1, 1)
  170. afkon.BorderSizePixel = 2
  171. afkon.Position = UDim2.new(0, 0, 0.357164294, 0)
  172. afkon.Size = UDim2.new(0, 91, 0, 32)
  173. afkon.Visible = false
  174. afkon.Font = Enum.Font.Fantasy
  175. afkon.Text = "AFK: ON"
  176. afkon.TextColor3 = Color3.new(0, 0, 0)
  177. afkon.TextSize = 14
  178. afkon.MouseButton1Down:connect(function()
  179. game.Players.LocalPlayer.Information.AFK.Value = false
  180. afkoff.Visible = true
  181. afkon.Visible = false
  182. end)
  183.  
  184. taunt.Name = "taunt"
  185. taunt.Parent = main
  186. taunt.BackgroundColor3 = Color3.new(0, 1, 0.164706)
  187. taunt.BorderColor3 = Color3.new(1, 1, 1)
  188. taunt.BorderSizePixel = 2
  189. taunt.Position = UDim2.new(0.358884186, 0, 0.100687623, 0)
  190. taunt.Size = UDim2.new(0, 91, 0, 32)
  191. taunt.Font = Enum.Font.Fantasy
  192. taunt.Text = "Spam Taunt"
  193. taunt.TextColor3 = Color3.new(0, 0, 0)
  194. taunt.TextSize = 14
  195. taunt.MouseButton1Click:Connect(function()
  196. while true do
  197. game.ReplicatedStorage.GameFunctions.Taunt:FireServer()
  198. wait()
  199. game.ReplicatedStorage.GameFunctions.Taunt:FireServer()
  200. wait()
  201. game.ReplicatedStorage.GameFunctions.Taunt:FireServer()
  202. wait()
  203. game.ReplicatedStorage.GameFunctions.Taunt:FireServer()
  204. wait()
  205. game.ReplicatedStorage.GameFunctions.Taunt:FireServer()
  206. wait()
  207. end
  208. end)
  209.  
  210. health.Name = "health"
  211. health.Parent = main
  212. health.BackgroundColor3 = Color3.new(0, 1, 0.164706)
  213. health.BorderColor3 = Color3.new(1, 1, 1)
  214. health.BorderSizePixel = 2
  215. health.Position = UDim2.new(0.719135821, 0, 0.230021074, 0)
  216. health.Size = UDim2.new(0, 91, 0, 32)
  217. health.Font = Enum.Font.Fantasy
  218. health.Text = "Unlim Health"
  219. health.TextColor3 = Color3.new(0, 0, 0)
  220. health.TextSize = 14
  221. health.MouseButton1Down:connect(function()
  222. game.ReplicatedStorage.GameFunctions.StatChange:FireServer("Health", 10000)
  223. end)
  224.  
  225. kill.Name = "kill"
  226. kill.Parent = main
  227. kill.BackgroundColor3 = Color3.new(0, 1, 0.164706)
  228. kill.BorderColor3 = Color3.new(1, 1, 1)
  229. kill.BorderSizePixel = 2
  230. kill.Position = UDim2.new(0.719135821, 0, 0.100487396, 0)
  231. kill.Size = UDim2.new(0, 91, 0, 32)
  232. kill.Font = Enum.Font.Fantasy
  233. kill.Text = "Autokill"
  234. kill.TextColor3 = Color3.new(0, 0, 0)
  235. kill.TextSize = 14
  236. kill.MouseButton1Down:connect(function()
  237. local shock = game.ReplicatedStorage.GameFunctions.Shock
  238. local refill = game.ReplicatedStorage.GameFunctions.StatChange
  239.  
  240. for _, v in pairs(game.Players:GetPlayers()) do
  241. if v.Character and v.Character:FindFirstChild'Object' then
  242. for i=1, 3 do
  243. shock:FireServer("Hit", v.Character)
  244. for i=1, 2 do
  245. refill:FireServer("Energy", 2)
  246. end
  247. end
  248. end
  249. end
  250. end)
  251.  
  252. gamepasson.Name = "gamepasson"
  253. gamepasson.Parent = main
  254. gamepasson.BackgroundColor3 = Color3.new(0, 1, 0.164706)
  255. gamepasson.BorderColor3 = Color3.new(1, 1, 1)
  256. gamepasson.BorderSizePixel = 2
  257. gamepasson.Position = UDim2.new(0.358024687, 0, 0.357164294, 0)
  258. gamepasson.Size = UDim2.new(0, 91, 0, 32)
  259. gamepasson.Visible = false
  260. gamepasson.Font = Enum.Font.Fantasy
  261. gamepasson.Text = "Gamepass: ON"
  262. gamepasson.TextColor3 = Color3.new(0, 0, 0)
  263. gamepasson.TextSize = 14
  264. gamepasson.MouseButton1Down:connect(function()
  265. game.Players.LocalPlayer.Information.Gamepasses.FaceChanger.Value = false
  266. game.Players.LocalPlayer.Information.Gamepasses.Vanish.Value = false
  267. game.Players.LocalPlayer.Information.Gamepasses.Cloner.Value = false
  268. game.Players.LocalPlayer.Information.Gamepasses.InstantHide.Value = false
  269. game.Players.LocalPlayer.Information.Gamepasses.Radar.Value = false
  270. game.Players.LocalPlayer.Information.Gamepasses.Walkspeed.Value = false
  271. game.Players.LocalPlayer.Information.Gamepasses.AutoSeeker.Value = false
  272. game.Players.LocalPlayer.Information.Gamepasses.SeekerPoints.Value = false
  273. gamepassoff.Visible = true
  274. gamepasson.Visible = false
  275. end)
  276.  
  277. ws.Name = "ws"
  278. ws.Parent = main
  279. ws.BackgroundColor3 = Color3.new(0, 1, 0.164706)
  280. ws.BorderColor3 = Color3.new(1, 1, 1)
  281. ws.BorderSizePixel = 2
  282. ws.Position = UDim2.new(0, 0, 0.618822336, 0)
  283. ws.Size = UDim2.new(0, 135, 0, 32)
  284. ws.Font = Enum.Font.Fantasy
  285. ws.Text = "Set WS"
  286. ws.TextColor3 = Color3.new(0, 0, 0)
  287. ws.TextSize = 12
  288. ws.MouseButton1Down:connect(function()
  289. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (number.Text) --What the walkspeed is as you click [SHIFT]
  290. end)
  291.  
  292. number.Name = "number"
  293. number.Parent = ws
  294. number.BackgroundColor3 = Color3.new(0, 1, 0.164706)
  295. number.BorderColor3 = Color3.new(1, 1, 1)
  296. number.BorderSizePixel = 2
  297. number.Position = UDim2.new(0, 0, -1.4375, 0)
  298. number.Size = UDim2.new(0, 135, 0, 37)
  299. number.Font = Enum.Font.SourceSans
  300. number.Text = "Number"
  301. number.TextColor3 = Color3.new(0, 0, 0)
  302. number.TextSize = 14
  303.  
  304. tele.Name = "tele"
  305. tele.Parent = main
  306. tele.BackgroundColor3 = Color3.new(0, 1, 0.164706)
  307. tele.BorderColor3 = Color3.new(1, 1, 1)
  308. tele.BorderSizePixel = 2
  309. tele.Position = UDim2.new(0.583333433, 0, 0.618822336, 0)
  310. tele.Size = UDim2.new(0, 135, 0, 32)
  311. tele.Font = Enum.Font.Fantasy
  312. tele.Text = "Teleport"
  313. tele.TextColor3 = Color3.new(0, 0, 0)
  314. tele.TextSize = 14
  315. tele.MouseButton1Click:Connect(function()
  316. getplr = function(plxr)
  317. for i, v in pairs(game.Players:GetPlayers()) do
  318. if string.find(v.Name, plxr) then
  319. return v
  320. elseif v.Name:sub(1, plxr:len()):lower()== plxr:lower() then
  321. return v
  322. end
  323. end
  324. end
  325. local plr = getplr(username.Text)
  326. game.Players.LocalPlayer.Character:MoveTo(plr.Character.Torso.Position)
  327. end)
  328.  
  329. username.Name = "username"
  330. username.Parent = tele
  331. username.BackgroundColor3 = Color3.new(0, 1, 0.164706)
  332. username.BorderColor3 = Color3.new(1, 1, 1)
  333. username.BorderSizePixel = 2
  334. username.Position = UDim2.new(0, 0, -1.4375, 0)
  335. username.Size = UDim2.new(0, 135, 0, 37)
  336. username.Font = Enum.Font.SourceSans
  337. username.Text = "Username"
  338. username.TextColor3 = Color3.new(0, 0, 0)
  339. username.TextSize = 14
  340.  
  341. noclipon.Name = "noclipon"
  342. noclipon.Parent = main
  343. noclipon.BackgroundColor3 = Color3.new(0, 1, 0.164706)
  344. noclipon.BorderColor3 = Color3.new(1, 1, 1)
  345. noclipon.BorderSizePixel = 2
  346. noclipon.Position = UDim2.new(0.719135821, 0, 0.356964082, 0)
  347. noclipon.Size = UDim2.new(0, 91, 0, 32)
  348. noclipon.Visible = false
  349. noclipon.Font = Enum.Font.Fantasy
  350. noclipon.Text = "Noclip: ON"
  351. noclipon.TextColor3 = Color3.new(0, 0, 0)
  352. noclipon.TextSize = 14
  353. noclipon.MouseButton1Click:Connect(function()
  354. noclipoff.Visible = true
  355. noclipon.Visible = false
  356. local noclip = true char = game.Players.LocalPlayer.Character while true do if noclip == true then for _,v in pairs(char:children()) do pcall(function() if v.className == "Part" then v.CanCollide = true elseif v.ClassName == "Model" then v.Head.CanCollide = true end end) end end game:service("RunService").Stepped:wait() end
  357. end)
  358.  
  359. noclipoff.Name = "noclipoff"
  360. noclipoff.Parent = main
  361. noclipoff.BackgroundColor3 = Color3.new(1, 0, 0)
  362. noclipoff.BorderColor3 = Color3.new(1, 1, 1)
  363. noclipoff.BorderSizePixel = 2
  364. noclipoff.Position = UDim2.new(0.719135821, 0, 0.356964082, 0)
  365. noclipoff.Size = UDim2.new(0, 91, 0, 32)
  366. noclipoff.Font = Enum.Font.Fantasy
  367. noclipoff.Text = "Noclip: OFF"
  368. noclipoff.TextColor3 = Color3.new(0, 0, 0)
  369. noclipoff.TextSize = 14
  370. noclipoff.MouseButton1Click:Connect(function()
  371. noclipon.Visible = true
  372. noclipoff.Visible = false
  373. local noclip = true char = game.Players.LocalPlayer.Character while true do if noclip == true then for _,v in pairs(char:children()) do pcall(function() if v.className == "Part" then v.CanCollide = false elseif v.ClassName == "Model" then v.Head.CanCollide = false end end) end end game:service("RunService").Stepped:wait() end
  374. end)
  375.  
  376. gamepassoff.Name = "gamepassoff"
  377. gamepassoff.Parent = main
  378. gamepassoff.BackgroundColor3 = Color3.new(1, 0, 0)
  379. gamepassoff.BorderColor3 = Color3.new(1, 1, 1)
  380. gamepassoff.BorderSizePixel = 2
  381. gamepassoff.Position = UDim2.new(0.358024687, 0, 0.357164294, 0)
  382. gamepassoff.Size = UDim2.new(0, 91, 0, 32)
  383. gamepassoff.Font = Enum.Font.Fantasy
  384. gamepassoff.Text = "Gamepass: OFF"
  385. gamepassoff.TextColor3 = Color3.new(0, 0, 0)
  386. gamepassoff.TextSize = 14
  387. gamepassoff.MouseButton1Click:Connect(function()
  388. game.Players.LocalPlayer.Information.Gamepasses.FaceChanger.Value = true
  389. game.Players.LocalPlayer.Information.Gamepasses.Vanish.Value = true
  390. game.Players.LocalPlayer.Information.Gamepasses.Cloner.Value = true
  391. game.Players.LocalPlayer.Information.Gamepasses.InstantHide.Value = true
  392. game.Players.LocalPlayer.Information.Gamepasses.Radar.Value = true
  393. game.Players.LocalPlayer.Information.Gamepasses.Walkspeed.Value = true
  394. game.Players.LocalPlayer.Information.Gamepasses.AutoSeeker.Value = true
  395. game.Players.LocalPlayer.Information.Gamepasses.SeekerPoints.Value = true
  396. gamepasson.Visible = true
  397. gamepassoff.Visible = false
  398. end)
  399.  
  400. afkoff.Name = "afkoff"
  401. afkoff.Parent = main
  402. afkoff.BackgroundColor3 = Color3.new(1, 0, 0)
  403. afkoff.BorderColor3 = Color3.new(1, 1, 1)
  404. afkoff.BorderSizePixel = 2
  405. afkoff.Position = UDim2.new(0, 0, 0.357164294, 0)
  406. afkoff.Size = UDim2.new(0, 91, 0, 32)
  407. afkoff.Font = Enum.Font.Fantasy
  408. afkoff.Text = "AFK: OFF"
  409. afkoff.TextColor3 = Color3.new(0, 0, 0)
  410. afkoff.TextSize = 14
  411. afkoff.MouseButton1Click:connect(function()
  412. game.Players.LocalPlayer.Information.AFK.Value = true
  413. afkon.Visible = true
  414. afkoff.Visible = false
  415. end)
  416.  
  417. credits.Name = "credits"
  418. credits.Parent = main
  419. credits.BackgroundColor3 = Color3.new(0, 1, 0.164706)
  420. credits.BorderColor3 = Color3.new(1, 1, 1)
  421. credits.BorderSizePixel = 3
  422. credits.Position = UDim2.new(-0.000110002235, 0, 0.937165141, 0)
  423. credits.Size = UDim2.new(0, 131, 0, 24)
  424. credits.Font = Enum.Font.Cartoon
  425. credits.Text = "Credits: Psykek "
  426. credits.TextColor3 = Color3.new(0, 0, 0)
  427. credits.TextSize = 14
  428. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement