kodiakexploits

Untitled

Oct 19th, 2025
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.78 KB | None | 0 0
  1. -- created by nullifiedw and BREAD (DanXvo)
  2. -- skid if youd like
  3.  
  4. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  5. local Window = Library.CreateLib("Art Hub - OP Hakx - CUSA", "GrapeTheme")
  6.  
  7. local bTab = Window:NewTab("Bypasses")
  8. local bSection = bTab:NewSection("Cuffs, freezes, etc.")
  9.  
  10. bSection:NewButton("Unfreeze", "ButtonInfo", function()
  11. local player = game.Players.LocalPlayer
  12. local character = player.Character or player.CharacterAdded:Wait()
  13. local hrp = character:WaitForChild("HumanoidRootPart")
  14. local humanoid = character:FindFirstChildOfClass("Humanoid")
  15.  
  16. if hrp.Anchored then
  17. hrp.Anchored = false
  18. end
  19.  
  20. if humanoid and humanoid.PlatformStand then
  21. humanoid.PlatformStand = false
  22. end
  23.  
  24. hrp.Velocity = Vector3.new(0, 0, 0)
  25. hrp.RotVelocity = Vector3.new(0, 0, 0)
  26. end)
  27.  
  28. bSection:NewButton("Bypass Cuffs", "Break cuffs so you can escape, dont do when cuffed by staff.", function()
  29. local player = game.Players.LocalPlayer
  30. local character = player.Character or player.CharacterAdded:Wait()
  31. local humanoid = character:FindFirstChildOfClass("Humanoid")
  32.  
  33. if humanoid then
  34. humanoid.Health = 0
  35. end
  36. end)
  37.  
  38. bSection:NewButton("Escape Jail (DOES NOT REMOVE PRISONER)", "Escape jail", function()
  39. local player = game.Players.LocalPlayer
  40. local character = player.Character or player.CharacterAdded:Wait()
  41. local hrp = character:WaitForChild("HumanoidRootPart")
  42.  
  43. local targetPosition = Vector3.new(122.82640838623047, 3.4384186267852783, 165.82994079589844)
  44.  
  45. hrp.CFrame = CFrame.new(targetPosition)
  46. end)
  47.  
  48. bSection:NewButton("Bypass Gate", "Bypass the Combat func", function()
  49. for _, part in workspace.Main.External.Bariers.Terminate:GetChildren() do
  50. part:Destroy()
  51. end
  52. end)
  53.  
  54. local tTab = Window:NewTab("Toggles")
  55. local tSection = tTab:NewSection("Toggle random but useful shit")
  56.  
  57. tSection:NewToggle("Anti Cuff", "ToggleInfo", function(state)
  58. if state then
  59. local Players = game:GetService("Players")
  60. local LocalPlayer = Players.LocalPlayer
  61.  
  62. getgenv().cuffEvade = true
  63.  
  64. local function instaRespawn()
  65. if not cuffEvade then return end
  66.  
  67. if not replicatesignal then
  68. LocalPlayer.Character.Humanoid.Health = 0
  69. return
  70. end
  71.  
  72. replicatesignal(LocalPlayer.ConnectDiedSignalBackend)
  73. task.wait(Players.RespawnTime - .01)
  74. replicatesignal(LocalPlayer.Kill)
  75. end
  76.  
  77. LocalPlayer.CharacterAdded:Connect(function(char)
  78. char.ChildAdded:Connect(function(child)
  79. if child.Name == "LeftArmWeld" then
  80. instaRespawn()
  81. end
  82. end)
  83. end)
  84.  
  85. if LocalPlayer.Character then
  86. if LocalPlayer.Character:FindFirstChild("LeftArmWeld") then
  87. instaRespawn()
  88. end
  89.  
  90. LocalPlayer.Character.ChildAdded:Connect(function(child)
  91. if child.Name == "LeftArmWeld" then
  92. instaRespawn()
  93. end
  94. end)
  95. end
  96. else
  97. print("Toggle Off")
  98. end
  99. end)
  100.  
  101. tSection:NewToggle("Anti AFK", "ToggleInfo", function(state)
  102. if state then
  103. print("Toggle On")
  104. else
  105. print("Toggle Off")
  106. end
  107. end)
  108.  
  109. local eTab = Window:NewTab("Exploits")
  110. local eSection = eTab:NewSection("The real stuffz")
  111.  
  112. eSection:NewButton("Staff Check", "Check online staff", function()
  113. local guiShown = false
  114.  
  115. local function createStaffGui(staffUsernames)
  116. if guiShown then return end
  117. guiShown = true
  118.  
  119. local screenGui = Instance.new("ScreenGui")
  120. screenGui.Parent = game:GetService("CoreGui")
  121.  
  122. local frame = Instance.new("Frame")
  123. frame.Size = UDim2.new(0, 200, 0, 100)
  124. frame.Position = UDim2.new(0.5, -100, 0.5, -50)
  125. frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  126. frame.BorderSizePixel = 1
  127. frame.Parent = screenGui
  128.  
  129. local textLabel = Instance.new("TextLabel")
  130. textLabel.Size = UDim2.new(1, 0, 1, 0)
  131. textLabel.Position = UDim2.new(0, 0, 0, 0)
  132. textLabel.BackgroundTransparency = 1
  133. textLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  134. textLabel.TextScaled = true
  135. textLabel.Text = "Staff Online:\n" .. table.concat(staffUsernames, "\n")
  136. textLabel.Parent = frame
  137.  
  138. wait(5)
  139. for i = 1, 50 do
  140. frame.BackgroundTransparency = i / 50
  141. textLabel.TextTransparency = i / 50
  142. wait(0.1)
  143. end
  144. screenGui:Destroy()
  145. end
  146.  
  147. local function checkStaffPlayers()
  148. local staffUsernames = {}
  149. for _, player in ipairs(game.Players:GetPlayers()) do
  150. if player.Team and player.Team.Name == "Staff" then
  151. table.insert(staffUsernames, player.Name)
  152. end
  153. end
  154.  
  155. if #staffUsernames > 0 then
  156. createStaffGui(staffUsernames)
  157. end
  158. end
  159.  
  160. game.Players.PlayerAdded:Connect(function(player)
  161. checkStaffPlayers()
  162. end)
  163.  
  164. checkStaffPlayers()
  165. end)
  166.  
  167. eSection:NewButton("Client Replication for CUSA", "basically fe bypass", function()
  168. print("Clicked")
  169. end)
  170.  
  171. local mTab = Window:NewTab("Misc")
  172. local mSection = mTab:NewSection("EVERY script needs this")
  173.  
  174. mSection:NewSlider("WalkSpeed", "SliderInfo", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
  175. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  176. end)
  177.  
  178. mSection:NewSlider("JumpPower", "SliderInfo", 500, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
  179. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  180. end)
Advertisement
Add Comment
Please, Sign In to add comment