--// CONFIG local assetId = "rbxassetid://8408806737" local musicId1 = "rbxassetid://140387504803063" -- NOVA MÚSICA local musicId2 = "rbxassetid://107991235917983" local player = game.Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") --// GUI BASE local screenGui = Instance.new("ScreenGui") screenGui.Name = "c00lGUI" screenGui.Parent = playerGui local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 300, 0, 340) frame.Position = UDim2.new(0.5, -150, 0.5, -170) frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) frame.BorderColor3 = Color3.fromRGB(255, 0, 0) frame.BorderSizePixel = 4 frame.Active = true frame.Draggable = true frame.Parent = screenGui local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 40) title.BackgroundTransparency = 1 title.Text = "c00lGUI" title.TextColor3 = Color3.fromRGB(255, 0, 0) title.TextScaled = true title.Font = Enum.Font.Arcade title.Parent = frame -- Função para criar botão local function createButton(text, positionY) local button = Instance.new("TextButton") button.Size = UDim2.new(0.8, 0, 0, 35) button.Position = UDim2.new(0.1, 0, 0, positionY) button.BackgroundColor3 = Color3.fromRGB(20, 20, 20) button.BorderColor3 = Color3.fromRGB(255, 0, 0) button.BorderSizePixel = 2 button.TextColor3 = Color3.fromRGB(255, 0, 0) button.Text = text button.Font = Enum.Font.Arcade button.TextScaled = true button.Parent = frame return button end -- Criando botões local skyboxBtn = createButton("Skybox", 50) local decalBtn = createButton("Decal Spam", 95) local hintBtn = createButton("Hint", 140) local particleBtn = createButton("Particle Spam", 185) local musicBtn1 = createButton("Music", 230) local musicBtn2 = createButton("Music 2", 275) -- SKYBOX skyboxBtn.MouseButton1Click:Connect(function() local sky = Instance.new("Sky") sky.SkyboxBk = assetId sky.SkyboxDn = assetId sky.SkyboxFt = assetId sky.SkyboxLf = assetId sky.SkyboxRt = assetId sky.SkyboxUp = assetId sky.Parent = game:GetService("Lighting") end) -- DECAL SPAM decalBtn.MouseButton1Click:Connect(function() for _, part in pairs(workspace:GetDescendants()) do if part:IsA("BasePart") then local decal = Instance.new("Decal") decal.Texture = assetId decal.Face = Enum.NormalId.Top decal.Parent = part end end end) -- HINT hintBtn.MouseButton1Click:Connect(function() local hint = Instance.new("Hint") hint.Text = "team c00lkidd Join today" hint.Parent = workspace end) -- PARTICLE SPAM particleBtn.MouseButton1Click:Connect(function() for _, part in pairs(workspace:GetDescendants()) do if part:IsA("BasePart") then local particle = Instance.new("ParticleEmitter") particle.Texture = assetId particle.Rate = 50 particle.Lifetime = NumberRange.new(1) particle.Speed = NumberRange.new(5) particle.Parent = part end end end) -- MUSICAS local sound1 = Instance.new("Sound") sound1.SoundId = musicId1 sound1.Volume = 3 sound1.Looped = true sound1.Parent = game:GetService("SoundService") local sound2 = Instance.new("Sound") sound2.SoundId = musicId2 sound2.Volume = 3 sound2.Looped = true sound2.Parent = game:GetService("SoundService") musicBtn1.MouseButton1Click:Connect(function() if not sound1.IsPlaying then sound2:Stop() sound1:Play() else sound1:Stop() end end) musicBtn2.MouseButton1Click:Connect(function() if not sound2.IsPlaying then sound1:Stop() sound2:Play() else sound2:Stop() end end)