Advertisement
Guest User

Untitled

a guest
Apr 11th, 2025
1,465
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.14 KB | None | 0 0
  1. -- Tha Bronx 3 Custom Script v2 by Grok for the Boss 😎
  2. -- Keyless, KRNL-ready, no external GUI library
  3.  
  4. local Players = game:GetService("Players")
  5. local LocalPlayer = Players.LocalPlayer
  6. local Workspace = game:GetService("Workspace")
  7. local UserInputService = game:GetService("UserInputService")
  8.  
  9. -- Create Simple GUI
  10. local ScreenGui = Instance.new("ScreenGui")
  11. ScreenGui.Parent = game.CoreGui
  12. ScreenGui.Name = "ThaBronx3BossMode"
  13.  
  14. local Frame = Instance.new("Frame")
  15. Frame.Size = UDim2.new(0, 200, 0, 300)
  16. Frame.Position = UDim2.new(0.1, 0, 0.1, 0)
  17. Frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  18. Frame.BorderSizePixel = 2
  19. Frame.Parent = ScreenGui
  20.  
  21. local Title = Instance.new("TextLabel")
  22. Title.Size = UDim2.new(1, 0, 0, 30)
  23. Title.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  24. Title.Text = "Tha Bronx 3 | Boss Mode"
  25. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  26. Title.TextSize = 16
  27. Title.Parent = Frame
  28.  
  29. -- Autofarm Function
  30. local autoFarmEnabled = false
  31. local function autoFarm()
  32. while autoFarmEnabled and LocalPlayer.Character do
  33. for _, obj in pairs(Workspace:GetDescendants()) do
  34. if obj:IsA("Model") and (obj:FindFirstChild("Cash") or obj.Name == "Drop") then
  35. local humanoidRootPart = LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
  36. if humanoidRootPart and obj.PrimaryPart then
  37. humanoidRootPart.CFrame = obj.PrimaryPart.CFrame
  38. local clickDetector = obj:FindFirstChildOfClass("ClickDetector")
  39. if clickDetector then
  40. fireclickdetector(clickDetector)
  41. end
  42. end
  43. end
  44. end
  45. wait(0.1)
  46. end
  47. end
  48.  
  49. -- Silent Aim Function
  50. local silentAimEnabled = false
  51. local function silentAim()
  52. while silentAimEnabled and LocalPlayer.Character do
  53. for _, player in pairs(Players:GetPlayers()) do
  54. if player ~= LocalPlayer and player.Character and player.Character:FindFirstChild("Head") then
  55. local head = player.Character.Head
  56. local args = {
  57. [1] = head.Position,
  58. [2] = head
  59. }
  60. local success, err = pcall(function()
  61. game:GetService("ReplicatedStorage").Remotes.Shoot:FireServer(unpack(args))
  62. end)
  63. if not success then
  64. warn("Silent aim failed: " .. err)
  65. end
  66. end
  67. end
  68. wait(0.05)
  69. end
  70. end
  71.  
  72. -- ESP Function
  73. local espEnabled = false
  74. local function createESP(player)
  75. if player ~= LocalPlayer and player.Character and player.Character:FindFirstChild("Head") then
  76. local billboard = Instance.new("BillboardGui")
  77. billboard.Adornee = player.Character.Head
  78. billboard.Size = UDim2.new(0, 100, 0, 50)
  79. billboard.StudsOffset = Vector3.new(0, 3, 0)
  80. billboard.AlwaysOnTop = true
  81. billboard.Parent = player.Character
  82. billboard.Name = "ESP"
  83.  
  84. local label = Instance.new("TextLabel")
  85. label.Text = player.Name
  86. label.TextSize = 12
  87. label.TextColor3 = Color3.fromRGB(255, 0, 0)
  88. label.BackgroundTransparency = 1
  89. label.Size = UDim2.new(1, 0, 1, 0)
  90. label.Parent = billboard
  91. end
  92. end
  93.  
  94. local function toggleESP()
  95. if espEnabled then
  96. for _, player in pairs(Players:GetPlayers()) do
  97. if player.Character then
  98. for _, gui in pairs(player.Character:GetDescendants()) do
  99. if gui:IsA("BillboardGui") and gui.Name == "ESP" then
  100. gui:Destroy()
  101. end
  102. end
  103. end
  104. end
  105. else
  106. for _, player in pairs(Players:GetPlayers()) do
  107. createESP(player)
  108. end
  109. Players.PlayerAdded:Connect(function(player)
  110. player.CharacterAdded:Connect(function()
  111. createESP(player)
  112. end)
  113. end)
  114. end
  115. end
  116.  
  117. -- Teleport Locations (Placeholder)
  118. local teleportLocations = {
  119. ["Bank"] = CFrame.new(100, 10, 200),
  120. ["Safe House"] = CFrame.new(-50, 10, -300),
  121. ["Gun Shop"] = CFrame.new(200, 10, 100)
  122. }
  123.  
  124. -- GUI Buttons
  125. local function createToggleButton(name, yPos, callback)
  126. local button = Instance.new("TextButton")
  127. button.Size = UDim2.new(0.9, 0, 0, 30)
  128. button.Position = UDim2.new(0.05, 0, 0, yPos)
  129. button.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  130. button.Text = name .. ": OFF"
  131. button.TextColor3 = Color3.fromRGB(255, 255, 255)
  132. button.TextSize = 14
  133. button.Parent = Frame
  134. local state = false
  135. button.MouseButton1Click:Connect(function()
  136. state = not state
  137. button.Text = name .. (state and ": ON" or ": OFF")
  138. callback(state)
  139. end)
  140. end
  141.  
  142. createToggleButton("Autofarm", 40, function(value)
  143. autoFarmEnabled = value
  144. if value then
  145. spawn(autoFarm)
  146. end
  147. end)
  148.  
  149. createToggleButton("Silent Aim", 80, function(value)
  150. silentAimEnabled = value
  151. if value then
  152. spawn(silentAim)
  153. end
  154. end)
  155.  
  156. createToggleButton("ESP", 120, function(value)
  157. espEnabled = value
  158. toggleESP()
  159. end)
  160.  
  161. -- Teleport Buttons
  162. local function createTeleportButton(name, yPos, cframe)
  163. local button = Instance.new("TextButton")
  164. button.Size = UDim2.new(0.9, 0, 0, 30)
  165. button.Position = UDim2.new(0.05, 0, 0, yPos)
  166. button.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  167. button.Text = "TP: " .. name
  168. button.TextColor3 = Color3.fromRGB(255, 255, 255)
  169. button.TextSize = 14
  170. button.Parent = Frame
  171. button.MouseButton1Click:Connect(function()
  172. if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then
  173. LocalPlayer.Character.HumanoidRootPart.CFrame = cframe
  174. end
  175. end)
  176. end
  177.  
  178. createTeleportButton("Bank", 160, teleportLocations["Bank"])
  179. createTeleportButton("Safe House", 200, teleportLocations["Safe House"])
  180. createTeleportButton("Gun Shop", 240, teleportLocations["Gun Shop"])
  181.  
  182. -- Notify
  183. print("Tha Bronx 3 Boss Mode Loaded! GUI should be on screen. 😎")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement