local ScreenGui = Instance.new("ScreenGui") local Main = Instance.new("Frame") local Corner = Instance.new("UICorner") local Stroke = Instance.new("UIStroke") local Title = Instance.new("TextLabel") local UserLabel = Instance.new("TextLabel") local UserBox = Instance.new("TextBox") local AmountLabel = Instance.new("TextLabel") local AmountBox = Instance.new("TextBox") local ApplyButton = Instance.new("TextButton") local ButtonCorner = Instance.new("UICorner") ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui ScreenGui.ResetOnSpawn = false Main.Parent = ScreenGui Main.AnchorPoint = Vector2.new(0.5,0.5) Main.Position = UDim2.new(0.5,0,0.5,0) Main.Size = UDim2.new(0,500,0,300) Main.BackgroundColor3 = Color3.fromRGB(15,25,35) Corner.CornerRadius = UDim.new(0,20) Corner.Parent = Main Stroke.Parent = Main Stroke.Thickness = 3 Stroke.Color = Color3.fromRGB(0,170,255) Title.Parent = Main Title.BackgroundTransparency = 1 Title.Size = UDim2.new(1,0,0,60) Title.Text = "FREE GIFTER" Title.TextColor3 = Color3.new(1,1,1) Title.TextScaled = true Title.Font = Enum.Font.GothamBlack UserLabel.Parent = Main UserLabel.BackgroundTransparency = 1 UserLabel.Position = UDim2.new(0.08,0,0.22,0) UserLabel.Size = UDim2.new(0.8,0,0,25) UserLabel.Text = "USERNAME" UserLabel.TextXAlignment = Enum.TextXAlignment.Left UserLabel.Font = Enum.Font.GothamBold UserLabel.TextColor3 = Color3.fromRGB(0,170,255) UserBox.Parent = Main UserBox.Position = UDim2.new(0.08,0,0.32,0) UserBox.Size = UDim2.new(0.84,0,0,40) UserBox.Text = "" UserBox.PlaceholderText = "DELFI" UserBox.Font = Enum.Font.GothamBold UserBox.TextColor3 = Color3.new(1,1,1) UserBox.BackgroundColor3 = Color3.fromRGB(20,35,55) local UC = Instance.new("UICorner",UserBox) UC.CornerRadius = UDim.new(0,10) AmountLabel.Parent = Main AmountLabel.BackgroundTransparency = 1 AmountLabel.Position = UDim2.new(0.08,0,0.48,0) AmountLabel.Size = UDim2.new(0.8,0,0,25) AmountLabel.Text = "ROBUX AMOUNT" AmountLabel.TextXAlignment = Enum.TextXAlignment.Left AmountLabel.Font = Enum.Font.GothamBold AmountLabel.TextColor3 = Color3.fromRGB(0,170,255) AmountBox.Parent = Main AmountBox.Position = UDim2.new(0.08,0,0.58,0) AmountBox.Size = UDim2.new(0.84,0,0,40) AmountBox.Text = "" AmountBox.PlaceholderText = "1223213321" AmountBox.Font = Enum.Font.GothamBold AmountBox.TextColor3 = Color3.new(1,1,1) AmountBox.BackgroundColor3 = Color3.fromRGB(20,35,55) local AC = Instance.new("UICorner",AmountBox) AC.CornerRadius = UDim.new(0,10) ApplyButton.Parent = Main ApplyButton.Position = UDim2.new(0.08,0,0.78,0) ApplyButton.Size = UDim2.new(0.84,0,0,50) ApplyButton.Text = "APPLY" ApplyButton.Font = Enum.Font.GothamBlack ApplyButton.TextScaled = true ApplyButton.TextColor3 = Color3.new(1,1,1) ApplyButton.BackgroundColor3 = Color3.fromRGB(0,40,120) ButtonCorner.Parent = ApplyButton ButtonCorner.CornerRadius = UDim.new(0,12) ApplyButton.MouseButton1Click:Connect(function() ApplyButton.Text = "PROCESSING..." wait(2) ApplyButton.Text = "SUCCESS!" wait(1) ApplyButton.Text = "APPLY" end)