ADVERTISEMENTREMOVE ADS
Insta kill all Open src [UPD]
479 views
Script Preview
Description
kill all brainrot open src
Features:
- open src
ADVERTISEMENTREMOVE ADS
93 Lines • 2.7 KiB
--// Brainrot Killer GUI v3
--// Made by Carterjam28YT
-- code starts here :D
local ScreenGui = Instance.new("ScreenGui")
ScreenGui.Name = "BaseKillerGUI"
ScreenGui.ResetOnSpawn = false
ScreenGui.Parent = game:GetService("CoreGui")
local Frame = Instance.new("Frame")
Frame.Size = UDim2.new(0, 300, 0, 150)
Frame.Position = UDim2.new(0.02, 0, 0.7, 0)
Frame.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
Frame.BorderSizePixel = 0
Frame.BackgroundTransparency = 0.05
Frame.Active = true
Frame.Draggable = true
Frame.Parent = ScreenGui
local UICorner = Instance.new("UICorner", Frame)
UICorner.CornerRadius = UDim.new(0, 10)
local Title = Instance.new("TextLabel")
Title.Size = UDim2.new(1, 0, 0, 35)
Title.BackgroundTransparency = 1
Title.Text = "⚔️ Brainrot Killer GUI" -- name you can change if wanted
Title.TextColor3 = Color3.fromRGB(255, 255, 255)
Title.TextSize = 22
Title.Font = Enum.Font.GothamBold
Title.Parent = Frame
-- button stuf
local ToggleBtn = Instance.new("TextButton")
ToggleBtn.Size = UDim2.new(0.9, 0, 0, 45)
ToggleBtn.Position = UDim2.new(0.05, 0, 0.4, 0)
ToggleBtn.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
ToggleBtn.TextColor3 = Color3.fromRGB(0, 255, 0)
ToggleBtn.Text = "Start"
ToggleBtn.TextSize = 20
ToggleBtn.Font = Enum.Font.GothamSemibold
ToggleBtn.Parent = Frame
local BtnCorner = Instance.new("UICorner", ToggleBtn)
BtnCorner.CornerRadius = UDim.new(0, 8)
local Credit = Instance.new("TextLabel")
Credit.Size = UDim2.new(1, 0, 0, 25)
Credit.Position = UDim2.new(0, 0, 0.83, 0)
Credit.BackgroundTransparency = 1
Credit.Text = "Made by Carterj28YT" --pls do not remove
Credit.TextColor3 = Color3.fromRGB(170, 170, 170)
Credit.TextSize = 16
Credit.Font = Enum.Font.GothamMedium
Credit.Parent = Frame
-- brain numing way to make a logic system
_G.a = false
local running = false
local function loopScript()
running = true
while _G.a and task.wait(0.1) do
for i, item in workspace.Bases[tostring(game.Players.LocalPlayer:GetAttribute("Base"))].Enemies:GetDescendants() do
if item.ClassName == "Humanoid" then
task.spawn(function()
item.Health = 0
end)
end
end
for i, item in workspace:GetChildren() do
if item.Name == "CashTemp" then
task.spawn(function()
item.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
end)
end
end
end
running = false
end
ToggleBtn.MouseButton1Click:Connect(function()
_G.a = not _G.a
if _G.a then
ToggleBtn.Text = "Stop"
ToggleBtn.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
if not running then
task.spawn(loopScript)
end
else
ToggleBtn.Text = "Start"
ToggleBtn.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
end
end)
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS



Comments