Thanks to visit codestin.com
Credit goes to github.com

Skip to content
View 21088l's full-sized avatar

Block or report 21088l

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
21088l/README.md

-- Configuration local KICK_MESSAGE = "You have been kicked from the game."

-- Create GUI local gui = Instance.new("ScreenGui") gui.Name = "Kick GUI"

local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 200, 0, 100) frame.Position = UDim2.new(0.5, -100, 0.5, -50) frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255) frame.BorderSizePixel = 0 frame.Parent = gui

local label = Instance.new("TextLabel") label.Size = UDim2.new(1, 0, 0.5, 0) label.Position = UDim2.new(0, 0, 0, 0) label.BackgroundTransparency = 1 label.Font = Enum.Font.SourceSans label.Text = "Kick a Player" label.TextColor3 = Color3.fromRGB(0, 0, 0) label.TextSize = 20 label.Parent = frame

local textBox = Instance.new("TextBox") textBox.Size = UDim2.new(1, -20, 0.3, 0) textBox.Position = UDim2.new(0, 10, 0.5, -20) textBox.PlaceholderText = "Enter Player Name" textBox.Font = Enum.Font.SourceSans textBox.TextColor3 = Color3.fromRGB(0, 0, 0) textBox.TextSize = 14 textBox.Parent = frame

local kickButton = Instance.new("TextButton") kickButton.Size = UDim2.new(1, -20, 0.2, 0) kickButton.Position = UDim2.new(0, 10, 0.8, -10) kickButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) kickButton.BorderSizePixel = 0 kickButton.Font = Enum.Font.SourceSans kickButton.Text = "Kick Player" kickButton.TextColor3 = Color3.fromRGB(255, 255, 255) kickButton.TextSize = 16 kickButton.Parent = frame

-- Kick Function local function KickPlayer(playerName) local player = game.Players:FindFirstChild(playerName) if player then player:Kick(KICK_MESSAGE) end end

-- Connect Kick Button to Kick Function kickButton.MouseButton1Click:Connect(function() local playerName = textBox.Text KickPlayer(playerName) end)

-- Show GUI gui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")

Popular repositories Loading

  1. img-logger img-logger Public

    Forked from WraithsDev/img-logger

    HTTP sunucusu üzerinden çalışan ve istemci bağlantılarını analiz ederek çeşitli bilgileri bir Discord webhook’una gönderen bir istek takip ve analiz sistemidir. İstemci bir resmi görüntülediğinde, …

    Python 1

  2. 21088l 21088l Public

    Config files for my GitHub profile.

  3. Nameee Nameee Public

    Descriptionn

  4. Hsisbsjs Hsisbsjs Public

    Gshshdjsjd

  5. F F Public

    G

  6. Kick Kick Public

    Roblox script