RazHack_YT

Untitled

Jun 25th, 2018
259,882
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.94 KB | None | 0 0
  1. -- Onyx HUB
  2. -- Credits to Hamii & RBXFucker
  3. -- Free Version not for sell, V3rmillion.net
  4. -- Zeesteiaa#7876
  5.  
  6. local Players = game:GetService("Players")
  7. local RepStorage = game:GetService("ReplicatedStorage")
  8. local Events = RepStorage:WaitForChild("Events")
  9. local Player = Players.LocalPlayer
  10. local Character = Player.Character
  11. local Root = Character.HumanoidRootPart
  12. local FastBreak=false
  13. local Player=game:GetService("Players").LocalPlayer
  14. local Mouse=Player:GetMouse()
  15. ----- fuck
  16. BoogaBooga = Instance.new("ScreenGui")
  17. Frame = Instance.new("Frame")
  18. HeaderFrame = Instance.new("Frame")
  19. TitleGUI = Instance.new("TextLabel")
  20. SpeedHack = Instance.new("TextButton")
  21. JumpHack = Instance.new("TextButton")
  22. InfinityJump = Instance.new("TextButton")
  23. CraftGUI = Instance.new("TextButton")
  24. Minimize = Instance.new("TextButton")
  25. CraftFrame = Instance.new("Frame")
  26. HeaderFrame_2 = Instance.new("Frame")
  27. CraftLogo = Instance.new("TextLabel")
  28. ItemName = Instance.new("TextBox")
  29. CraftSubmit = Instance.new("TextButton")
  30. CraftGUI_2 = Instance.new("TextButton")
  31. HeaderBawahCraftFrame = Instance.new("Frame")
  32. AutoPickup = Instance.new("TextButton")
  33. ESPTrack = Instance.new("TextButton")
  34. DropItem = Instance.new("TextButton")
  35. ItemDrop = Instance.new("TextBox")
  36. HeaderBawahFrame = Instance.new("Frame")
  37. Tpplayerbutton = Instance.new("TextButton")
  38. ItemDrop_2 = Instance.new("TextBox")
  39. FastBreakButton = Instance.new("TextButton")
  40. MinimizeFrame = Instance.new("Frame")
  41. MinOpen = Instance.new("TextButton")
  42. Credits = Instance.new("Frame")
  43. HeaderCredits = Instance.new("Frame")
  44. titlecredits = Instance.new("TextLabel")
  45. continuebutton = Instance.new("TextButton")
  46. TextLabel = Instance.new("TextLabel")
  47. TextLabel_2 = Instance.new("TextLabel")
  48.  
  49. BoogaBooga.Name = "BoogaBooga"
  50. BoogaBooga.Parent = game.CoreGui
  51.  
  52. Frame.Parent = BoogaBooga
  53. Frame.Active = true
  54. Frame.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  55. Frame.BorderSizePixel = 0
  56. Frame.Position = UDim2.new(0, 319, 0, 134)
  57. Frame.Size = UDim2.new(0, 577, 0, 290)
  58. Frame.Visible = false
  59. Frame.Draggable = true
  60.  
  61. HeaderFrame.Name = "HeaderFrame"
  62. HeaderFrame.Parent = Frame
  63. HeaderFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  64. HeaderFrame.BorderSizePixel = 0
  65. HeaderFrame.Size = UDim2.new(0, 577, 0, 33)
  66.  
  67. TitleGUI.Name = "TitleGUI"
  68. TitleGUI.Parent = Frame
  69. TitleGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  70. TitleGUI.BackgroundTransparency = 1
  71. TitleGUI.BorderSizePixel = 0
  72. TitleGUI.Position = UDim2.new(0, 140, 0, 0)
  73. TitleGUI.Size = UDim2.new(0, 309, 0, 33)
  74. TitleGUI.Font = Enum.Font.SciFi
  75. TitleGUI.FontSize = Enum.FontSize.Size14
  76. TitleGUI.Text = "Booga Booga | Onyx Version"
  77. TitleGUI.TextColor3 = Color3.new(1, 1, 1)
  78. TitleGUI.TextSize = 14
  79.  
  80. SpeedHack.Name = "SpeedHack"
  81. SpeedHack.Parent = Frame
  82. SpeedHack.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  83. SpeedHack.BorderSizePixel = 0
  84. SpeedHack.Position = UDim2.new(0, 20, 0, 49)
  85. SpeedHack.Size = UDim2.new(0, 200, 0, 50)
  86. SpeedHack.Font = Enum.Font.SourceSans
  87. SpeedHack.FontSize = Enum.FontSize.Size14
  88. SpeedHack.Text = "SpeedHack"
  89. SpeedHack.TextColor3 = Color3.new(1, 1, 1)
  90. SpeedHack.TextSize = 14
  91. SpeedHack.MouseButton1Down:connect(function()
  92. local plr = game:GetService("Players").LocalPlayer
  93. local char = plr.Character
  94. local mouse = game:GetService("Players").LocalPlayer:GetMouse()
  95. local hum = char:FindFirstChild("HumanoidRootPart")
  96. local speed = 3
  97. mouse.KeyDown:connect(function(key)
  98. if key == "q" then
  99. loop = true
  100. while loop do
  101. hum.CFrame = hum.CFrame + hum.CFrame.lookVector * speed
  102. wait()
  103. end
  104. end
  105. end)
  106.  
  107. mouse.KeyUp:connect(function(key)
  108. if key == "q" then
  109. loop = false
  110. end
  111. end)
  112. end)
  113.  
  114. JumpHack.Name = "JumpHack"
  115. JumpHack.Parent = Frame
  116. JumpHack.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  117. JumpHack.BorderSizePixel = 0
  118. JumpHack.Position = UDim2.new(0, 20, 0, 112)
  119. JumpHack.Size = UDim2.new(0, 200, 0, 50)
  120. JumpHack.Font = Enum.Font.SourceSans
  121. JumpHack.FontSize = Enum.FontSize.Size14
  122. JumpHack.Text = "JumpHack"
  123. JumpHack.TextColor3 = Color3.new(1, 1, 1)
  124. JumpHack.TextSize = 14
  125. JumpHack.MouseButton1Down:connect(function()
  126. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 150
  127. end)
  128.  
  129.  
  130. InfinityJump.Name = "InfinityJump"
  131. InfinityJump.Parent = Frame
  132. InfinityJump.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  133. InfinityJump.BorderSizePixel = 0
  134. InfinityJump.Position = UDim2.new(0, 21, 0, 173)
  135. InfinityJump.Size = UDim2.new(0, 200, 0, 50)
  136. InfinityJump.Font = Enum.Font.SourceSans
  137. InfinityJump.FontSize = Enum.FontSize.Size14
  138. InfinityJump.Text = "Infinity Jump"
  139. InfinityJump.TextColor3 = Color3.new(1, 1, 1)
  140. InfinityJump.TextSize = 14
  141.  
  142. CraftGUI.Name = "CraftGUI"
  143. CraftGUI.Parent = Frame
  144. CraftGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  145. CraftGUI.BackgroundTransparency = 1
  146. CraftGUI.BorderSizePixel = 0
  147. CraftGUI.Size = UDim2.new(0, 81, 0, 31)
  148. CraftGUI.Font = Enum.Font.ArialBold
  149. CraftGUI.FontSize = Enum.FontSize.Size14
  150. CraftGUI.Text = "<"
  151. CraftGUI.TextColor3 = Color3.new(1, 1, 1)
  152. CraftGUI.TextSize = 14
  153. CraftGUI.MouseButton1Down:connect(function()
  154. CraftFrame.Visible = true
  155. end)
  156.  
  157. Minimize.Name = "Minimize"
  158. Minimize.Parent = Frame
  159. Minimize.BackgroundColor3 = Color3.new(1, 1, 1)
  160. Minimize.BackgroundTransparency = 1
  161. Minimize.BorderSizePixel = 0
  162. Minimize.Position = UDim2.new(0, 496, 0, 0)
  163. Minimize.Size = UDim2.new(0, 81, 0, 31)
  164. Minimize.Font = Enum.Font.ArialBold
  165. Minimize.FontSize = Enum.FontSize.Size14
  166. Minimize.Text = "X"
  167. Minimize.TextColor3 = Color3.new(1, 1, 1)
  168. Minimize.TextSize = 14
  169. Minimize.MouseButton1Down:connect(function()
  170. Frame.Visible = false
  171. MinimizeFrame.Visible = true
  172. end)
  173.  
  174. CraftFrame.Name = "CraftFrame"
  175. CraftFrame.Parent = Frame
  176. CraftFrame.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  177. CraftFrame.BorderSizePixel = 0
  178. CraftFrame.Position = UDim2.new(0, -245, 0, 0)
  179. CraftFrame.Size = UDim2.new(0, 226, 0, 154)
  180. CraftFrame.Visible = false
  181.  
  182. HeaderFrame_2.Name = "HeaderFrame"
  183. HeaderFrame_2.Parent = CraftFrame
  184. HeaderFrame_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  185. HeaderFrame_2.BorderSizePixel = 0
  186. HeaderFrame_2.Size = UDim2.new(0, 226, 0, 33)
  187.  
  188. CraftLogo.Name = "CraftLogo"
  189. CraftLogo.Parent = CraftFrame
  190. CraftLogo.BackgroundColor3 = Color3.new(1, 1, 1)
  191. CraftLogo.BackgroundTransparency = 1
  192. CraftLogo.BorderSizePixel = 0
  193. CraftLogo.Position = UDim2.new(0, 55, 0, 0)
  194. CraftLogo.Size = UDim2.new(0, 115, 0, 31)
  195. CraftLogo.Font = Enum.Font.SciFi
  196. CraftLogo.FontSize = Enum.FontSize.Size14
  197. CraftLogo.Text = "Craft Item"
  198. CraftLogo.TextColor3 = Color3.new(1, 1, 1)
  199. CraftLogo.TextSize = 14
  200.  
  201. ItemName.Name = "ItemName"
  202. ItemName.Parent = CraftFrame
  203. ItemName.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  204. ItemName.BorderColor3 = Color3.new(0, 0, 0)
  205. ItemName.BorderSizePixel = 3
  206. ItemName.Position = UDim2.new(0, 13, 0, 47)
  207. ItemName.Size = UDim2.new(0, 200, 0, 34)
  208. ItemName.Font = Enum.Font.SciFi
  209. ItemName.FontSize = Enum.FontSize.Size14
  210. ItemName.Text = "Item Name"
  211. ItemName.TextColor3 = Color3.new(1, 1, 1)
  212. ItemName.TextSize = 14
  213.  
  214. CraftSubmit.Name = "CraftSubmit"
  215. CraftSubmit.Parent = CraftFrame
  216. CraftSubmit.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  217. CraftSubmit.BorderSizePixel = 0
  218. CraftSubmit.Position = UDim2.new(0, 13, 0, 93)
  219. CraftSubmit.Size = UDim2.new(0, 200, 0, 46)
  220. CraftSubmit.Font = Enum.Font.SciFi
  221. CraftSubmit.FontSize = Enum.FontSize.Size14
  222. CraftSubmit.Text = "Craft Now!"
  223. CraftSubmit.TextColor3 = Color3.new(1, 1, 1)
  224. CraftSubmit.TextSize = 14
  225.  
  226. CraftGUI_2.Name = "CraftGUI"
  227. CraftGUI_2.Parent = CraftFrame
  228. CraftGUI_2.BackgroundColor3 = Color3.new(1, 1, 1)
  229. CraftGUI_2.BackgroundTransparency = 1
  230. CraftGUI_2.BorderSizePixel = 0
  231. CraftGUI_2.Position = UDim2.new(0, 163, 0, 0)
  232. CraftGUI_2.Size = UDim2.new(0, 63, 0, 31)
  233. CraftGUI_2.Font = Enum.Font.ArialBold
  234. CraftGUI_2.FontSize = Enum.FontSize.Size14
  235. CraftGUI_2.Text = ">"
  236. CraftGUI_2.TextColor3 = Color3.new(1, 1, 1)
  237. CraftGUI_2.TextSize = 14
  238. CraftGUI_2.MouseButton1Down:connect(function()
  239. CraftFrame.Visible = false
  240. end)
  241.  
  242. HeaderBawahCraftFrame.Name = "HeaderBawahCraftFrame"
  243. HeaderBawahCraftFrame.Parent = CraftFrame
  244. HeaderBawahCraftFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  245. HeaderBawahCraftFrame.BorderSizePixel = 0
  246. HeaderBawahCraftFrame.Position = UDim2.new(0, 0, 1, 0)
  247. HeaderBawahCraftFrame.Size = UDim2.new(0, 226, 0, 19)
  248.  
  249. AutoPickup.Name = "AutoPickup"
  250. AutoPickup.Parent = Frame
  251. AutoPickup.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  252. AutoPickup.BorderSizePixel = 0
  253. AutoPickup.Position = UDim2.new(0, 236, 0, 49)
  254. AutoPickup.Size = UDim2.new(0, 326, 0, 50)
  255. AutoPickup.Font = Enum.Font.SciFi
  256. AutoPickup.FontSize = Enum.FontSize.Size14
  257. AutoPickup.Text = "Auto Pickup"
  258. AutoPickup.TextColor3 = Color3.new(1, 1, 1)
  259. AutoPickup.TextSize = 14
  260.  
  261. ESPTrack.Name = "ESP Track"
  262. ESPTrack.Parent = Frame
  263. ESPTrack.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  264. ESPTrack.BorderSizePixel = 0
  265. ESPTrack.Position = UDim2.new(0, 237, 0, 110)
  266. ESPTrack.Size = UDim2.new(0, 325, 0, 52)
  267. ESPTrack.Font = Enum.Font.SciFi
  268. ESPTrack.FontSize = Enum.FontSize.Size14
  269. ESPTrack.Text = "ESP Track"
  270. ESPTrack.TextColor3 = Color3.new(1, 1, 1)
  271. ESPTrack.TextSize = 14
  272.  
  273. DropItem.Name = "DropItem"
  274. DropItem.Parent = Frame
  275. DropItem.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  276. DropItem.BorderSizePixel = 0
  277. DropItem.Position = UDim2.new(0, 405, 0, 231)
  278. DropItem.Size = UDim2.new(0, 157, 0, 49)
  279. DropItem.Font = Enum.Font.SciFi
  280. DropItem.FontSize = Enum.FontSize.Size14
  281. DropItem.Text = "Drop Item"
  282. DropItem.TextColor3 = Color3.new(1, 1, 1)
  283. DropItem.TextSize = 14
  284.  
  285. ItemDrop.Name = "ItemDrop"
  286. ItemDrop.Parent = Frame
  287. ItemDrop.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  288. ItemDrop.BorderColor3 = Color3.new(0, 0, 0)
  289. ItemDrop.BorderSizePixel = 3
  290. ItemDrop.Position = UDim2.new(0, 405, 0, 173)
  291. ItemDrop.Size = UDim2.new(0, 157, 0, 49)
  292. ItemDrop.Font = Enum.Font.SciFi
  293. ItemDrop.FontSize = Enum.FontSize.Size14
  294. ItemDrop.Text = "Item Name"
  295. ItemDrop.TextColor3 = Color3.new(1, 1, 1)
  296. ItemDrop.TextSize = 14
  297.  
  298. HeaderBawahFrame.Name = "HeaderBawahFrame"
  299. HeaderBawahFrame.Parent = Frame
  300. HeaderBawahFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  301. HeaderBawahFrame.BorderSizePixel = 0
  302. HeaderBawahFrame.Position = UDim2.new(0, 0, 1, 0)
  303. HeaderBawahFrame.Size = UDim2.new(0, 577, 0, 18)
  304.  
  305. Tpplayerbutton.Name = "Tpplayerbutton"
  306. Tpplayerbutton.Parent = Frame
  307. Tpplayerbutton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  308. Tpplayerbutton.BorderSizePixel = 0
  309. Tpplayerbutton.Position = UDim2.new(0, 237, 0, 231)
  310. Tpplayerbutton.Size = UDim2.new(0, 156, 0, 50)
  311. Tpplayerbutton.Font = Enum.Font.SourceSans
  312. Tpplayerbutton.FontSize = Enum.FontSize.Size14
  313. Tpplayerbutton.Text = "Teleport"
  314. Tpplayerbutton.TextColor3 = Color3.new(1, 1, 1)
  315. Tpplayerbutton.TextSize = 14
  316.  
  317. function TeleportF(Target)
  318. if Target then
  319. if Target.Parent == Players then
  320. if Target.Name == "Axdrei" or Target.Name == "Calxn" or Target.Name == "Im_Yeti" then
  321. Player.Character.Humanoid.Health = 0
  322. Player.Character:BreakJoints()
  323. wait(5)
  324. Player:Kick("you're fucking gay nigga, you tried to kill Hamiii")
  325. wait(5)
  326. while true do end
  327. end
  328. local PRoot = Target.Character.HumanoidRootPart
  329. while wait() and PRoot.Parent == Target.Character do
  330. Root.CFrame = PRoot.CFrame
  331. Events.SwingTool:FireServer(tick(), {PRoot})
  332. end
  333. end
  334. end
  335. end
  336.  
  337. Tpplayerbutton.MouseButton1Down:connect(function()
  338. local IP = ItemDrop_2.Text
  339. for _,v in pairs(Players:GetPlayers()) do
  340. if v.Name:lower():find(IP) or v.Name:lower() == IP or v.Name == IP then
  341. TeleportF(v)
  342. end
  343. end
  344. end)
  345.  
  346. ItemDrop_2.Name = "ItemDrop"
  347. ItemDrop_2.Parent = Frame
  348. ItemDrop_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  349. ItemDrop_2.BorderColor3 = Color3.new(0, 0, 0)
  350. ItemDrop_2.BorderSizePixel = 3
  351. ItemDrop_2.Position = UDim2.new(0, 237, 0, 173)
  352. ItemDrop_2.Size = UDim2.new(0, 157, 0, 49)
  353. ItemDrop_2.Font = Enum.Font.SciFi
  354. ItemDrop_2.FontSize = Enum.FontSize.Size14
  355. ItemDrop_2.Text = "Player Name"
  356. ItemDrop_2.TextColor3 = Color3.new(1, 1, 1)
  357. ItemDrop_2.TextSize = 14
  358.  
  359. FastBreakButton.Name = "FastBreakButton"
  360. FastBreakButton.Parent = Frame
  361. FastBreakButton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  362. FastBreakButton.BorderSizePixel = 0
  363. FastBreakButton.Position = UDim2.new(0, 20, 0, 231)
  364. FastBreakButton.Size = UDim2.new(0, 200, 0, 50)
  365. FastBreakButton.Font = Enum.Font.SourceSans
  366. FastBreakButton.FontSize = Enum.FontSize.Size14
  367. FastBreakButton.Text = "Fast Break"
  368. FastBreakButton.TextColor3 = Color3.new(1, 1, 1)
  369. FastBreakButton.TextSize = 14
  370.  
  371. MinimizeFrame.Name = "MinimizeFrame"
  372. MinimizeFrame.Parent = BoogaBooga
  373. MinimizeFrame.Active = true
  374. MinimizeFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  375. MinimizeFrame.BackgroundTransparency = 1
  376. MinimizeFrame.BorderSizePixel = 0
  377. MinimizeFrame.Position = UDim2.new(0, 941, 0, 215)
  378. MinimizeFrame.Size = UDim2.new(0, 155, 0, 223)
  379. MinimizeFrame.Visible = false
  380.  
  381. MinOpen.Name = "MinOpen"
  382. MinOpen.Parent = MinimizeFrame
  383. MinOpen.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  384. MinOpen.BorderSizePixel = 0
  385. MinOpen.Position = UDim2.new(-2.74193549, 0, -0.856502235, 0)
  386. MinOpen.Size = UDim2.new(0, 130, 0, 29)
  387. MinOpen.Font = Enum.Font.Fantasy
  388. MinOpen.FontSize = Enum.FontSize.Size24
  389. MinOpen.Text = "OPEN"
  390. MinOpen.TextColor3 = Color3.new(1, 1, 1)
  391. MinOpen.TextSize = 20
  392. MinOpen.TextWrapped = true
  393.  
  394. Credits.Name = "Credits"
  395. Credits.Parent = BoogaBooga
  396. Credits.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  397. Credits.BorderSizePixel = 0
  398. Credits.Position = UDim2.new(0.356138706, 0, 0.244972572, 0)
  399. Credits.Size = UDim2.new(0, 352, 0, 174)
  400.  
  401. HeaderCredits.Name = "HeaderCredits"
  402. HeaderCredits.Parent = Credits
  403. HeaderCredits.BackgroundColor3 = Color3.new(0.333333, 0.333333, 0.498039)
  404. HeaderCredits.BorderSizePixel = 0
  405. HeaderCredits.Position = UDim2.new(-0.00284090918, 0, -0.00231690705, 0)
  406. HeaderCredits.Size = UDim2.new(0, 352, 0, 27)
  407.  
  408. titlecredits.Name = "titlecredits"
  409. titlecredits.Parent = Credits
  410. titlecredits.BackgroundColor3 = Color3.new(1, 1, 1)
  411. titlecredits.BackgroundTransparency = 1
  412. titlecredits.BorderSizePixel = 0
  413. titlecredits.Position = UDim2.new(0.258522719, 0, 0.00269396603, 0)
  414. titlecredits.Size = UDim2.new(0, 169, 0, 27)
  415. titlecredits.Font = Enum.Font.SourceSans
  416. titlecredits.FontSize = Enum.FontSize.Size14
  417. titlecredits.Text = "Welcome to Onyx HUB"
  418. titlecredits.TextColor3 = Color3.new(1, 1, 1)
  419. titlecredits.TextSize = 14
  420.  
  421. continuebutton.Name = "continuebutton"
  422. continuebutton.Parent = Credits
  423. continuebutton.BackgroundColor3 = Color3.new(0.333333, 0.333333, 0.498039)
  424. continuebutton.BorderSizePixel = 0
  425. continuebutton.Position = UDim2.new(0.0482954532, 0, 0.595546007, 0)
  426. continuebutton.Size = UDim2.new(0, 317, 0, 50)
  427. continuebutton.Font = Enum.Font.SciFi
  428. continuebutton.FontSize = Enum.FontSize.Size14
  429. continuebutton.Text = "Continue"
  430. continuebutton.TextColor3 = Color3.new(1, 1, 1)
  431. continuebutton.TextSize = 14
  432.  
  433. continuebutton.MouseButton1Down:connect(function()
  434. Credits.Visible = false
  435. Frame.Visible = true
  436. end)
  437.  
  438. TextLabel.Parent = Credits
  439. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  440. TextLabel.BackgroundTransparency = 1
  441. TextLabel.BorderSizePixel = 0
  442. TextLabel.Position = UDim2.new(0.0482954532, 0, 0.354346246, 0)
  443. TextLabel.Size = UDim2.new(0, 317, 0, 50)
  444. TextLabel.Font = Enum.Font.SourceSans
  445. TextLabel.FontSize = Enum.FontSize.Size14
  446. TextLabel.Text = "Thanks to RBXFucker & Hamii"
  447. TextLabel.TextColor3 = Color3.new(1, 0, 0)
  448. TextLabel.TextSize = 14
  449. TextLabel.TextStrokeTransparency = 0
  450.  
  451. TextLabel_2.Parent = Credits
  452. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  453. TextLabel_2.BackgroundTransparency = 1
  454. TextLabel_2.BorderSizePixel = 0
  455. TextLabel_2.Position = UDim2.new(0.0482954532, 0, 0.155172408, 0)
  456. TextLabel_2.Size = UDim2.new(0, 317, 0, 50)
  457. TextLabel_2.Font = Enum.Font.SciFi
  458. TextLabel_2.FontSize = Enum.FontSize.Size32
  459. TextLabel_2.Text = "Welcome Back, Guest!"
  460. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  461. TextLabel_2.TextSize = 30
  462. TextLabel_2.TextStrokeTransparency = 0
  463.  
  464. DropItem.MouseButton1Down:connect(function()
  465. local item = ItemDrop.Text -- change this to the item you want to drop
  466. local amount = 1000 -- change this to the amount you want to drop
  467.  
  468. local i = 0
  469. while i <= amount do
  470. game.ReplicatedStorage.Events.DropBagItem:FireServer(item)
  471. i = i + 1
  472. end
  473. end)
  474.  
  475. Important = {Players = game:GetService("Players"), Workspace = game:GetService("Workspace"), CoreGui = game:GetService("CoreGui")}
  476.  
  477. local enabledesp = false
  478.  
  479. function CreateESP(plr)
  480.  
  481. if plr ~= nil then
  482.  
  483. local GetChar = plr.Character
  484. if not GetChar then return end
  485.  
  486. local GetHead do
  487.  
  488. repeat wait() until GetChar:FindFirstChild("Head")
  489.  
  490. end
  491. GetHead = GetChar.Head
  492.  
  493. local bb = Instance.new("BillboardGui", Important.CoreGui)
  494. bb.Adornee = GetHead
  495. bb.ExtentsOffset = Vector3.new(0, 1, 0)
  496. bb.AlwaysOnTop = true
  497. bb.Size = UDim2.new(0, 5, 0, 5)
  498. bb.StudsOffset = Vector3.new(0, 3, 0)
  499. bb.Name = "ESP_PLAYER_" .. plr.Name
  500.  
  501. local displayframe = Instance.new("Frame", bb)
  502. displayframe.ZIndex = 10
  503. displayframe.BackgroundTransparency = 1
  504. displayframe.Size = UDim2.new(1,0,1,0)
  505.  
  506. local name = Instance.new("TextLabel", displayframe)
  507. name.Name = "Name"
  508. name.ZIndex = 10
  509. name.Text = plr.Name
  510. name.Visible = true
  511. name.TextColor3 = Color3.new(170,0,0)
  512. name.BackgroundTransparency = 1
  513. name.Size = UDim2.new(1,0,10,0)
  514. name.Font = Enum.Font.SourceSansLight
  515. name.TextSize = 20
  516. name.TextStrokeTransparency = .5
  517.  
  518. end
  519.  
  520. end
  521.  
  522. ESPTrack.MouseButton1Click:connect(function()
  523. for i,v in pairs(Important.Players:GetChildren()) do
  524.  
  525. CreateESP(v)
  526.  
  527. end
  528. end)
  529.  
  530. AutoPickup.MouseButton1Down:connect(function()
  531. local Objects;
  532.  
  533. local Pickup = function(Character)
  534. local myPos = Character.HumanoidRootPart.Position
  535. local Objects = {}
  536. for i,v in pairs(workspace:GetChildren()) do
  537. if v:FindFirstChild("Pickup") ~= nil and v.ClassName == "Part" then
  538. local Pos = v.Position
  539. local Distance = (myPos - Pos).magnitude
  540. if Distance < 40 then
  541. table.insert(Objects, v)
  542. end
  543. elseif v:FindFirstChild("Pickup") ~= nil and v:FindFirstChild("Part") ~= nil and v.Part.ClassName == "Part" then
  544. local Pos = v.Part.Position
  545. local Distance = (myPos - Pos).magnitude
  546. if Distance < 40 then
  547. table.insert(Objects, v)
  548. end
  549. elseif v:FindFirstChild("Pickup") ~= nil and v.ClassName == "UnionOperation" then
  550. local Pos = v.Position
  551. local Distance = (myPos - Pos).magnitude
  552. if Distance < 40 then
  553. table.insert(Objects, v)
  554. end
  555. end
  556. end
  557. for i,v in pairs(Objects) do
  558. for i=1,10 do
  559. v.Position = myPos
  560. game:GetService("ReplicatedStorage").Events.Pickup:FireServer(v)
  561. end
  562. end
  563. end
  564. wait(1)
  565. local mouse = game:GetService("Players").LocalPlayer:GetMouse()
  566.  
  567. mouse.KeyDown:connect(function(key)
  568. if key == "y" then
  569. print'howdi neighbor'
  570. Pickup(game.Players.LocalPlayer.Character)
  571. end
  572. end)
  573. end)
  574.  
  575. CraftSubmit.MouseButton1Down:connect(function()
  576. local Item = ItemName.Text
  577. local Event = game:GetService("ReplicatedStorage").Events.CraftItem
  578. Event:FireServer(Item)
  579. end)
  580.  
  581. InfinityJump.MouseButton1Down:connect(function()
  582. local Player = game:GetService'Players'.LocalPlayer;
  583. local UIS = game:GetService'UserInputService';
  584.  
  585. _G.JumpHeight = 50;
  586.  
  587. function Action(Object, Function) if Object ~= nil then Function(Object); end end
  588.  
  589. UIS.InputBegan:connect(function(UserInput)
  590. if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode.Space then
  591. Action(Player.Character.Humanoid, function(self)
  592. if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then
  593. Action(self.Parent.HumanoidRootPart, function(self)
  594. self.Velocity = Vector3.new(0, _G.JumpHeight, 0);
  595. end)
  596. end
  597. end)
  598. end
  599. end)
  600. end)
  601.  
  602. FastBreakButton.MouseButton1Down:connect(function()
  603. if key == "m" then
  604. if FastBreak then FastBreak=false;send("OFF","FastBreak",3) else FastBreak=true;send("ON","FastBreak",3) end
  605. end
  606. end)
  607. spawn(function()
  608. game:GetService("RunService").RenderStepped:connect(function()
  609. if FastBreak then
  610. wait(0.1)
  611. local part = game:GetService("Players").LocalPlayer:GetMouse().Target
  612. local one = game:GetService("ReplicatedStorage").RelativeTime.Value
  613. local two = {part,part,part,part}
  614. game:GetService("ReplicatedStorage").Events.SwingTool:FireServer(one, two)
  615. end
  616. end)
  617. end)
Add Comment
Please, Sign In to add comment