RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Make the VoteKick GUI look even more beautiful."
-- local script local VoteKickGUI = script.Parent VoteKickGUI.BackgroundColor3 = Color3.fromRGB(255, 0, 0) VoteKickGUI.BorderColor3 = Color3.fromRGB(0, 0, 0) VoteKickGUI.BorderSizePixel = 4 VoteKickGUI.Name = "VoteKickGUI" local title = Instance.new("TextLabel", VoteKickGUI) title.Name = "Title" title.Text = "Vote Kick" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.TextSize = 24 title.BackgroundTransparency = 1 title.Size = UDim2.new(1, 0, 0.2, 0) title.Font = Enum.Font.SourceSansBold title.TextXAlignment = Enum.TextXAlignment.Center title.TextYAlignment = Enum.TextYAlignment.Center local playerName = Instance.new("TextLabel", VoteKickGUI) playerName.Name = "PlayerName" playerName.Text = "Player Name" playerName.TextColor3 = Color3.fromRGB(255, 255, 255) playerName.TextSize = 18 playerName.BackgroundTransparency = 1 playerName.Size = UDim2.new(1, 0, 0.2, 0) playerName.Position = UDim2.new(0, 0, 0.2, 0) playerName.Font = Enum.Font.SourceSans playerName.TextXAlignment = Enum.TextXAlignment.Center playerName.TextYAlignment = Enum.TextYAlignment.Center local yesButton = Instance.new("TextButton", VoteKickGUI) yesButton.Name = "YesButton" yesButton.Text = "Yes" yesButton.TextColor3 = Color3.fromRGB(255, 255, 255) yesButton.TextSize = 18 yesButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0) yesButton.Size = UDim2.new(0.5, 0, 0.2, 0) yesButton.Position = UDim2.new(0, 0, 0.4, 0) yesButton.Font = Enum.Font.SourceSans local noButton = Instance.new("TextButton", VoteKickGUI) noButton.Name = "NoButton" noButton.Text = "No" noButton.TextColor3 = Color3.fromRGB(255, 255, 255) noButton.TextSize = 18 noButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) noButton.Size = UDim2.new(0.5, 0, 0.2, 0) noButton.Position = UDim2.new(0.5, 0, 0.4, 0) noButton.Font = Enum.Font.SourceSans