-- Create the ScreenGui local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "KoiInfoGui" ScreenGui.Parent = game.CoreGui -- Create the Main Frame local Frame = Instance.new("Frame") Frame.Size = UDim2.new(0, 350, 0, 220) Frame.Position = UDim2.new(0.5, -175, 0.5, -110) Frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40) Frame.BorderSizePixel = 2 Frame.BorderColor3 = Color3.fromRGB(255, 255, 255) Frame.Parent = ScreenGui -- Create the Text (Information) local TextLabel = Instance.new("TextLabel") TextLabel.Size = UDim2.new(1, -20, 0.6, 0) TextLabel.Position = UDim2.new(0, 10, 0, 10) TextLabel.BackgroundTransparency = 1 TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255) TextLabel.TextSize = 16 TextLabel.TextWrapped = true TextLabel.TextXAlignment = Enum.TextXAlignment.Center TextLabel.TextYAlignment = Enum.TextYAlignment.Top TextLabel.Font = Enum.Font.SourceSansBold TextLabel.Text = "Koi and Koi ware information\n\nI, koi have switched accounts from (@TCGBZZ) To Valkoi (@ValKoiq). Thanks for the support and i will keep on working on koi ware." TextLabel.Parent = Frame -- Create the Button local Button = Instance.new("TextButton") Button.Size = UDim2.new(0.8, 0, 0.2, 0) Button.Position = UDim2.new(0.1, 0, 0.75, 0) Button.Text = "I have read the information" Button.BackgroundColor3 = Color3.fromRGB(80, 80, 80) Button.TextColor3 = Color3.fromRGB(255, 255, 255) Button.Font = Enum.Font.SourceSansBold Button.Parent = Frame -- Button Click Logic Button.MouseButton1Click:Connect(function() ScreenGui:Destroy() end)