Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local KeySystem = Instance.new("ScreenGui")
- local TextBox = Instance.new("TextBox")
- local TextButton = Instance.new("TextButton")
- --Properties:
- KeySystem.Name = "KeySystem"
- KeySystem.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- KeySystem.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- TextBox.Parent = KeySystem
- TextBox.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- TextBox.BorderColor3 = Color3.fromRGB(255, 255, 255)
- TextBox.BorderSizePixel = 2
- TextBox.Position = UDim2.new(0.435815156, 0, 0.468982637, 0)
- TextBox.Size = UDim2.new(0.138121545, 0, 0.062034741, 0)
- TextBox.Font = Enum.Font.DenkOne
- TextBox.PlaceholderColor3 = Color3.fromRGB(53, 51, 51)
- TextBox.PlaceholderText = "Enter Key"
- TextBox.Text = ""
- TextBox.TextColor3 = Color3.fromRGB(255, 0, 0)
- TextBox.TextScaled = true
- TextBox.TextSize = 14.000
- TextBox.TextWrapped = true
- TextButton.Parent = KeySystem
- TextButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
- TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
- TextButton.BorderSizePixel = 2
- TextButton.Position = UDim2.new(0.453689158, 0, 0.563275456, 0)
- TextButton.Size = UDim2.new(0.102040805, 0, 0.0359801501, 0)
- TextButton.Font = Enum.Font.SourceSans
- TextButton.Text = "Verify"
- TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextButton.TextScaled = true
- TextButton.TextSize = 14.000
- TextButton.TextWrapped = true
- -- Scripts:
- local function JJKNKP_fake_script() -- KeySystem.LocalScript
- local script = Instance.new('LocalScript', KeySystem)
- local verified = game:GetService("Workspace"):FindFirstChild("Verified");
- local button = script.Parent:FindFirstChild("TextButton");
- local submission = script.Parent:FindFirstChild("TextBox")
- local key = "bb0ix";
- if not (verified) then
- warn("Verified Boolean Not Found!");
- end;
- button.MouseButton1Click:Connect(function()
- local noCaseSensitive = submission.Text:lower();
- if (noCaseSensitive == key) then
- print("Successfully Verified!");
- verified.Value = true;
- script.Parent:Destroy();
- end
- end);
- end
- coroutine.wrap(JJKNKP_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement