-- Instances
local main = Instance.new("ScreenGui")
local frame = Instance.new("Frame")
local input = Instance.new("TextBox")
local button30 = Instance.new("TextButton")
local titler = Instance.new("TextLabel")
local cope = Instance.new("TextButton")
-- UI
main.Name = "main"
main.Parent = PlayerGui
frame.Name = "frame"
frame.Parent = cka
frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
frame.BorderColor3 = Color3.fromRGB(255, 0, 0)
frame.BorderSizePixel = 3
frame.Position = UDim2.new(0,3,0.3,0)
frame.Size = UDim2.new(0, 300, 0, 400)
titler.Name = "titler"
titler.Parent = frame
titler.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
titler.BorderColor3 = Color3.fromRGB(255, 0, 0)
titler.BorderSizePixel = 3
titler.Size = UDim2.new(0, 300, 0, 40)
titler.Font = Enum.Font.SourceSans
titler.Text = "14Kiddz And XybName GUI v1.3"
titler.TextColor3 = Color3.fromRGB(255, 255, 255)
titler.TextSize = 24.000
cope.Name = "Close"
cope.Parent = cka
cope.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
cope.BorderColor3 = Color3.fromRGB(255, 0, 0)
cope.BorderSizePixel = 3
cope.Position = UDim2.new(0,3,0.3,380)
cope.Size = UDim2.new(0, 300, 0, 20)
cope.Font = Enum.Font.SourceSans
cope.Text = "Close"
cope.TextColor3 = Color3.fromRGB(255, 255, 255)
button30.Name = "button"
button30.Parent = frame
button30.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
button30.BorderColor3 = Color3.fromRGB(255, 0, 0)
button30.BorderSizePixel = 3
button30.Position = UDim2.new(0.25, 0, 0.7, 0)
button30.Size = UDim2.new(0, 100, 0, 40)
button30.Font = Enum.Font.SourceSans
button30.Text = "Check Key"
button30.TextColor3 = Color3.fromRGB(255, 255, 255)
button30.TextSize = 14.000
button30.TextWrapped = true
input.Name = "input"
input.Parent = main
input.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
input.BorderColor3 = Color3.fromRGB(255, 0, 0)
input.BorderSizePixel = 3
input.Position = UDim2.new(0.804104507, 0, 0.965110958, 0)
input.Size = UDim2.new(0, 200, 0, 19)
input.Font = Enum.Font.SourceSans
input.PlaceholderColor3 = Color3.fromRGB(255, 255, 255)
input.PlaceholderText = "Input"
input.Text = ""
input.TextColor3 = Color3.fromRGB(255, 255, 255)
input.TextSize = 14.000
input.TextStrokeColor3 = Color3.fromRGB(255, 0, 0)
input.TextWrapped = true
Callback = function(Value)
_G.KeyInput = Value
end
-- button function
button30.MouseButton1Down:connect(function()
if _G.KeyInput == _G.Key then
local msg = Instance.new("Message",workspace)
msg.Text = "completed key system !"
wait(1.8)
msg:Destroy()
else
local msg = Instance.new("Message",workspace)
msg.Text = "Incorrect Key !"
wait(1.8)
msg:Destroy()
end
end)
-- Sussy Among Us
_G.Key = "lmao"
_G.KeyInput = "string"
To embed this project on your website, copy the following code and paste it into your website's HTML: