Menace00

Roblox Rogers Script Hub

Jul 6th, 2023
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 35.02 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("Roger's Scripts", "BloodTheme")
  3.  
  4. --Main
  5. local Main = Window:NewTab("Mainhacks")
  6. local MainSection = Main:NewSection("Main hacks")
  7.  
  8.  
  9. MainSection:NewButton("Hoopz aimbot and reach", "Op hoopz aimbot and reach", function()
  10. local reset = false
  11.  
  12. pcall(function()
  13. if _G.stepped then
  14. reset = true
  15. _G.stepped:Disconnect()
  16. _G.input:Disconnect()
  17. _G.charAdded:Disconnect()
  18. _G.charAdded = nil
  19. _G.stepped = nil
  20. _G.input = nil
  21. print("RESET")
  22. end
  23.  
  24. if not reset then
  25. print("LOADED")
  26. end
  27. end)
  28.  
  29. local plr = game.Players.LocalPlayer
  30. local uis = game:GetService("UserInputService")
  31. local rs = game:GetService("RunService")
  32.  
  33. local lib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  34. local window = lib:MakeWindow({Name = "Magnet's Hoopz UI"})
  35. local main = window:MakeTab({Name = "Main"})
  36.  
  37. main:AddToggle({Name = "Aimbot", Default = false, Callback = function(v)
  38. _G.Aimbot = v
  39. end})
  40. main:AddToggle({Name = "Reach", Default = false, Callback = function(v)
  41. _G.Reach = v
  42. end})
  43. main:AddToggle({Name = "AutoGaurd/Defend", default = false, Callback = function(v)
  44. if v then
  45. game.StarterGui:SetCore("SendNotification", {Title = "AutoGaurd/Defend", Text = "Press U to go to the nearest ball", Duration = 5, Button1 = "Okay"})
  46. end
  47. _G.Autogaurd = v
  48. end})
  49. main:AddSlider({Name = "WalkSpeed", Min = 16, Max = 19, Default = 16, Color = Color3.fromRGB(80, 80, 255), Increment = 0.1, Callback = function(v)
  50. _G.WS = v
  51. end})
  52.  
  53. local shootingEvent = game:GetService("ReplicatedStorage").shootingEvent
  54.  
  55. if workspace:FindFirstChild("PracticeArea") then
  56. workspace.PracticeArea.Parent = workspace.Courts
  57. end
  58.  
  59. local jumping = false
  60.  
  61. for i,v in pairs(getconnections(game:GetService("UserInputService").TouchTapInWorld)) do
  62. for z,x in pairs(getupvalues(v.Function)) do
  63. if type(x) == "table" and rawget(x, 1) then
  64. _G.method = x
  65. elseif z == 10 then
  66. _G.key = x
  67. end
  68. end
  69. end
  70.  
  71. for i,v in pairs(getconnections(plr.Character.HumanoidRootPart:GetPropertyChangedSignal("Size"))) do
  72. v:Disable()
  73. end
  74.  
  75. for i,v in pairs(getconnections(plr.Character.HumanoidRootPart:GetPropertyChangedSignal("Color"))) do
  76. v:Disable()
  77. end
  78.  
  79. for i,v in pairs(getconnections(plr.Character.HumanoidRootPart:GetPropertyChangedSignal("BrickColor"))) do
  80. v:Disable()
  81. end
  82.  
  83. for i,v in pairs(getconnections(plr.Character.Humanoid:GetPropertyChangedSignal("WalkSpeed"))) do
  84. v:Disable()
  85. end
  86.  
  87. local ground
  88.  
  89. local part = workspace:FindPartOnRay(Ray.new(plr.Character.Torso.Position, Vector3.new(0, -100, 5)))
  90. if part then
  91. ground = part
  92. end
  93.  
  94. local tracking = false
  95. local player
  96.  
  97. function updateNearestPlayerWithBall()
  98. local dist = 9e9
  99. for i,v in pairs(game.Players:GetPlayers()) do
  100. if v.Name ~= plr.Name and v.Character and v.Character:FindFirstChild("Basketball") and not plr.Character:FindFirstChild("Basketball") and (plr.Character.Torso.Position - v.Character.Torso.Position).Magnitude < 50 then
  101. local mag = (plr.Character.Torso.Position - v.Character.Torso.Position).Magnitude
  102. if dist > mag then
  103. dist = mag
  104. player = v
  105. end
  106. end
  107. end
  108. end
  109.  
  110. if _G.hook ~= nil then
  111. _G.hook = ""; _G.hook = hookmetamethod(game, "__index", newcclosure(function(self, idx)
  112. if tostring(self) == "HumanoidRootPart" and idx == "Size" then
  113. return Vector3.new(2, 2, 1)
  114. elseif tostring(self) == "HumanoidRootPart" and idx == "BrickColor" then
  115. return BrickColor.new("Medium stone grey")
  116. elseif tostring(self) == "HumanoidRootPart" and idx == "Color" then
  117. return Color3.fromRGB(163, 162, 165)
  118. elseif tostring(self) == "Humanoid" and idx == "WalkSpeed" then
  119. return 16
  120. end
  121. return hook(self, idx)
  122. end))
  123. end
  124.  
  125. shootingEvent.OnClientEvent:Connect(function(newKey)
  126. _G.key = newKey
  127. end)
  128.  
  129. function setup()
  130. local dist, goal = 9e9, nil
  131. for i,v in pairs(workspace.Courts:GetDescendants()) do
  132. if v.Name == "Swish" and v:IsA("Sound") and plr.Character and plr.Character:FindFirstChild("Torso") then
  133. local mag = (plr.Character.Torso.Position - v.Parent.Position).Magnitude
  134. if dist > mag then
  135. dist = mag; goal = v.Parent
  136. end
  137. end
  138. end
  139. return dist, goal
  140. end
  141.  
  142. function power()
  143. return plr.Power
  144. end
  145.  
  146. function changePower(goal)
  147. power().Value = goal
  148. end
  149.  
  150. function table(a, b)
  151. local args = {
  152. X1 = a.X,
  153. Y1 = a.Y,
  154. Z1 = a.Z,
  155. X2 = b.X,
  156. Y2 = b.Y,
  157. Z2 = b.Z
  158. };
  159.  
  160. return {args[_G.method[1]], args[_G.method[2]], args[_G.method[3]], args[_G.method[4]], args[_G.method[5]], args[_G.method[6]]}
  161. end
  162.  
  163. function arc()
  164. local dist, goal = setup()
  165.  
  166. dist = math.floor(dist)
  167. print(dist)
  168. if dist == 12 or dist == 13 then
  169. return 15
  170. elseif dist == 14 or dist == 15 then
  171. return 20
  172. elseif dist == 16 or dist == 17 then
  173. return 15
  174. elseif dist == 18 then
  175. return 25
  176. elseif dist == 19 then
  177. return 20
  178. elseif dist == 20 or dist == 21 then
  179. return 20
  180. elseif dist == 22 or dist == 23 then
  181. return 25
  182. elseif dist == 24 or dist == 25 then
  183. return 20
  184. elseif dist == 26 then
  185. return 15
  186. elseif dist == 27 or dist == 28 then
  187. return 25
  188. elseif dist == 29 or dist == 30 then
  189. return 20
  190. elseif dist == 31 then
  191. return 15
  192. elseif dist == 32 or dist == 33 then
  193. return 30
  194. elseif dist == 34 or dist == 35 or dist == 36 then
  195. return 25
  196. elseif dist == 37 or dist == 38 then
  197. return 35
  198. elseif dist == 39 or dist == 40 then
  199. return 30
  200. elseif dist == 41 then
  201. return 25
  202. elseif dist == 42 or dist == 43 then
  203. return 40
  204. elseif dist == 44 then
  205. return 35
  206. elseif dist == 45 or dist == 46 then
  207. return 30
  208. elseif dist == 47 or dist == 48 then
  209. return 45
  210. elseif dist == 49 then
  211. return 40
  212. elseif dist == 50 then
  213. return 35
  214. elseif dist == 51 then
  215. return 50
  216. elseif dist == 52 then
  217. return 55
  218. elseif dist == 53 or dist == 54 then
  219. return 50
  220. elseif dist == 55 then
  221. return 45
  222. elseif dist == 56 then
  223. return 40
  224. elseif dist == 57 or dist == 58 then
  225. return 55
  226. elseif dist == 59 or dist == 60 or dist == 61 then
  227. return 50
  228. elseif dist == 62 or dist == 63 then
  229. return 65
  230. elseif dist == 64 then
  231. return 55
  232. elseif dist == 65 then
  233. return 60
  234. elseif dist == 66 or dist == 67 then
  235. return 50
  236. elseif dist == 68 or dist == 69 then
  237. return 75
  238. elseif dist == 70 or dist == 71 then
  239. return 70
  240. elseif dist == 72 then
  241. return 65
  242. elseif dist == 73 then
  243. return 60
  244. elseif dist == 74 then
  245. return 50
  246. elseif jumping then
  247. if dist == 9 or dist == 10 then
  248. return 20
  249. elseif dist == 11 or dist == 12 then
  250. return 15
  251. end
  252. end
  253. end
  254.  
  255. function getNearestPart(torso)
  256. local dist, part = 9e9
  257. for i,v in pairs(plr.Character:GetChildren()) do
  258. if v:IsA("Part") and torso then
  259. local mag = (v.Position - torso.Position).Magnitude
  260. if dist > mag then
  261. dist = mag
  262. part = v
  263. end
  264. end
  265. end
  266. return part
  267. end
  268.  
  269. function stepped() pcall(function()
  270. if plr.Character and plr.Character:FindFirstChild("HumanoidRootPart") and _G.Aimbot then
  271. local pwr = power()
  272. local dist, goal = setup()
  273. local root = plr.Character.HumanoidRootPart
  274.  
  275. dist = math.floor(dist)
  276.  
  277. if root and hasBall then
  278. root.Size = Vector3.new(2.1, 2.1, 1.1)
  279. root.BrickColor = BrickColor.new("Lime green")
  280. root.Material = Enum.Material.Neon
  281.  
  282. if dist >= 13 and dist <= 16 then
  283. changePower(30)
  284. root.Transparency = 0
  285. elseif dist >= 17 and dist <= 21 then
  286. changePower(35)
  287. root.Transparency = 0
  288. elseif dist >= 22 and dist <= 26 then
  289. changePower(40)
  290. root.Transparency = 0
  291. elseif dist >= 27 and dist <= 31 then
  292. changePower(45)
  293. root.Transparency = 0
  294. elseif dist >= 32 and dist <= 36 then
  295. changePower(50)
  296. root.Transparency = 0
  297. elseif dist >= 37 and dist <= 41 then
  298. changePower(55)
  299. root.Transparency = 0
  300. elseif dist >= 42 and dist <= 46 then
  301. changePower(60)
  302. root.Transparency = 0
  303. elseif dist >= 47 and dist <= 50 then
  304. changePower(65)
  305. root.Transparency = 0
  306. elseif dist >= 51 and dist <= 56 then
  307. changePower(70)
  308. root.Transparency = 0
  309. elseif dist >= 57 and dist <= 61 then
  310. changePower(75)
  311. root.Transparency = 0
  312. elseif dist >= 62 and dist <= 67 then
  313. changePower(80)
  314. root.Transparency = 0
  315. elseif dist >= 68 and dist <= 74 then
  316. changePower(85)
  317. root.Transparency = 0
  318. elseif jumping and dist == 9 or dist == 10 or dist == 11 or dist == 12 then
  319. changePower(25)
  320. root.Transparency = 0
  321. else
  322. root.Transparency = 1
  323. end
  324. elseif root and not hasBall and _G.Aimbot then
  325. root.Transparency = 1
  326. elseif root and not _G.Aimbot then
  327. root.Transparency = 1
  328. end
  329. end
  330.  
  331. updateNearestPlayerWithBall()
  332.  
  333. if _G.WS ~= 16 and plr.Character:WaitForChild("Humanoid").WalkSpeed ~= 0 then
  334. plr.Character:WaitForChild("Humanoid").WalkSpeed = _G.WS
  335. end
  336.  
  337. if _G.Autogaurd and tracking and player and plr.Character and plr.Character:FindFirstChild("Humanoid") and not plr.Character:FindFirstChild("Basketball") and player.Character and player.Character:FindFirstChild("Basketball") then
  338. plr.Character.Humanoid:MoveTo(player.Character.Basketball:FindFirstChildOfClass("Part").Position + player.Character.Torso.CFrame.LookVector + ((player.Character.Humanoid.MoveDirection * 2) + (plr.Character.Torso.Velocity.Unit * 3)))
  339.  
  340. if (player.Character.Torso.Position.Y - ground.Position.Y) > 2.5 then
  341. plr.Character.Humanoid.Jump = true
  342. end
  343. elseif tracking and player ~= nil and player.Character and plr.Character and plr.Character:FindFirstChild("Basketball") or not player.Character:FindFirstChild("Basketball") then
  344. tracking = false
  345. return
  346. end
  347.  
  348. for i,v in pairs(game.Players:GetPlayers()) do
  349. if (v.Name ~= plr.Name and v.Character and plr.Character) and _G.Reach then
  350. local nearestPart = getNearestPart(v.Character.Torso)
  351. for z,x in pairs(v.Character:GetChildren()) do
  352. if ((nearestPart.Position - v.Character.Torso.Position).Magnitude < 8) then
  353. if (x:IsA("Tool") or x:IsA("Folder")) then
  354. firetouchinterest(nearestPart, x:FindFirstChildOfClass("Part"), 0)
  355. task.wait()
  356. firetouchinterest(nearestPart, x:FindFirstChildOfClass("Part"), 1)
  357. elseif (x:IsA("BasePart") and string.find(x.Name:lower(), "ball")) then
  358. firetouchinterest(nearestPart, x, 0)
  359. task.wait()
  360. firetouchinterest(nearestPart, x, 1)
  361. end
  362. end
  363. end
  364. end
  365. end
  366. end) end
  367.  
  368. function shoot()
  369. local dist, goal = setup()
  370. local pwr = power()
  371. local arc = arc()
  372.  
  373. if arc ~= nil and plr.Character and plr.Character:FindFirstChild("Humanoid") then
  374. local args = table(plr.Character.Torso.Position, (goal.Position + Vector3.new(0, arc, 0) - plr.Character.HumanoidRootPart.Position + plr.Character.Humanoid.MoveDirection).Unit)
  375.  
  376. shootingEvent:FireServer(
  377. plr.Character.Basketball,
  378. pwr.Value,
  379. args,
  380. _G.key
  381. )
  382. end
  383. end
  384.  
  385. function jumped()
  386. if _G.Aimbot and plr.Character and hasBall and plr.Character:FindFirstChild("HumanoidRootPart") and plr.Character.HumanoidRootPart.Transparency == 0 then
  387. jumping = true
  388. task.wait(0.325)
  389. shoot()
  390. task.wait(0.1)
  391. jumping = false
  392. end
  393. end
  394.  
  395. function added(v)
  396. if v.Name == "Basketball" then
  397. task.wait(0.5)
  398. hasBall = true
  399. end
  400. end
  401.  
  402. function removed(v)
  403. if v.Name == "Basketball" then
  404. hasBall = false
  405. end
  406. end
  407.  
  408. function began(key, gpe)
  409. if not gpe and key.KeyCode == Enum.KeyCode.U and _G.Autogaurd then
  410. updateNearestPlayerWithBall()
  411. if not tracking then
  412. tracking = true
  413. else
  414. tracking = false
  415. end
  416. end
  417. end
  418.  
  419. _G.input = plr.Character.Humanoid.Jumping:Connect(jumped)
  420. _G.added = plr.Character.ChildAdded:Connect(added)
  421. _G.removed = plr.Character.ChildRemoved:Connect(removed)
  422. _G.stepped = rs.Stepped:Connect(stepped)
  423. _G.began = uis.InputBegan:Connect(began)
  424.  
  425. _G.charAdded = plr.CharacterAdded:Connect(function(ch)
  426. _G.input = ch:WaitForChild("Humanoid").Jumping:Connect(jumped)
  427. _G.added = ch.ChildAdded:Connect(added)
  428. _G.removed = ch.ChildRemoved:Connect(removed)
  429.  
  430. for i,v in pairs(getconnections(ch:WaitForChild("HumanoidRootPart"):GetPropertyChangedSignal("Size"))) do
  431. v:Disable()
  432. end
  433. for i,v in pairs(getconnections(ch:WaitForChild("HumanoidRootPart"):GetPropertyChangedSignal("BrickColor"))) do
  434. v:Disable()
  435. end
  436. for i,v in pairs(getconnections(ch:WaitForChild("HumanoidRootPart"):GetPropertyChangedSignal("Color"))) do
  437. v:Disable()
  438. end
  439. for i,v in pairs(getconnections(ch:WaitForChild("Humanoid"):GetPropertyChangedSignal("WalkSpeed"))) do
  440. v:Disable()
  441. end
  442. end)
  443. end)
  444.  
  445. MainSection:NewButton("infinite yield", "Op fly script", function()
  446. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  447. end)
  448.  
  449.  
  450.  
  451.  
  452. MainSection:NewButton("OP PLS DONATE SCRIPT", "Op Pls donate script", function()
  453. loadstring(game:HttpGet('https://raw.githubusercontent.com/tzechco/roblox-scripts/main/PLS%20DONATE/autofarm.lua'))()
  454. end)
  455.  
  456.  
  457. MainSection:NewButton("OP DOORS SCRIPT", "THE BEST DOORS SCRIPT EVER", function()
  458. loadstring(game:HttpGet("https://raw.githubusercontent.com/RegularVynixu/Vynixius/main/Doors/Script.lua"))()
  459. end)
  460.  
  461.  
  462. MainSection:NewButton("DA HOOD SCRIPT OP", "THE BEST DA HOOD SCRIPT EVER!", function()
  463. loadstring(game:HttpGet('https://pastebin.com/raw/XXAWmifh'))()
  464. end)
  465.  
  466.  
  467.  
  468.  
  469.  
  470. MainSection:NewButton("OP EVADE SCRIPTS", "THE BEST EVADE SCRIPT EVER!", function()
  471. loadstring(game:HttpGet(("https://raw.githubusercontent.com/Robobo2022/script/main/Main.lua"), true))()
  472. end)
  473.  
  474.  
  475.  
  476. MainSection:NewButton("OP COMBAT WARRIORS SCRIPTS", "THE BEST COMBAT WARRIORS SCRIPT EVER!", function()
  477. loadstring(game:HttpGet("https://projecthook.xyz/scripts/free.lua"))()
  478. end)
  479.  
  480.  
  481.  
  482. MainSection:NewButton("PRISON LIFE SCRIPT", "THE BEST PRISON LIFE SCRIPT EVER!", function()
  483. loadstring(game:HttpGet("https://raw.githubusercontent.com/RegularVynixu/Vynixius/main/Prison%20Life/Script.lua"))()
  484. end)
  485.  
  486.  
  487.  
  488.  
  489. MainSection:NewButton("OP JAILBREAK SCRIPT!", "OP JAILBREAK SCRIPT!", function()
  490. loadstring(game:HttpGet("https://raw.githubusercontent.com/KuriWasTaken/MonkeyScripts/main/JailMonkey.lua"))()
  491. end)
  492.  
  493.  
  494.  
  495. MainSection:NewButton("DA HOOD SELLING GUI!", "DA HOOD SELLING GUI!", function()
  496. loadstring(game:HttpGet("https://raw.githubusercontent.com/Crostide/cdhc/main/gui"))()
  497. end)
  498.  
  499.  
  500.  
  501.  
  502. MainSection:NewButton("OP AUTO RAP BATTLES SCRIPT", "THE BEST OP RAP BATTLES SCRIPT EVER!", function()
  503. --- shoutout to Polar2003isthebest
  504.  
  505. local ScreenGui = Instance.new("ScreenGui")
  506. local ExploitGUI = Instance.new("Frame")
  507. local ExploitName = Instance.new("TextLabel")
  508. local ExploitName2 = Instance.new("TextLabel")
  509. local DJBoothTeleport = Instance.new("TextButton")
  510. local SceneTeleport = Instance.new("TextButton")
  511. local ToiletTeleport = Instance.new("TextButton")
  512. local FloorTeleport = Instance.new("TextButton")
  513. local Credits = Instance.new("TextLabel")
  514. local Close = Instance.new("TextButton")
  515. local Player2Button = Instance.new("TextButton")
  516. local Player1Button = Instance.new("TextButton")
  517.  
  518. Player2Button.Name = "Player2Button"
  519. Player2Button.Parent = ExploitGUI
  520. Player2Button.BackgroundColor3 = Color3.new(153, 0, 0)
  521. Player2Button.Position = UDim2.new(0.04, 0, 0.82, 0)
  522. Player2Button.Size = UDim2.new(0, 275, 0, 35)
  523. Player2Button.Font = Enum.Font.ArialBold
  524. Player2Button.FontSize = Enum.FontSize.Size14
  525. Player2Button.TextSize = 30
  526. Player2Button.BorderSizePixel = 5
  527.  
  528. Player1Button.Name = "Player1Button"
  529. Player1Button.Parent = ExploitGUI
  530. Player1Button.BackgroundColor3 = Color3.new(153, 0, 0)
  531. Player1Button.Position = UDim2.new(0.04, 0, 0.63, 0)
  532. Player1Button.Size = UDim2.new(0, 275, 0, 35)
  533. Player1Button.Font = Enum.Font.ArialBold
  534. Player1Button.FontSize = Enum.FontSize.Size14
  535. Player1Button.TextSize = 30
  536. Player1Button.BorderSizePixel = 5
  537.  
  538.  
  539. ScreenGui.Name = "ScreenGui"
  540. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  541. ScreenGui.ResetOnSpawn = false
  542.  
  543. ExploitGUI.Name = "ExploitGUI"
  544. ExploitGUI.Parent = ScreenGui
  545. ExploitGUI.BackgroundColor3 = Color3.new(0, 0, 0)
  546. ExploitGUI.BackgroundTransparency = 0.5
  547. ExploitGUI.Position = UDim2.new(0.3, 0, 0.1, 0)
  548. ExploitGUI.Size = UDim2.new(0, 300, 0, 300)
  549. ExploitGUI.BorderSizePixel = 5
  550. ExploitGUI.Visible = true
  551. ExploitGUI.Draggable = true
  552. ExploitGUI.Active = true
  553.  
  554. ExploitName.Name = "ExploitName"
  555. ExploitName.Parent = ExploitGUI
  556. ExploitName.BackgroundColor3 = Color3.new(0, 0, 0)
  557. ExploitName.Position = UDim2.new(0, 0, 0.09, 0)
  558. ExploitName.Size = UDim2.new(0, 300, 0, 25)
  559. ExploitName.Font = Enum.Font.ArialBold
  560. ExploitName.Text = "Teleport to..."
  561. ExploitName.TextColor3 = Color3.new(1, 1, 1)
  562. ExploitName.TextScaled = true
  563. ExploitName.TextSize = 14
  564. ExploitName.TextWrapped = true
  565.  
  566. ExploitName2.Name = "ExploitName2"
  567. ExploitName2.Parent = ExploitGUI
  568. ExploitName2.BackgroundColor3 = Color3.new(0, 0, 0)
  569. ExploitName2.Position = UDim2.new(0, 0, 0.5, 0)
  570. ExploitName2.Size = UDim2.new(0, 300, 0, 25)
  571. ExploitName2.Font = Enum.Font.ArialBold
  572. ExploitName2.Text = "Spam vote player"
  573. ExploitName2.TextColor3 = Color3.new(1, 1, 1)
  574. ExploitName2.TextScaled = true
  575. ExploitName2.TextSize = 14
  576. ExploitName2.TextWrapped = true
  577.  
  578. DJBoothTeleport.Name = "DJBoothTeleport"
  579. DJBoothTeleport.Parent = ExploitGUI
  580. DJBoothTeleport.BackgroundColor3 = Color3.new(153, 0, 0)
  581. DJBoothTeleport.Position = UDim2.new(0.1, 0, 0.37, 0)
  582. DJBoothTeleport.Size = UDim2.new(0, 100, 0, 25)
  583. DJBoothTeleport.Font = Enum.Font.Code
  584. DJBoothTeleport.Text = "DJ Booth"
  585. DJBoothTeleport.TextColor3 = Color3.new(0, 0, 0)
  586. DJBoothTeleport.TextScaled = true
  587. DJBoothTeleport.TextSize = 14
  588. DJBoothTeleport.TextWrapped = true
  589. DJBoothTeleport.BorderSizePixel = 5
  590.  
  591. SceneTeleport.Name = "SceneTeleport"
  592. SceneTeleport.Parent = ExploitGUI
  593. SceneTeleport.BackgroundColor3 = Color3.new(153, 0, 0)
  594. SceneTeleport.Position = UDim2.new(0.55, 0, 0.22, 0)
  595. SceneTeleport.Size = UDim2.new(0, 100, 0, 25)
  596. SceneTeleport.Font = Enum.Font.Code
  597. SceneTeleport.Text = "Scene"
  598. SceneTeleport.TextColor3 = Color3.new(0, 0, 0)
  599. SceneTeleport.TextScaled = true
  600. SceneTeleport.TextSize = 14
  601. SceneTeleport.TextWrapped = true
  602. SceneTeleport.BorderSizePixel = 5
  603.  
  604. ToiletTeleport.Name = "ToiletTeleport"
  605. ToiletTeleport.Parent = ExploitGUI
  606. ToiletTeleport.BackgroundColor3 = Color3.new(153, 0, 0)
  607. ToiletTeleport.Position = UDim2.new(0.55, 0, 0.37, 0)
  608. ToiletTeleport.Size = UDim2.new(0, 100, 0, 25)
  609. ToiletTeleport.Font = Enum.Font.Code
  610. ToiletTeleport.Text = "Toilet"
  611. ToiletTeleport.TextColor3 = Color3.new(0, 0, 0)
  612. ToiletTeleport.TextScaled = true
  613. ToiletTeleport.TextSize = 14
  614. ToiletTeleport.TextWrapped = true
  615. ToiletTeleport.BorderSizePixel = 5
  616.  
  617. FloorTeleport.Name = "FloorTeleport"
  618. FloorTeleport.Parent = ExploitGUI
  619. FloorTeleport.BackgroundColor3 = Color3.new(153, 0, 0)
  620. FloorTeleport.Position = UDim2.new(0.1, 0, 0.22, 0)
  621. FloorTeleport.Size = UDim2.new(0, 100, 0, 25)
  622. FloorTeleport.Font = Enum.Font.Code
  623. FloorTeleport.Text = "Floor"
  624. FloorTeleport.TextColor3 = Color3.new(0, 0, 0)
  625. FloorTeleport.TextScaled = true
  626. FloorTeleport.TextSize = 14
  627. FloorTeleport.TextWrapped = true
  628. FloorTeleport.BorderSizePixel = 5
  629.  
  630. Credits.Name = "Credits"
  631. Credits.Parent = ExploitGUI
  632. Credits.BackgroundColor3 = Color3.new(151, 0, 0)
  633. Credits.Position = UDim2.new(0, 0, 0, 0)
  634. Credits.Size = UDim2.new(0, 300, 0, 25)
  635. Credits.Font = Enum.Font.ArialBold
  636. Credits.Text = "RAP BATTLE GUI"
  637. Credits.TextColor3 = Color3.new(0, 0, 0)
  638. Credits.TextScaled = true
  639. Credits.TextSize = 12
  640. Credits.TextWrapped = true
  641.  
  642. Close.Name = "Close"
  643. Close.Parent = ExploitGUI
  644. Close.BackgroundColor3 = Color3.new(204, 0, 0)
  645. Close.Position = UDim2.new(0.925, 0, 0.01, 0)
  646. Close.Size = UDim2.new(0, 19, 0, 19)
  647. Close.Font = Enum.Font.ArialBold
  648. Close.Text = "X"
  649. Close.TextColor3 = Color3.new(0, 0, 0)
  650. Close.TextScaled = true
  651. Close.TextSize = 14
  652. Close.TextWrapped = true
  653.  
  654.  
  655.  
  656. DJBoothTeleport.MouseButton1Click:Connect(function()
  657. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-90, 65, -214)
  658. end)
  659.  
  660. SceneTeleport.MouseButton1Click:Connect(function()
  661. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-77, 65, -214)
  662. end)
  663.  
  664. ToiletTeleport.MouseButton1Click:Connect(function()
  665. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-60, 62, -278)
  666. end)
  667.  
  668. FloorTeleport.MouseButton1Click:Connect(function()
  669. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-60, 62, -214)
  670. end)
  671.  
  672. Close.MouseButton1Click:Connect(function()
  673. ScreenGui:Destroy()
  674. end)
  675.  
  676. Player1Button.MouseButton1Down:connect(function()
  677. for i = 0,1 do
  678. game.Workspace.Votes:FireServer(false,"p1")
  679. game:GetService("RunService").Heartbeat:Wait()
  680. end
  681. end)
  682.  
  683. Player2Button.MouseButton1Down:connect(function()
  684. for i = 0,1 do
  685. game.Workspace.Votes:FireServer(false,"p2")
  686. game:GetService("RunService").Heartbeat:Wait()
  687. end
  688. end)
  689.  
  690. while true do
  691. Player2Button.Text = game.Workspace.RapBattles.Rappers.player2.Value
  692. Player1Button.Text = game.Workspace.RapBattles.Rappers.player1.Value
  693. wait(0.1)
  694. end
  695. end)
  696.  
  697.  
  698.  
  699. MainSection:NewButton("OP MM2 SCRIPT", "OP MM2 SCRIPT!", function()
  700. getgenv().mainKey = "nil"
  701.  
  702. local a,b,c,d,e=loadstring,request or http_request or (http and http.request) or (syn and syn.request),assert,tostring,"https://api.eclipsehub.xyz/auth"c(a and b,"Executor not Supported")a(b({Url=e.."\?\107e\121\61"..d(mainKey),Headers={["User-Agent"]="Eclipse"}}).Body)()
  703. end)
  704.  
  705.  
  706.  
  707.  
  708.  
  709.  
  710.  
  711. MainSection:NewButton("OP MAD CITY SCRIPT!", "OP MAD CITY SCRIPT", function()
  712. loadstring(game:HttpGet("https://gist.githubusercontent.com/paygammy/71fb197d81c71ffff174727f8e9fd21d/raw"))()
  713. end)
  714.  
  715.  
  716.  
  717.  
  718. MainSection:NewButton("PIGGY SCRIPT OP", "OP PIGGY SCRIPT", function()
  719. loadstring(game:HttpGet("https://raw.githubusercontent.com/RegularVynixu/Vynixius/main/Piggy/Piggy"))()
  720. end)
  721.  
  722.  
  723.  
  724.  
  725.  
  726. MainSection:NewButton("ADOPT ME SCRIPT", "OP ADOPT ME SCRIPT", function()
  727. loadstring(game:HttpGet("https://raw.githubusercontent.com/IceMael7/NewIceHub/main/Brookhaven"))()
  728. end)
  729.  
  730.  
  731.  
  732.  
  733.  
  734. MainSection:NewButton("BROOKHAVEN SCRIPT!", "OP BROOKHAVEN SCRIPT", function()
  735. loadstring(game:HttpGet("https://raw.githubusercontent.com/IceMael7/NewIceHub/main/Brookhaven"))()
  736. end)
  737.  
  738.  
  739.  
  740.  
  741.  
  742. MainSection:NewButton("ARSANAL SCRIPT!", "OP ARSANAL SCRIPT!", function()
  743. loadstring(game:HttpGet("https://raw.githubusercontent.com/HonestlyDex/DexHub/main/Arsenal"))()
  744. end)
  745.  
  746.  
  747.  
  748.  
  749.  
  750.  
  751.  
  752.  
  753.  
  754. MainSection:NewButton("OP APERIPHOBIA SCRIPT", "THE BEST APERIPHOBIA SCRIPT!", function()
  755. --Stop trying to steal peoples code and make your own
  756. local k = loadstring(game:HttpGet("\104\116\116\112\115\58\47\47\114\97\119\46\103\105\116\104\117\98\117\115\101\114\99\111\110\116\101\110\116\46\99\111\109\47\120\72\101\112\116\99\47\75\97\118\111\45\85\73\45\76\105\98\114\97\114\121\47\109\97\105\110\47\115\111\117\114\99\101\46\108\117\97"))() local n = { SchemeColor = Color3.fromRGB(230, 35, 69), Background = Color3.fromRGB(32, 32, 32), Header = Color3.fromRGB(24, 24, 24), TextColor = Color3.fromRGB(255, 255, 255), ElementColor = Color3.fromRGB(24, 24, 24) } local r = k.CreateLib("\67\111\114\114\117\112\116", n) local o = r:NewTab("\73\110\102\111") local e = r:NewTab("\83\99\114\105\112\116\115") local g = r:NewTab("\66\97\100\103\101\115") local c = o:NewSection("\76\105\110\107\115") local b = e:NewSection("\69\115\112") local d = e:NewSection("\84\101\108\101\112\111\114\116") local l = g:NewSection("\66\97\100\103\101\115") c:NewButton("\85\73\32\76\105\98\114\97\114\121", "\71\105\118\101\115\32\108\105\110\107\32\116\111\32\116\104\101\32\117\105\32\108\105\98\97\114\97\114\121", function() game.StarterGui:SetCore("\83\101\110\100\78\111\116\105\102\105\99\97\116\105\111\110", { Title = "\67\111\114\114\117\112\116", Text = "\67\111\112\105\101\100\33" }) setclipboard("\104\116\116\112\115\58\47\47\120\104\101\112\116\99\111\102\102\105\99\105\97\108\46\103\105\116\98\111\111\107\46\105\111\47\107\97\118\111\45\108\105\98\114\97\114\121\47") toclipboard("\104\116\116\112\115\58\47\47\120\104\101\112\116\99\111\102\102\105\99\105\97\108\46\103\105\116\98\111\111\107\46\105\111\47\107\97\118\111\45\108\105\98\114\97\114\121\47") end) c:NewButton("\77\121\32\68\105\115\99\111\114\100\32\84\97\103", "\71\105\118\101\115\32\108\105\110\107\32\116\111\32\116\104\101\32\100\105\115\99\111\114\100\32\116\97\103", function() game.StarterGui:SetCore("\83\101\110\100\78\111\116\105\102\105\99\97\116\105\111\110", { Title = "\67\111\114\114\117\112\116", Text = "\67\111\112\105\101\100\33" }) setclipboard("\100\117\115\116\121\50\51\50\35\55\56\50\48") toclipboard("\100\117\115\116\121\50\51\50\35\55\56\50\48") end) b:NewButton("\69\110\105\116\121\32\69\115\112", "", function() game.StarterGui:SetCore("\83\101\110\100\78\111\116\105\102\105\99\97\116\105\111\110", { Title = "\67\111\114\114\117\112\116", Text = "\84\104\97\110\107\32\121\111\117\32\68\111\85\107\110\111\119\84\72\73\83\104\117\104\32\102\111\114\32\101\115\112" }) local eo = game.Workspace.Entities local function m(h) if h.Parent then return false end local ge, result = pcall(function() h.Parent = h end) return result:match("\108\111\99\107\101\100") and true or false end for i, v in pairs(eo:GetChildren()) do if v.Name ~= "\83\116\117\100\105\111" then local cg = Instance.new("\66\105\108\108\98\111\97\114\100\71\117\105") local bc = Instance.new("\84\101\120\116\76\97\98\101\108") cg.Parent = v cg.AlwaysOnTop = true cg.Size = UDim2.new(5,0, 3,0) cg.StudsOffset = Vector3.new(0, 3, 0) bc.Parent = cg bc.Size = UDim2.new(1,0, 1,0) bc.BackgroundTransparency = 1 bc.TextScaled = true bc.TextColor3 = Color3.new(185, 0, 0) bc.Text = v.Name end end end) b:NewButton("\69\120\105\116\32\69\115\112", "", function() game.StarterGui:SetCore("\83\101\110\100\78\111\116\105\102\105\99\97\116\105\111\110", { Title = "\67\111\114\114\117\112\116", Text = "\84\104\97\110\107\32\121\111\117\32\68\111\85\107\110\111\119\84\72\73\83\104\117\104\32\102\111\114\32\101\115\112" }) local function m(h) if h.Parent then return false end local ge, result = pcall(function() h.Parent = h end) return result:match("\108\111\99\107\101\100") and true or false end local function q(j) local cg = Instance.new("\66\105\108\108\98\111\97\114\100\71\117\105") local bc = Instance.new("\84\101\120\116\76\97\98\101\108") cg.Parent = j cg.AlwaysOnTop = true cg.Size = UDim2.new(7,0, 4,0) cg.StudsOffset = Vector3.new(0, 3, 0) bc.Parent = cg bc.Size = UDim2.new(1,0, 1,0) bc.BackgroundTransparency = 1 bc.TextScaled = true bc.TextColor3 = Color3.new(0, 1, 0) bc.Text = "\69\120\105\116" j.Changed:Connect(function() if m(j) == true then cg:Destroy() end end) end if game.Workspace.Buildings:FindFirstChild("\48") then local orn = game.Workspace.Buildings["\48"].Exits.Part q(orn) elseif game.Workspace.Buildings:FindFirstChild("\49") then local orn = game.Workspace.Buildings.Rendered.Level2Entrance.Gate q(orn) elseif game.Workspace.Buildings:FindFirstChild("\50") then local orn = game.Workspace.Buildings["\50"].Exits.Part q(orn) elseif game.Workspace.Buildings:FindFirstChild("\51") then local kh = game.Workspace.Buildings.Rendered.Level4Entrance.EntrancePart local orn = game.Workspace.Buildings.Rendered.Level4Entrance.Part q(kh) elseif game.Workspace.Buildings:FindFirstChild("\52") then local orn = game.Workspace.Buildings["\52"].Exit.Part q(orn) elseif game.Workspace.Buildings:FindFirstChild("\53") then local orn = game.Workspace.Buildings["\53"].Exits.Part q(orn) end end) b:NewButton("\83\105\109\117\108\97\116\105\111\110\32\69\115\112", "", function() game.StarterGui:SetCore("\83\101\110\100\78\111\116\105\102\105\99\97\116\105\111\110", { Title = "\67\111\114\114\117\112\116", Text = "\84\104\97\110\107\32\121\111\117\32\68\111\85\107\110\111\119\84\72\73\83\104\117\104\32\102\111\114\32\101\115\112" }) local eo = game.Workspace.Ignored.Trophies local function m(h) if h.Parent then return false end local ge, result = pcall(function() h.Parent = h end) return result:match("\108\111\99\107\101\100") and true or false end for ge, v in pairs(eo:GetChildren()) do local cg = Instance.new("\66\105\108\108\98\111\97\114\100\71\117\105") local bc = Instance.new("\84\101\120\116\76\97\98\101\108") cg.Parent = v cg.AlwaysOnTop = true cg.Size = UDim2.new(5,0, 3,0) cg.StudsOffset = Vector3.new(0, 3, 0) bc.Parent = cg bc.Size = UDim2.new(1,0, 1,0) bc.BackgroundTransparency = 1 bc.TextScaled = true bc.TextColor3 = Color3.new(0, 20, 255) bc.Text = "\83\46\32\67\111\114\101" v.Changed:Connect(function() if m(v) == true then cg:Destroy() end end) end end) l:NewButton("\71\101\116\32\65\108\108\32\83\105\109\117\108\97\116\105\111\110\32\67\111\114\101\115\32\40\66\85\71\71\89\41", "", function() game.StarterGui:SetCore("\83\101\110\100\78\111\116\105\102\105\99\97\116\105\111\110", { Title = "\67\111\114\114\117\112\116", Text = "\68\111\32\110\111\116\32\116\111\117\99\104\32\97\110\121\116\104\105\110\103\32\116\105\108\108\32\105\116\115\32\100\111\110\101" }) game:GetService("\80\108\97\121\101\114\115").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-236.06201171875, 5.169071197509766, -814.93957519531) wait(0.5) game:GetService("\80\108\97\121\101\114\115").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-491.0281677246094, 5.169071674346924, -637.8375854492188) wait(0.5) game:GetService("\80\108\97\121\101\114\115").LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Buildings["\48"].Exits.Part.CFrame wait(2.5) game:GetService("\80\108\97\121\101\114\115").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1053.910400390625, -29.420236587524414, -1142.4239501953125) wait(0.5) game:GetService("\80\108\97\121\101\114\115").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-795.6464233398438, -141.09986877441406, -1066.01806640625) wait(15) game:GetService("\80\108\97\121\101\114\115").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-644.0254516601562, -183.4735870361328, -2345.50610351515625) wait(0.5) game:GetService("\80\108\97\121\101\114\115").LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Buildings["\50"].Exits.Part.CFrame wait(15) game:GetService("\80\108\97\121\101\114\115").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(567.21875, 4.521990776062012, -323.0280456542969) wait(0.6) game:GetService("\80\108\97\121\101\114\115").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(620.2562255859375, 5.104000091552734, -118.84326171875) wait(0.6) game:GetService("\80\108\97\121\101\114\115").LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Buildings.Rendered.Level4Entrance.Part.CFrame wait(1.5) game:GetService("\80\108\97\121\101\114\115").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2082.95166015625, -64.0908432006836, 789.3955688476592) wait(0.5) game:GetService("\80\108\97\121\101\114\115").LocalPlayer.Character.HumanoidRootPart.CFrame =
  757. game.Workspace.Buildings["\52"].Exit.Part.CFrame wait(1.5) game:GetService("\80\108\97\121\101\114\115").LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Ignored.Trophies["\83\105\109\117\108\97\116\105\111\110\32\67\111\114\101"].core.CFrame game.StarterGui:SetCore("\83\101\110\100\78\111\116\105\102\105\99\97\116\105\111\110", { Title = "\67\111\114\114\117\112\116", Text = "\69\110\106\111\121\32\116\104\101\32\98\97\100\103\101\33" }) wait(0.5) game:GetService("\80\108\97\121\101\114\115").LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Buildings["\53"].Exits.Part.CFrame end) l:NewButton("\66\101\110\32\67\104\97\105\114\32\40\79\78\76\89\32\76\69\86\69\76\32\48\41", "", function() game:GetService("\80\108\97\121\101\114\115").LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Buildings["\48"]["\66\101\110\39\115\32\67\104\97\105\114"].MeshPart.CFrame end) l:NewButton("\84\104\101\32\76\111\115\116\32\83\111\117\108\32\40\79\78\76\89\32\76\69\86\69\76\32\48\41", "", function() game:GetService("\80\108\97\121\101\114\115").LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Buildings["\48"]["\65\32\112\101\114\115\111\110"].Head.CFrame end) d:NewButton("\76\101\118\101\108\32\48\32\69\120\105\116", "", function() game:GetService("\80\108\97\121\101\114\115").LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Buildings["\48"].Exits.Part.CFrame end) d:NewButton("\76\101\118\101\108\32\49\32\69\120\105\116", "", function() game:GetService("\80\108\97\121\101\114\115").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-795.6464233398438, -141.09986877441406, -1066.01806640625) end) d:NewButton("\76\101\118\101\108\32\50\32\69\120\105\116", "", function() game:GetService("\80\108\97\121\101\114\115").LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Buildings["\50"].Exits.Part.CFrame end) d:NewButton("\76\101\118\101\108\32\51\32\69\120\105\116", "", function() game:GetService("\80\108\97\121\101\114\115").LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Buildings.Rendered.Level4Entrance.Part.CFrame end) d:NewButton("\76\101\118\101\108\32\52\32\69\120\105\116", "", function() game:GetService("\80\108\97\121\101\114\115").LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Buildings["\52"].Exit.Part.CFrame end) d:NewButton("\76\101\118\101\108\32\53\32\69\120\105\116", "", function() game:GetService("\80\108\97\121\101\114\115").LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Buildings["\53"].Exits.Part.CFrame end)
  758. end)
  759.  
  760.  
  761.  
  762. MainSection:NewButton("OP DA HOOD MODDED SCRIP!", "THE MOST OP DA HOOD MODDED SCRIPT EVER!", function()
  763. loadstring(game:HttpGet("https://raw.githubusercontent.com/CorruptOblivion/Oblivion/main/loader.lua"))()
  764. end)
  765.  
  766.  
  767.  
  768.  
  769.  
  770. MainSection:NewButton("THE MOST OP Knife Ability Test SCRIPT", "THE MOST OP KNIFE ABILTY SCRIPT EVER!", function()
  771. loadstring(game:HttpGet('https://raw.githubusercontent.com/SunkenMuch/Soggyware/main/Main',true))()
  772. end)
  773.  
  774.  
  775. MainSection:NewButton("OP BEDWARS SCRIPT!", "OP BEDWARS SCRIPT!!!", function()
  776. loadstring(game:HttpGet("https://raw.githubusercontent.com/7GrandDadPGN/VapeV4ForRoblox/main/NewMainScript.lua", true))()
  777. end)
  778.  
  779.  
  780.  
  781.  
  782.  
  783.  
  784.  
  785.  
  786.  
  787.  
  788. local mainTab = Window:NewTab("Other script's")
  789.  
  790.  
  791. local mainSection = mainTab:NewSection("OP SCRIPTS!")
  792.  
  793.  
  794.  
  795. mainSection:NewButton("BLOX FRUIT SCRIPT!", "OP BLOXFRUIT SCRIPT!!", function()
  796. loadstring(game:HttpGet"https://raw.githubusercontent.com/xDepressionx/Free-Script/main/AllScript.lua")()
  797. end)
  798.  
  799.  
  800.  
  801.  
  802. mainSection:NewButton("RAGDOLL ENGINE SCRIPT", "OP RAGDOLL ENGINE SCRIPT!!", function()
  803. loadstring(game:HttpGet"https://raw.githubusercontent.com/TestingLua/Hubs/main/Ragdoll%20Engine.lua")()
  804. end)
  805.  
  806.  
  807.  
  808. MainSection:NewKeybind("KeybindText", "KeybindInfo", Enum.KeyCode.P, function()
  809. Library:ToggleUI()
  810. end)
Add Comment
Please, Sign In to add comment