--// MODDED Trixo´s Key system \\-- local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local Title = Instance.new("TextLabel") local InfoLabel = Instance.new("TextLabel") local KeyBox = Instance.new("TextBox") local ConfirmButton = Instance.new("TextButton") local CopyButton = Instance.new("TextButton") local StatusLabel = Instance.new("TextLabel") ScreenGui.Name = "KeySystem" ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") --// Idk what this does but its hir lol \\-- Frame.Name = "MainFrame" Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(35, 35, 35) Frame.Position = UDim2.new(0.3, 0, 0.3, 0) Frame.Size = UDim2.new(0.4, 0, 0.4, 0) Frame.BorderSizePixel = 0 Frame.BackgroundTransparency = 0.2 --// Title lol \\-- Title.Name = "Title" Title.Parent = Frame Title.Text = "Trixo's Key-System [MODDED]" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextScaled = true Title.Size = UDim2.new(1, 0, 0.2, 0) Title.BackgroundTransparency = 1 Title.Font = Enum.Font.SourceSansBold --// Create info label \\-- InfoLabel.Name = "InfoLabel" InfoLabel.Parent = Frame InfoLabel.Text = "Der Key ist NICHT auf Trixo's Discord-Server zu finden! lg c00lguy :D" InfoLabel.TextColor3 = Color3.fromRGB(255, 255, 255) InfoLabel.TextScaled = true InfoLabel.Size = UDim2.new(1, 0, 0.2, 0) InfoLabel.Position = UDim2.new(0, 0, 0.2, 0) InfoLabel.BackgroundTransparency = 1 InfoLabel.Font = Enum.Font.SourceSans --// Create useles Key input \\-- KeyBox.Name = "KeyBox" KeyBox.Parent = Frame KeyBox.PlaceholderText = "Gib hier NICHT deinen Key ein" KeyBox.Text = "" KeyBox.TextScaled = true KeyBox.Size = UDim2.new(0.8, 0, 0.15, 0) KeyBox.Position = UDim2.new(0.1, 0, 0.45, 0) KeyBox.Font = Enum.Font.SourceSans KeyBox.TextColor3 = Color3.fromRGB(0, 0, 0) KeyBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255) KeyBox.BorderSizePixel = 1 --// Bypass button ("Confirm button") xD \\-- ConfirmButton.Name = "ConfirmButton" ConfirmButton.Parent = Frame ConfirmButton.Text = "Key bestätigen [Bypass key]" ConfirmButton.TextScaled = true ConfirmButton.Size = UDim2.new(0.8, 0, 0.15, 0) ConfirmButton.Position = UDim2.new(0.1, 0, 0.65, 0) ConfirmButton.Font = Enum.Font.SourceSansBold ConfirmButton.TextColor3 = Color3.fromRGB(255, 255, 255) ConfirmButton.BackgroundColor3 = Color3.fromRGB(50, 150, 255) ConfirmButton.BorderSizePixel = 0 --// Copy button \\-- CopyButton.Name = "CopyButton" CopyButton.Parent = Frame CopyButton.Text = "Kopiere Modded Discord-Link" CopyButton.TextScaled = true CopyButton.Size = UDim2.new(0.8, 0, 0.15, 0) CopyButton.Position = UDim2.new(0.1, 0, 0.82, 0) CopyButton.Font = Enum.Font.SourceSansBold CopyButton.TextColor3 = Color3.fromRGB(255, 255, 255) CopyButton.BackgroundColor3 = Color3.fromRGB(100, 200, 100) CopyButton.BorderSizePixel = 0 --// Create Status Label \\-- StatusLabel.Name = "StatusLabel" StatusLabel.Parent = Frame StatusLabel.Text = "" StatusLabel.TextColor3 = Color3.fromRGB(255, 50, 50) StatusLabel.TextScaled = true StatusLabel.Size = UDim2.new(1, 0, 0.1, 0) StatusLabel.Position = UDim2.new(0, 0, 0.35, 0) StatusLabel.BackgroundTransparency = 1 StatusLabel.Font = Enum.Font.SourceSans --// This are the url´s Lol \\-- local pastebinURL = "https://pastebin.com/raw/At1A1J5s" -- Useles local discordLink = "https://discord.gg/fvb8uX4Q" -- Dc --// Funktion für den Bestätigungsbutton (Bypass-Version) \\-- ConfirmButton.MouseButton1Click:Connect(function() StatusLabel.Text = "Bypassing key system... This takes 1 second" StatusLabel.TextColor3 = Color3.fromRGB(50, 255, 50) wait(1) loadstring(game:HttpGet("https://gist.githubusercontent.com/Trixo55/731800989f1dab5d408f041877474455/raw/1eddfda1f8c5ee2d03efd35641ab85cbcf943b22/gistfile1.txt"))() StatusLabel.Text = "Erfolgreich! Skript wird ausgeführt..." StatusLabel.TextColor3 = Color3.fromRGB(50, 255, 50) wait(1) ScreenGui:Destroy() end) --// Funktion für den Kopierbutton \\-- CopyButton.MouseButton1Click:Connect(function() setclipboard(discordLink) StatusLabel.Text = "Link kopiert!" StatusLabel.TextColor3 = Color3.fromRGB(50, 255, 50) end)