--// m1gzxx tuberlify V3 //-- -- Criar GUI local gui = Instance.new("ScreenGui") gui.Name = "m1gzxx tuberlify" gui.Parent = game.CoreGui gui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling -- Criar Frame principal local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 300, 0, 170) frame.Position = UDim2.new(0.35, 0, 0.35, 0) frame.BackgroundColor3 = Color3.fromRGB(25, 25, 25) frame.BorderSizePixel = 4 frame.Active = true -- ESSENCIAL para arrastar funcionar frame.Draggable = true -- Permite arrastar facilmente frame.Parent = gui -- Criar título local title = Instance.new("TextLabel") title.Text = "m1gzxx tuberlify" title.Size = UDim2.new(1, 0, 0, 40) title.BackgroundTransparency = 1 title.Font = Enum.Font.GothamBold title.TextScaled = true title.Parent = frame -- Criar botão local button = Instance.new("TextButton") button.Text = "tuberlify" button.Size = UDim2.new(0.8, 0, 0.4, 0) button.Position = UDim2.new(0.1, 0, 0.45, 0) button.BackgroundColor3 = Color3.fromRGB(35, 35, 35) button.TextColor3 = Color3.fromRGB(255, 255, 255) button.Font = Enum.Font.Gotham button.TextScaled = true button.Parent = frame -- Efeito RGB nas bordas e título task.spawn(function() while task.wait() do for hue = 0, 1, 0.01 do local color = Color3.fromHSV(hue, 1, 1) frame.BorderColor3 = color title.TextColor3 = color task.wait(0.02) end end end) -- Ação do botão button.MouseButton1Click:Connect(function() -- Skybox local sky = Instance.new("Sky") sky.SkyboxBk = "rbxassetid://86937638582302" sky.SkyboxDn = "rbxassetid://86937638582302" sky.SkyboxFt = "rbxassetid://86937638582302" sky.SkyboxLf = "rbxassetid://86937638582302" sky.SkyboxRt = "rbxassetid://86937638582302" sky.SkyboxUp = "rbxassetid://86937638582302" sky.Parent = game.Lighting -- Música local music = Instance.new("Sound") music.SoundId = "rbxassetid://1839246711" music.Volume = 5 music.Looped = true music.Parent = workspace music:Play() -- Decals em todas as partes for _, part in pairs(workspace:GetDescendants()) do if part:IsA("BasePart") then for _, face in pairs(Enum.NormalId:GetEnumItems()) do local decal = Instance.new("Decal") decal.Texture = "rbxassetid://86937638582302" decal.Face = face decal.Parent = part end end end end)