Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Created by: Free Scripts
- -- Discord: freescripts1
- -- YouTube: Free Scripts
- -- Instructions
- -- 1. Copy & Paste into a client Executor (Cryptic, Codex, Wave, etc.)
- -- 2. Execute
- -- 3. Code will automatically be below any client side GUI's
- local ScreenGui = Instance.new("ScreenGui")
- local GreenScreen = Instance.new("Frame")
- local CloseButton = Instance.new("TextButton")
- local ColorButton = Instance.new("TextButton")
- local colors = {
- Color3.fromRGB(0, 255, 0),
- Color3.fromRGB(0, 0, 255),
- Color3.fromRGB(255, 0, 0),
- Color3.fromRGB(255, 255, 255),
- Color3.fromRGB(0, 0, 0)
- }
- local currentColorIndex = 1
- ScreenGui.Name = "GreenScreenGui"
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- ScreenGui.DisplayOrder = -999999999
- ScreenGui.Parent = game:GetService("CoreGui")
- GreenScreen.Name = "GreenScreen"
- GreenScreen.Parent = ScreenGui
- GreenScreen.BackgroundColor3 = colors[currentColorIndex]
- GreenScreen.BorderSizePixel = 0
- GreenScreen.Size = UDim2.new(1, 0, 1, 0)
- GreenScreen.Position = UDim2.new(0, 0, 0, 0)
- GreenScreen.ZIndex = -1
- CloseButton.Name = "CloseButton"
- CloseButton.Parent = GreenScreen
- CloseButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
- CloseButton.Position = UDim2.new(1, -25, 0, 0)
- CloseButton.Size = UDim2.new(0, 25, 0, 25)
- CloseButton.Font = Enum.Font.SourceSansBold
- CloseButton.Text = "X"
- CloseButton.TextColor3 = Color3.fromRGB(255, 255, 255)
- CloseButton.TextSize = 20.000
- CloseButton.ZIndex = 999999999
- ColorButton.Name = "ColorButton"
- ColorButton.Parent = GreenScreen
- ColorButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- ColorButton.Position = UDim2.new(1, -55, 0, 0)
- ColorButton.Size = UDim2.new(0, 25, 0, 25)
- ColorButton.Font = Enum.Font.SourceSansBold
- ColorButton.Text = "C"
- ColorButton.TextColor3 = Color3.fromRGB(0, 0, 0)
- ColorButton.TextSize = 20.000
- ColorButton.ZIndex = 999999999
- CloseButton.MouseButton1Click:Connect(function()
- ScreenGui:Destroy()
- end)
- ColorButton.MouseButton1Click:Connect(function()
- currentColorIndex = currentColorIndex % #colors + 1
- GreenScreen.BackgroundColor3 = colors[currentColorIndex]
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement