Advertisement
toonrun123

Block Hunt Gui

Nov 17th, 2018
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 18.50 KB | None | 0 0
  1. --if you Found Bug Told me toonrun123#8729
  2. -- Object:
  3. local BlockHuntGui = Instance.new("ScreenGui")
  4. local Main = Instance.new("Frame")
  5. local Namemain = Instance.new("TextLabel")
  6. local GetCoinLoop = Instance.new("TextButton")
  7. local ShowPlayerProps = Instance.new("TextButton")
  8. local God = Instance.new("TextButton")
  9. local Energy = Instance.new("TextButton")
  10. local NormalGravity = Instance.new("TextButton")
  11. local LowGravity = Instance.new("TextButton")
  12. local GoCoin = Instance.new("TextButton")
  13. local Note = Instance.new("Frame")
  14. local CloseNote = Instance.new("TextButton")
  15. local NoteAns = Instance.new("TextLabel")
  16. local NoteAns2 = Instance.new("TextLabel")
  17. local NoteAns3 = Instance.new("TextLabel")
  18. local NoteMain = Instance.new("TextLabel")
  19. local GamePassName = Instance.new("TextLabel")
  20. local WalkSpeed = Instance.new("TextButton")
  21. local InstantHide = Instance.new("TextButton")
  22. local Radar = Instance.new("TextButton")
  23. local FaceChanger = Instance.new("TextButton")
  24. local Cloner = Instance.new("TextButton")
  25. local SeekerPoints = Instance.new("TextButton")
  26. local AutoSeeker = Instance.new("TextButton")
  27. local Vanish = Instance.new("TextButton")
  28. local HideName = Instance.new("TextLabel")
  29. local SeekerName = Instance.new("TextLabel")
  30. local Bar1 = Instance.new("Frame")
  31. local InsertScripts = Instance.new("TextLabel")
  32. local Shop = Instance.new("TextButton")
  33. local Spawn = Instance.new("TextButton")
  34. --Functions:
  35. BlockHuntGui.Name = "Block Hunt Gui"
  36. BlockHuntGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  37. BlockHuntGui.ResetOnSpawn = false
  38.  
  39. Main.Name = "Main"
  40. Main.Parent = BlockHuntGui
  41. Main.Active = true
  42. Main.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  43. Main.BackgroundTransparency = 0.5
  44. Main.BorderSizePixel = 0
  45. Main.Position = UDim2.new(0.108870983, 0, 0.187697142, 0)
  46. Main.Selectable = true
  47. Main.Size = UDim2.new(0, 597, 0, 464)
  48.  
  49. Namemain.Name = "Namemain"
  50. Namemain.Parent = Main
  51. Namemain.BackgroundColor3 = Color3.new(1, 1, 1)
  52. Namemain.BackgroundTransparency = 1
  53. Namemain.BorderSizePixel = 0
  54. Namemain.Position = UDim2.new(0.0198157355, 0, -0.00124554185, 0)
  55. Namemain.Size = UDim2.new(0, 184, 0, 50)
  56. Namemain.Font = Enum.Font.SourceSans
  57. Namemain.Text = "Blox Hunt Gui"
  58. Namemain.TextColor3 = Color3.new(1, 1, 1)
  59. Namemain.TextSize = 30
  60. Namemain.TextStrokeColor3 = Color3.new(1, 1, 1)
  61. Namemain.TextStrokeTransparency = 0
  62.  
  63. GetCoinLoop.Name = "Get Coin Loop"
  64. GetCoinLoop.Parent = Main
  65. GetCoinLoop.BackgroundColor3 = Color3.new(1, 1, 1)
  66. GetCoinLoop.BackgroundTransparency = 1
  67. GetCoinLoop.BorderSizePixel = 0
  68. GetCoinLoop.Position = UDim2.new(0.024937395, 0, 0.1044342, 0)
  69. GetCoinLoop.Size = UDim2.new(0, 183, 0, 50)
  70. GetCoinLoop.Font = Enum.Font.SourceSans
  71. GetCoinLoop.Text = "Get Coin Loop"
  72. GetCoinLoop.TextColor3 = Color3.new(1, 1, 1)
  73. GetCoinLoop.TextSize = 30
  74. GetCoinLoop.TextStrokeColor3 = Color3.new(1, 1, 1)
  75. GetCoinLoop.TextStrokeTransparency = 0
  76. GetCoinLoop.MouseButton1Down:connect(function()
  77.     for i = 1, 1000 do
  78. game.ReplicatedStorage.GameFunctions.Taunt:FireServer()
  79. wait()
  80. end
  81. end)
  82.  
  83. ShowPlayerProps.Name = "ShowPlayerProps"
  84. ShowPlayerProps.Parent = Main
  85. ShowPlayerProps.BackgroundColor3 = Color3.new(1, 1, 1)
  86. ShowPlayerProps.BackgroundTransparency = 1
  87. ShowPlayerProps.BorderSizePixel = 0
  88. ShowPlayerProps.Position = UDim2.new(0.024937395, 0, 0.210212007, 0)
  89. ShowPlayerProps.Size = UDim2.new(0, 183, 0, 50)
  90. ShowPlayerProps.Font = Enum.Font.SourceSans
  91. ShowPlayerProps.Text = "ShowPlayerProps"
  92. ShowPlayerProps.TextColor3 = Color3.new(1, 1, 1)
  93. ShowPlayerProps.TextSize = 30
  94. ShowPlayerProps.TextStrokeColor3 = Color3.new(1, 1, 1)
  95. ShowPlayerProps.TextStrokeTransparency = 0
  96. ShowPlayerProps.MouseButton1Down:connect(function()
  97. players = game:GetService("Players")
  98. while wait(1) do
  99. for i, v in pairs(players:GetChildren()) do
  100. if v.Name ~= players.LocalPlayer.Name then
  101. if v.Character and v.Character:FindFirstChild("Object") then
  102. for j, k in pairs(v.Character.Object:GetChildren()) do
  103. if k:IsA("Part") then
  104. k.BrickColor = BrickColor.new("Really red")
  105. end
  106. end
  107. end
  108. end
  109. end
  110. end
  111. end)
  112.  
  113. God.Name = "God"
  114. God.Parent = Main
  115. God.BackgroundColor3 = Color3.new(1, 1, 1)
  116. God.BackgroundTransparency = 1
  117. God.BorderSizePixel = 0
  118. God.Position = UDim2.new(0.024937395, 0, 0.315989792, 0)
  119. God.Size = UDim2.new(0, 183, 0, 50)
  120. God.Font = Enum.Font.SourceSans
  121. God.Text = "God"
  122. God.TextColor3 = Color3.new(1, 1, 1)
  123. God.TextSize = 30
  124. God.TextStrokeColor3 = Color3.new(1, 1, 1)
  125. God.TextStrokeTransparency = 0
  126. God.MouseButton1Down:connect(function()
  127.     game.ReplicatedStorage.GameFunctions.StatChange:FireServer("Health", 2e18)
  128. end)
  129.  
  130. Energy.Name = "Energy "
  131. Energy.Parent = Main
  132. Energy.BackgroundColor3 = Color3.new(1, 1, 1)
  133. Energy.BackgroundTransparency = 1
  134. Energy.BorderSizePixel = 0
  135. Energy.Position = UDim2.new(0.024937395, 0, 0.421767622, 0)
  136. Energy.Size = UDim2.new(0, 183, 0, 50)
  137. Energy.Font = Enum.Font.SourceSans
  138. Energy.Text = "Energy "
  139. Energy.TextColor3 = Color3.new(1, 1, 1)
  140. Energy.TextSize = 30
  141. Energy.TextStrokeColor3 = Color3.new(1, 1, 1)
  142. Energy.TextStrokeTransparency = 0
  143. Energy.MouseButton1Down:connect(function()
  144.     game.ReplicatedStorage.GameFunctions.StatChange:FireServer("Energy", 2e18)
  145. end)
  146.  
  147. NormalGravity.Name = "Normal Gravity"
  148. NormalGravity.Parent = Main
  149. NormalGravity.BackgroundColor3 = Color3.new(1, 1, 1)
  150. NormalGravity.BackgroundTransparency = 1
  151. NormalGravity.BorderSizePixel = 0
  152. NormalGravity.Position = UDim2.new(0.024937395, 0, 0.529526234, 0)
  153. NormalGravity.Size = UDim2.new(0, 183, 0, 50)
  154. NormalGravity.Font = Enum.Font.SourceSans
  155. NormalGravity.Text = "Normal Gravity"
  156. NormalGravity.TextColor3 = Color3.new(1, 1, 1)
  157. NormalGravity.TextSize = 30
  158. NormalGravity.TextStrokeColor3 = Color3.new(1, 1, 1)
  159. NormalGravity.TextStrokeTransparency = 0
  160. NormalGravity.MouseButton1Down:connect(function()
  161.         game.Workspace.Gravity = 196.2
  162. end)
  163.  
  164. LowGravity.Name = "Low Gravity"
  165. LowGravity.Parent = Main
  166. LowGravity.BackgroundColor3 = Color3.new(1, 1, 1)
  167. LowGravity.BackgroundTransparency = 1
  168. LowGravity.BorderSizePixel = 0
  169. LowGravity.Position = UDim2.new(0.024937395, 0, 0.637284875, 0)
  170. LowGravity.Size = UDim2.new(0, 183, 0, 50)
  171. LowGravity.Font = Enum.Font.SourceSans
  172. LowGravity.Text = "Low Gravity"
  173. LowGravity.TextColor3 = Color3.new(1, 1, 1)
  174. LowGravity.TextSize = 30
  175. LowGravity.TextStrokeColor3 = Color3.new(1, 1, 1)
  176. LowGravity.TextStrokeTransparency = 0
  177. LowGravity.MouseButton1Down:connect(function()
  178.         game.Workspace.Gravity = 80
  179. end)
  180.  
  181. GoCoin.Name = "Go Coin"
  182. GoCoin.Parent = Main
  183. GoCoin.BackgroundColor3 = Color3.new(1, 1, 1)
  184. GoCoin.BackgroundTransparency = 1
  185. GoCoin.BorderSizePixel = 0
  186. GoCoin.Position = UDim2.new(0.024937395, 0, 0.745043516, 0)
  187. GoCoin.Size = UDim2.new(0, 183, 0, 50)
  188. GoCoin.Font = Enum.Font.SourceSans
  189. GoCoin.Text = "Go Coin"
  190. GoCoin.TextColor3 = Color3.new(1, 1, 1)
  191. GoCoin.TextSize = 30
  192. GoCoin.TextStrokeColor3 = Color3.new(1, 1, 1)
  193. GoCoin.TextStrokeTransparency = 0
  194. GoCoin.MouseButton1Down:connect(function()
  195.         game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-96.0669708, 61.4000626, 147.593307))
  196. end)
  197.  
  198. Note.Name = "Note"
  199. Note.Parent = Main
  200. Note.Active = true
  201. Note.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  202. Note.BackgroundTransparency = 0.5
  203. Note.BorderSizePixel = 0
  204. Note.Position = UDim2.new(1.01034749, 0, -0.00310016493, 0)
  205. Note.Selectable = true
  206. Note.Size = UDim2.new(0, 199, 0, 122)
  207.  
  208. CloseNote.Name = "CloseNote"
  209. CloseNote.Parent = Note
  210. CloseNote.BackgroundColor3 = Color3.new(1, 1, 1)
  211. CloseNote.BackgroundTransparency = 1
  212. CloseNote.BorderSizePixel = 0
  213. CloseNote.Position = UDim2.new(0.837833226, 0, 0.00607349351, 0)
  214. CloseNote.Size = UDim2.new(0, 32, 0, 26)
  215. CloseNote.Font = Enum.Font.SourceSans
  216. CloseNote.Text = "X"
  217. CloseNote.TextColor3 = Color3.new(1, 1, 1)
  218. CloseNote.TextSize = 30
  219. CloseNote.TextStrokeColor3 = Color3.new(1, 1, 1)
  220. CloseNote.TextStrokeTransparency = 0
  221. CloseNote.MouseButton1Down:connect(function()
  222.     NoteMain.Visible = false
  223.     CloseNote.Visible = false
  224.     Note.Visible = false
  225.     NoteAns.Visible = false
  226.     NoteAns2.Visible = false
  227.     NoteAns3.Visible = false
  228. end)
  229.  
  230. NoteAns.Name = "Note Ans"
  231. NoteAns.Parent = Note
  232. NoteAns.BackgroundColor3 = Color3.new(1, 1, 1)
  233. NoteAns.BackgroundTransparency = 1
  234. NoteAns.BorderSizePixel = 0
  235. NoteAns.Position = UDim2.new(0.0373941064, 0, 0.210526645, 0)
  236. NoteAns.Size = UDim2.new(0, 184, 0, 32)
  237. NoteAns.Font = Enum.Font.SourceSans
  238. NoteAns.Text = "If you use ShowPlayerProp"
  239. NoteAns.TextColor3 = Color3.new(1, 1, 1)
  240. NoteAns.TextSize = 20
  241. NoteAns.TextStrokeColor3 = Color3.new(1, 1, 1)
  242. NoteAns.TextStrokeTransparency = 0
  243.  
  244. NoteAns2.Name = "Note Ans2"
  245. NoteAns2.Parent = Note
  246. NoteAns2.BackgroundColor3 = Color3.new(1, 1, 1)
  247. NoteAns2.BackgroundTransparency = 1
  248. NoteAns2.BorderSizePixel = 0
  249. NoteAns2.Position = UDim2.new(0.0373941138, 0, 0.468016803, 0)
  250. NoteAns2.Size = UDim2.new(0, 184, 0, 22)
  251. NoteAns2.Font = Enum.Font.SourceSans
  252. NoteAns2.Text = "Prop: Really Red"
  253. NoteAns2.TextColor3 = Color3.new(1, 1, 1)
  254. NoteAns2.TextSize = 20
  255. NoteAns2.TextStrokeColor3 = Color3.new(1, 1, 1)
  256. NoteAns2.TextStrokeTransparency = 0
  257.  
  258. NoteAns3.Name = "Note Ans3"
  259. NoteAns3.Parent = Note
  260. NoteAns3.BackgroundColor3 = Color3.new(1, 1, 1)
  261. NoteAns3.BackgroundTransparency = 1
  262. NoteAns3.BorderSizePixel = 0
  263. NoteAns3.Position = UDim2.new(0.0373941027, 0, 0.646578074, 0)
  264. NoteAns3.Size = UDim2.new(0, 184, 0, 22)
  265. NoteAns3.Font = Enum.Font.SourceSans
  266. NoteAns3.Text = "------"
  267. NoteAns3.TextColor3 = Color3.new(1, 1, 1)
  268. NoteAns3.TextSize = 20
  269. NoteAns3.TextStrokeColor3 = Color3.new(1, 1, 1)
  270. NoteAns3.TextStrokeTransparency = 0
  271.  
  272. NoteMain.Name = "NoteMain"
  273. NoteMain.Parent = Note
  274. NoteMain.BackgroundColor3 = Color3.new(1, 1, 1)
  275. NoteMain.BackgroundTransparency = 1
  276. NoteMain.BorderSizePixel = 0
  277. NoteMain.Position = UDim2.new(0.173072398, 0, 0.00910624489, 0)
  278. NoteMain.Size = UDim2.new(0, 129, 0, 25)
  279. NoteMain.Font = Enum.Font.SourceSans
  280. NoteMain.Text = "Note"
  281. NoteMain.TextColor3 = Color3.new(1, 1, 1)
  282. NoteMain.TextSize = 30
  283. NoteMain.TextStrokeColor3 = Color3.new(1, 1, 1)
  284. NoteMain.TextStrokeTransparency = 0
  285.  
  286. GamePassName.Name = "GamePass Name"
  287. GamePassName.Parent = Main
  288. GamePassName.BackgroundColor3 = Color3.new(1, 1, 1)
  289. GamePassName.BackgroundTransparency = 1
  290. GamePassName.BorderSizePixel = 0
  291. GamePassName.Position = UDim2.new(0.50808084, 0, -0.00124554185, 0)
  292. GamePassName.Size = UDim2.new(0, 184, 0, 50)
  293. GamePassName.Font = Enum.Font.SourceSans
  294. GamePassName.Text = "GamePass"
  295. GamePassName.TextColor3 = Color3.new(1, 1, 1)
  296. GamePassName.TextSize = 30
  297. GamePassName.TextStrokeColor3 = Color3.new(1, 1, 1)
  298. GamePassName.TextStrokeTransparency = 0
  299.  
  300. WalkSpeed.Name = "WalkSpeed"
  301. WalkSpeed.Parent = Main
  302. WalkSpeed.BackgroundColor3 = Color3.new(1, 1, 1)
  303. WalkSpeed.BackgroundTransparency = 1
  304. WalkSpeed.BorderSizePixel = 0
  305. WalkSpeed.Position = UDim2.new(0.370005667, 0, 0.104434192, 0)
  306. WalkSpeed.Size = UDim2.new(0, 183, 0, 50)
  307. WalkSpeed.Font = Enum.Font.SourceSans
  308. WalkSpeed.Text = "Walk Speed"
  309. WalkSpeed.TextColor3 = Color3.new(1, 1, 1)
  310. WalkSpeed.TextSize = 30
  311. WalkSpeed.TextStrokeColor3 = Color3.new(1, 1, 1)
  312. WalkSpeed.TextStrokeTransparency = 0
  313. WalkSpeed.MouseButton1Down:connect(function()
  314.     game.Players.LocalPlayer.Information.Gamepasses.Walkspeed.Value = true
  315. end)
  316.  
  317. InstantHide.Name = "Instant Hide"
  318. InstantHide.Parent = Main
  319. InstantHide.BackgroundColor3 = Color3.new(1, 1, 1)
  320. InstantHide.BackgroundTransparency = 1
  321. InstantHide.BorderSizePixel = 0
  322. InstantHide.Position = UDim2.new(0.675354123, 0, 0.31779629, 0)
  323. InstantHide.Size = UDim2.new(0, 183, 0, 50)
  324. InstantHide.Font = Enum.Font.SourceSans
  325. InstantHide.Text = "Instant Hide"
  326. InstantHide.TextColor3 = Color3.new(1, 1, 1)
  327. InstantHide.TextSize = 30
  328. InstantHide.TextStrokeColor3 = Color3.new(1, 1, 1)
  329. InstantHide.TextStrokeTransparency = 0
  330. InstantHide.MouseButton1Down:connect(function()
  331.     game.Players.LocalPlayer.Information.Gamepasses.InstantHide.Value = true
  332. end)
  333.  
  334. Radar.Name = "Radar"
  335. Radar.Parent = Main
  336. Radar.BackgroundColor3 = Color3.new(1, 1, 1)
  337. Radar.BackgroundTransparency = 1
  338. Radar.BorderSizePixel = 0
  339. Radar.Position = UDim2.new(0.370005637, 0, 0.531158328, 0)
  340. Radar.Size = UDim2.new(0, 183, 0, 50)
  341. Radar.Font = Enum.Font.SourceSans
  342. Radar.Text = "Radar"
  343. Radar.TextColor3 = Color3.new(1, 1, 1)
  344. Radar.TextSize = 30
  345. Radar.TextStrokeColor3 = Color3.new(1, 1, 1)
  346. Radar.TextStrokeTransparency = 0
  347. Radar.MouseButton1Down:connect(function()
  348.     game.Players.LocalPlayer.Information.Gamepasses.Radar.Value = true
  349. end)
  350.  
  351. FaceChanger.Name = "Face Changer"
  352. FaceChanger.Parent = Main
  353. FaceChanger.BackgroundColor3 = Color3.new(1, 1, 1)
  354. FaceChanger.BackgroundTransparency = 1
  355. FaceChanger.BorderSizePixel = 0
  356. FaceChanger.Position = UDim2.new(0.672004044, 0, 0.104434222, 0)
  357. FaceChanger.Size = UDim2.new(0, 183, 0, 50)
  358. FaceChanger.Font = Enum.Font.SourceSans
  359. FaceChanger.Text = "Face Changer"
  360. FaceChanger.TextColor3 = Color3.new(1, 1, 1)
  361. FaceChanger.TextSize = 30
  362. FaceChanger.TextStrokeColor3 = Color3.new(1, 1, 1)
  363. FaceChanger.TextStrokeTransparency = 0
  364. FaceChanger.MouseButton1Down:connect(function()
  365.     game.Players.LocalPlayer.Information.Gamepasses.FaceChanger.Value = true
  366. end)
  367.  
  368. Cloner.Name = "Cloner"
  369. Cloner.Parent = Main
  370. Cloner.BackgroundColor3 = Color3.new(1, 1, 1)
  371. Cloner.BackgroundTransparency = 1
  372. Cloner.BorderSizePixel = 0
  373. Cloner.Position = UDim2.new(0.370005637, 0, 0.31779635, 0)
  374. Cloner.Size = UDim2.new(0, 183, 0, 50)
  375. Cloner.Font = Enum.Font.SourceSans
  376. Cloner.Text = "Clone"
  377. Cloner.TextColor3 = Color3.new(1, 1, 1)
  378. Cloner.TextSize = 30
  379. Cloner.TextStrokeColor3 = Color3.new(1, 1, 1)
  380. Cloner.TextStrokeTransparency = 0
  381. Cloner.MouseButton1Down:connect(function()
  382.     game.Players.LocalPlayer.Information.Gamepasses.Cloner.Value = true
  383. end)
  384.  
  385. SeekerPoints.Name = "Seeker Points"
  386. SeekerPoints.Parent = Main
  387. SeekerPoints.BackgroundColor3 = Color3.new(1, 1, 1)
  388. SeekerPoints.BackgroundTransparency = 1
  389. SeekerPoints.BorderSizePixel = 0
  390. SeekerPoints.Position = UDim2.new(0.675354123, 0, 0.531158328, 0)
  391. SeekerPoints.Size = UDim2.new(0, 183, 0, 50)
  392. SeekerPoints.Font = Enum.Font.SourceSans
  393. SeekerPoints.Text = "Seeker Points"
  394. SeekerPoints.TextColor3 = Color3.new(1, 1, 1)
  395. SeekerPoints.TextSize = 30
  396. SeekerPoints.TextStrokeColor3 = Color3.new(1, 1, 1)
  397. SeekerPoints.TextStrokeTransparency = 0
  398. SeekerPoints.MouseButton1Down:connect(function()
  399.     game.Players.LocalPlayer.Information.Gamepasses.SeekerPoints.Value = true
  400. end)
  401.  
  402. AutoSeeker.Name = "Auto Seeker"
  403. AutoSeeker.Parent = Main
  404. AutoSeeker.BackgroundColor3 = Color3.new(1, 1, 1)
  405. AutoSeeker.BackgroundTransparency = 1
  406. AutoSeeker.BorderSizePixel = 0
  407. AutoSeeker.Position = UDim2.new(0.370005637, 0, 0.636761785, 0)
  408. AutoSeeker.Size = UDim2.new(0, 183, 0, 50)
  409. AutoSeeker.Font = Enum.Font.SourceSans
  410. AutoSeeker.Text = "Auto Seeker"
  411. AutoSeeker.TextColor3 = Color3.new(1, 1, 1)
  412. AutoSeeker.TextSize = 30
  413. AutoSeeker.TextStrokeColor3 = Color3.new(1, 1, 1)
  414. AutoSeeker.TextStrokeTransparency = 0
  415. AutoSeeker.MouseButton1Down:connect(function()
  416.     game.Players.LocalPlayer.Information.Gamepasses.AutoSeeker.Value = true
  417. end)
  418.  
  419. Vanish.Name = "Vanish"
  420. Vanish.Parent = Main
  421. Vanish.BackgroundColor3 = Color3.new(1, 1, 1)
  422. Vanish.BackgroundTransparency = 1
  423. Vanish.BorderSizePixel = 0
  424. Vanish.Position = UDim2.new(0.677029133, 0, 0.636761785, 0)
  425. Vanish.Size = UDim2.new(0, 183, 0, 50)
  426. Vanish.Font = Enum.Font.SourceSans
  427. Vanish.Text = "Vanish"
  428. Vanish.TextColor3 = Color3.new(1, 1, 1)
  429. Vanish.TextSize = 30
  430. Vanish.TextStrokeColor3 = Color3.new(1, 1, 1)
  431. Vanish.TextStrokeTransparency = 0
  432. Vanish.MouseButton1Down:connect(function()
  433.     game.Players.LocalPlayer.Information.Gamepasses.Vanish.Value = true
  434. end)
  435.  
  436. HideName.Name = "Hide Name"
  437. HideName.Parent = Main
  438. HideName.BackgroundColor3 = Color3.new(1, 1, 1)
  439. HideName.BackgroundTransparency = 1
  440. HideName.BorderSizePixel = 0
  441. HideName.Position = UDim2.new(0.50808084, 0, 0.212116539, 0)
  442. HideName.Size = UDim2.new(0, 184, 0, 50)
  443. HideName.Font = Enum.Font.SourceSans
  444. HideName.Text = "Hide "
  445. HideName.TextColor3 = Color3.new(1, 1, 1)
  446. HideName.TextSize = 30
  447. HideName.TextStrokeColor3 = Color3.new(1, 1, 1)
  448. HideName.TextStrokeTransparency = 0
  449.  
  450. SeekerName.Name = "Seeker Name"
  451. SeekerName.Parent = Main
  452. SeekerName.BackgroundColor3 = Color3.new(1, 1, 1)
  453. SeekerName.BackgroundTransparency = 1
  454. SeekerName.BorderSizePixel = 0
  455. SeekerName.Position = UDim2.new(0.50808084, 0, 0.425478607, 0)
  456. SeekerName.Size = UDim2.new(0, 184, 0, 50)
  457. SeekerName.Font = Enum.Font.SourceSans
  458. SeekerName.Text = "Seeker"
  459. SeekerName.TextColor3 = Color3.new(1, 1, 1)
  460. SeekerName.TextSize = 30
  461. SeekerName.TextStrokeColor3 = Color3.new(1, 1, 1)
  462. SeekerName.TextStrokeTransparency = 0
  463.  
  464. Bar1.Name = "Bar1"
  465. Bar1.Parent = Main
  466. Bar1.Active = true
  467. Bar1.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  468. Bar1.BackgroundTransparency = 0.5
  469. Bar1.BorderSizePixel = 0
  470. Bar1.Position = UDim2.new(0.362106234, 0, 0.0012101531, 0)
  471. Bar1.Selectable = true
  472. Bar1.Size = UDim2.new(0, 4, 0, 463)
  473.  
  474. InsertScripts.Name = "Insert Scripts"
  475. InsertScripts.Parent = Main
  476. InsertScripts.BackgroundColor3 = Color3.new(1, 1, 1)
  477. InsertScripts.BackgroundTransparency = 1
  478. InsertScripts.BorderSizePixel = 0
  479. InsertScripts.Position = UDim2.new(0.50808084, 0, 0.744444072, 0)
  480. InsertScripts.Size = UDim2.new(0, 184, 0, 50)
  481. InsertScripts.Font = Enum.Font.SourceSans
  482. InsertScripts.Text = "Insert Scripts"
  483. InsertScripts.TextColor3 = Color3.new(1, 1, 1)
  484. InsertScripts.TextSize = 30
  485. InsertScripts.TextStrokeColor3 = Color3.new(1, 1, 1)
  486. InsertScripts.TextStrokeTransparency = 0
  487.  
  488. Shop.Name = "Shop"
  489. Shop.Parent = Main
  490. Shop.BackgroundColor3 = Color3.new(1, 1, 1)
  491. Shop.BackgroundTransparency = 1
  492. Shop.BorderSizePixel = 0
  493. Shop.Position = UDim2.new(0.0249373913, 0, 0.852802157, 0)
  494. Shop.Size = UDim2.new(0, 183, 0, 50)
  495. Shop.Font = Enum.Font.SourceSans
  496. Shop.Text = "Shop"
  497. Shop.TextColor3 = Color3.new(1, 1, 1)
  498. Shop.TextSize = 30
  499. Shop.TextStrokeColor3 = Color3.new(1, 1, 1)
  500. Shop.TextStrokeTransparency = 0
  501. Shop.MouseButton1Down:connect(function()
  502.         game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-171.550171, 36.1999474, 20.5197601))
  503. end)
  504.  
  505. Spawn.Name = "Go Coin loop"
  506. Spawn.Parent = Main
  507. Spawn.BackgroundColor3 = Color3.new(1, 1, 1)
  508. Spawn.BackgroundTransparency = 1
  509. Spawn.BorderSizePixel = 0
  510. Spawn.Position = UDim2.new(0.369995981, 0, 0.852802157, 0)
  511. Spawn.Size = UDim2.new(0, 183, 0, 50)
  512. Spawn.Font = Enum.Font.SourceSans
  513. Spawn.Text = "Spawn"
  514. Spawn.TextColor3 = Color3.new(1, 1, 1)
  515. Spawn.TextSize = 30
  516. Spawn.TextStrokeColor3 = Color3.new(1, 1, 1)
  517. Spawn.TextStrokeTransparency = 0
  518. Spawn.MouseButton1Down:connect(function()
  519.     game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-3.67878437, 41.399971, 15.44205))
  520. end)
  521.  
  522. -- Script Gui
  523. Main.Active = true
  524. Main.Selectable = true
  525. Main.Draggable = true
  526. --End Line...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement