local ScreenGui = Instance.new("ScreenGui") ScreenGui.IgnoreGuiInset = true ScreenGui.ResetOnSpawn = false ScreenGui.Parent = game:GetService("CoreGui") -- Frame rainbow background full screen local Frame = Instance.new("Frame") Frame.Size = UDim2.new(1, 0, 1, 0) Frame.Position = UDim2.new(0, 0, 0, 0) Frame.BackgroundTransparency = 0 Frame.BorderSizePixel = 0 Frame.Parent = ScreenGui -- Imaginea mare local Image = Instance.new("ImageLabel") Image.Size = UDim2.new(1, 0, 1, 0) Image.BackgroundTransparency = 1 Image.Image = "rbxassetid://136970392376069" Image.ScaleType = Enum.ScaleType.Fit Image.Parent = ScreenGui Image.Visible = false -- Textul cel mare și enervant local TextLabel = Instance.new("TextLabel") TextLabel.Size = UDim2.new(1, 0, 0.25, 0) TextLabel.Position = UDim2.new(0, 0, 0.375, 0) -- cam la mijloc TextLabel.BackgroundTransparency = 1 TextLabel.Text = "sorry skid make u own skid" TextLabel.TextColor3 = Color3.new(1, 1, 1) TextLabel.TextStrokeTransparency = 0 TextLabel.TextStrokeColor3 = Color3.new(0, 0, 0) TextLabel.Font = Enum.Font.SourceSansBold TextLabel.TextScaled = true TextLabel.TextSize = 100 -- valoare maximă de bază (încă se scalează) TextLabel.Parent = ScreenGui local RunService = game:GetService("RunService") local hue = 0 RunService.Heartbeat:Connect(function(delta) hue = (hue + delta * 1100) % 1 -- cât mai rapid posibil Frame.BackgroundColor3 = Color3.fromHSV(hue, 1, 1) -- Flicker imagine + text în același timp (maximă nebunie) local visible = not Image.Visible Image.Visible = visible TextLabel.Visible = visible end)