Advertisement
MajinTHO

subscribe lol

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