Advertisement
Ninjaaa1010

Untitled

Jan 26th, 2023
945
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.02 KB | None | 0 0
  1. Here you go : local kavoUi = loadstring(game:HttpGet("https://pastebin.com/raw/vff1bQ9F"))()
  2. local window = kavoUi.CreateLib("Coco Hub v2","Ocean")
  3.  
  4. ---Tabs
  5.  
  6. local Tab1 = window:NewTab("Games")
  7. local Tab1Section = Tab1:NewSection("Games")
  8. local Tab2 = window:NewTab("Credits")
  9. local Tab2Section = Tab2:NewSection("Made By Zachybrooo")
  10. local Tab2Section = Tab2:NewSection("Credits to DUHIFY")
  11. local Tab3= window:NewTab("Others")
  12. local Tab3Section = Tab3:NewSection("Others GUI'S")
  13.  
  14. ---Buttons
  15.  
  16. Tab1Section:NewButton("Meepcity🌁","No description",function()
  17. loadstring(game:HttpGet("https://raw.githubusercontent.com/synolope/mpcity/main/loader.lua",true))()
  18. end)
  19. Tab1Section:NewButton("Longest answer Wins🏆","No description",function()
  20. multiplier = 1000
  21. chatanswers = false
  22. Privatechatanswers = ""
  23. AnswerSpeed = math.random(3,9)
  24. loadstring(game:HttpGet("https://pastebin.com/raw/y8x6Z9Z9", true))()
  25. end)
  26. Tab1Section:NewButton("Rainbow friends","No description",function()
  27. loadstring(game:HttpGet('https://raw.githubusercontent.com/Sempiller/RainbowTool/main/Turkish.lua'))();
  28. end)
  29. Tab1Section:NewButton("doors🚪","No description",function()
  30. loadstring(game:HttpGet("https://raw.githubusercontent.com/ChronoAccelerator/CometRestoration/main/Main.lua"))()
  31. end)
  32. Tab1Section:NewButton("Clicker simulator","No description",function()
  33. loadstring(game:HttpGet("https://raw.githubusercontent.com/JumbleBumble/Scripts/main/MoneyClickerSimulator.lua",true))()
  34. end)
  35. Tab1Section:NewButton("t-titans battleground","No description",function()
  36. loadstring(game:HttpGet("https://pastebin.com/raw/wg9suSjr"))()
  37. end)
  38. Tab1Section:NewButton("Break in","No description",function()
  39. loadstring(game:HttpGet("https://raw.githubusercontent.com/TrixAde/Proxima-Hub/main/Main.lua"))()
  40. end)
  41. Tab1Section:NewButton("Epic Minigames","No description",function()
  42. loadstring(game:HttpGet("https://raw.githubusercontent.com/SlamminPig/rblxgames/main/Epic%20Minigames/EpicMinigamesGUI"))()
  43. end)
  44. Tab1Section:NewButton("Doors V2🚪","No description",function()
  45. loadstring(game:HttpGet("https://raw.githubusercontent.com/GamingScripter/Darkrai-X/main/Games/Doors"))()
  46. end)
  47. Tab1Section:NewButton("Pick a Door🚪","No description",function()
  48. loadstring(game:HttpGet("https://raw.githubusercontent.com/ToraIsMe2/ToraIsMe2/main/050door", true))()
  49. end)
  50. Tab1Section:NewButton("Escape papa Pizza's","No description",function()
  51. for _,v in pairs(game:GetDescendants()) do
  52. if v.ClassName == "RemoteEvent" then
  53. if v.Parent.Name == "WeaponsRemotes" or v.Parent.Name == "VipRemotes" or v.Parent.Name == "Remotes" then
  54. v:FireServer()
  55. end
  56. end
  57. end
  58. end)
  59. Tab1Section:NewButton("[🐯🍩UPDATE]Blox Friuts","No description",function()
  60. loadstring(game:HttpGet('https://raw.githubusercontent.com/acsu123/HOHO_H/main/Loading_UI'))()
  61. end)
  62. Tab1Section:NewButton("🎟 Evade","No description",function()
  63. loadstring(game:HttpGet("https://raw.githubusercontent.com/GamingScripter/Darkrai-X/main/Games/Evade"))()
  64. end)
  65. Tab1Section:NewButton("Combat Warriors","No description",function()
  66. loadstring(game:HttpGet("https://raw.githubusercontent.com/SussyImposterRed/Scripts/main/NEW_NOVA"))()
  67. end)
  68. Tab1Section:NewButton("🔪¡Survive the Killer!","No description",function()
  69. local games = {
  70.  
  71. ["SurviveTheKiller"] = 4580204640
  72.  
  73. }
  74.  
  75. for i,v in pairs(games) do
  76. if game.PlaceId == v then print("Supported!"); loadstring(game:HttpGet("https://raw.githubusercontent.com/MiloHaxx/ChairWare/main/Games/" .. i .. ".lua"))() end
  77. end
  78.  
  79. loadstring(game:HttpGet("https://raw.githubusercontent.com/MiloHaxx/ChairWare/main/dcJoin.lua"))()
  80. end)
  81. Tab1Section:NewButton("Bedwars 🛰️ [NEW KIT!]","No description",function()
  82. loadstring(game:HttpGet("https://raw.githubusercontent.com/bojoexploitz/yooo/main/itsobfuscated/InfinityHubTooOP", true))()
  83. end)
  84. Tab1Section:NewButton("Breaking Point","No description",function()
  85. loadstring(game:HttpGet("https://raw.githubusercontent.com/ColdStep2/Breaking-Point-Funny-Squid-Hax/main/Breaking%20Point%20Funny%20Squid%20Hax",true))();
  86. end)
  87. Tab1Section:NewButton("Knife Ability Test(Aimbot - Hydrogen/Fluxus)","No description",function()
  88. local Camera = game:GetService("Workspace").CurrentCamera
  89. local Players = game:GetService("Players")
  90. local LocalPlayer = game:GetService("Players").LocalPlayer
  91.  
  92. local function GetClosestPlayer()
  93. local ClosestPlayer = nil
  94. local FarthestDistance = math.huge
  95.  
  96. for i, v in pairs(Players.GetPlayers(Players)) do
  97. if v ~= LocalPlayer and v.Character and v.Character.FindFirstChild(v.Character, "HumanoidRootPart") then
  98. local DistanceFromPlayer = (LocalPlayer.Character.HumanoidRootPart.Position - v.Character.HumanoidRootPart.Position).Magnitude
  99.  
  100. if DistanceFromPlayer < FarthestDistance then
  101. FarthestDistance = DistanceFromPlayer
  102. ClosestPlayer = v
  103. end
  104. end
  105. end
  106.  
  107. if ClosestPlayer then
  108. return ClosestPlayer
  109. end
  110. end
  111.  
  112. local GameMetaTable = getrawmetatable(game)
  113. local OldGameMetaTableNamecall = GameMetaTable.__namecall
  114. setreadonly(GameMetaTable, false)
  115.  
  116. GameMetaTable.__namecall = newcclosure(function(object, ...)
  117. local NamecallMethod = getnamecallmethod()
  118. local Arguments = {...}
  119.  
  120. if tostring(NamecallMethod) == "FindPartOnRayWithIgnoreList" then
  121. local ClosestPlayer = GetClosestPlayer()
  122.  
  123. if ClosestPlayer and ClosestPlayer.Character then
  124. Arguments[1] = Ray.new(Camera.CFrame.Position, (ClosestPlayer.Character.Head.Position - Camera.CFrame.Position).Unit * (Camera.CFrame.Position - ClosestPlayer.Character.Head.Position).Magnitude)
  125. end
  126. end
  127.  
  128. return OldGameMetaTableNamecall(object, unpack(Arguments))
  129. end)
  130.  
  131. setreadonly(GameMetaTable, true)
  132. end)
  133. Tab1Section:NewButton("Breaking Point (H4R7N new)","No description",function()
  134. loadstring(game:HttpGet("https://raw.githubusercontent.com/H4R7NHacks/Obfuscated/master/Breaking%20Point%20H4R7N%20Hack%20v1.2.lua"))()
  135. end)
  136. Tab1Section:NewButton("Build A Boat For Treasure","No description",function()
  137. loadstring(game:HttpGet('https://raw.githubusercontent.com/XRoLLu/UWU/main/BUILD%20A%20BOAT%20FOR%20TREASURE.lua'))()
  138. end)
  139. Tab1Section:NewButton("💪Muscle Legends","No description",function()
  140. loadstring(game:HttpGet("https://raw.githubusercontent.com/harisiskandar178/Roblox-Script/main/Muscle%20Legend"))()
  141. end)
  142. Tab1Section:NewButton("Da Hood 🎃","No description",function()
  143. loadstring(game:HttpGet('https://raw.githubusercontent.com/lerkermer/lua-projects/master/SwagModeV002'))()
  144. end)
  145. Tab1Section:NewButton("Legends Of Speed ⚡️","No description",function()
  146. loadstring(game:HttpGet("https://pastebin.com/raw/1iMHrZ50", true))()
  147. end)
  148. Tab1Section:NewButton("Zombie Attack","No description",function()
  149. loadstring(game:HttpGet("https://raw.githubusercontent.com/GamingScripter/Darkrai-X/main/Games/Zombie%20Attack"))()
  150. end)
  151. Tab1Section:NewButton("Squid Game 🎮","No description",function()
  152. loadstring(game:HttpGet("https://raw.githubusercontent.com/LilFrench21/Hecta/main/Script/Squid%20Game"))()
  153. end)
  154. Tab2Section:NewButton("--- Added more games","No description",function()
  155. end)
  156. Tab2Section:NewButton("--- Theme changed","No description",function()
  157. end)
  158. Tab2Section:NewButton("--- Added the Others window","No description",function()
  159. end)
  160. Tab3Section:NewButton("Keyboard GUI","No description",function()
  161. loadstring(game:HttpGet("https://raw.githubusercontent.com/advxzivhsjjdhxhsidifvsh/mobkeyboard/main/main.txt", true))()
  162. end)
  163. Tab3Section:NewButton("Infinity yield FE","No description",function()
  164. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  165. end)
  166. Tab3Section:NewButton("Fly (Mobile)","No description",function()
  167. loadstring("\108\111\97\100\115\116\114\105\110\103\40\103\97\109\101\58\72\116\116\112\71\101\116\40\40\39\104\116\116\112\115\58\47\47\103\105\115\116\46\103\105\116\104\117\98\117\115\101\114\99\111\110\116\101\110\116\46\99\111\109\47\109\101\111\122\111\110\101\89\84\47\98\102\48\51\55\100\102\102\57\102\48\97\55\48\48\49\55\51\48\52\100\100\100\54\55\102\100\99\100\51\55\48\47\114\97\119\47\101\49\52\101\55\52\102\52\50\53\98\48\54\48\100\102\53\50\51\51\52\51\99\102\51\48\98\55\56\55\48\55\52\101\98\51\99\53\100\50\47\97\114\99\101\117\115\37\50\53\50\48\120\37\50\53\50\48\102\108\121\37\50\53\50\48\50\37\50\53\50\48\111\98\102\108\117\99\97\116\111\114\39\41\44\116\114\117\101\41\41\40\41\10\10")()
  168. end)
  169. Tab3Section:NewButton("Hitbox","No description",function()
  170. _G.HeadSize = 21
  171. _G.Disabled = true
  172. game:GetService('RunService').RenderStepped:connect(function()
  173. if _G.Disabled then
  174. for i,v in next, game:GetService('Players'):GetPlayers() do
  175. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  176. pcall(function()
  177. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  178. v.Character.HumanoidRootPart.Transparency = 0.7
  179. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really blue")
  180. v.Character.HumanoidRootPart.Material = "Neon"
  181. v.Character.HumanoidRootPart.CanCollide = false
  182. end)
  183. end
  184. end
  185. end
  186. end)
  187. end)
  188.  
Tags: Ninjalauq8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement