Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local EditMeHowYouWant = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- local TextBox = Instance.new("TextBox")
- local TextButton = Instance.new("TextButton")
- local Frame = Instance.new("Frame")
- local TextButton_2 = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- EditMeHowYouWant.Name = "Edit Me How You Want"
- EditMeHowYouWant.Parent = ScreenGui
- EditMeHowYouWant.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- EditMeHowYouWant.Position = UDim2.new(0.31070891, 0, 0.373063147, 0)
- EditMeHowYouWant.Size = UDim2.new(0, 420, 0, 197)
- TextLabel.Parent = EditMeHowYouWant
- TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.BackgroundTransparency = 1.000
- TextLabel.Position = UDim2.new(0.261904776, 0, 0.131979704, 0)
- TextLabel.Size = UDim2.new(0, 200, 0, 50)
- TextLabel.Font = Enum.Font.SourceSansBold
- TextLabel.Text = "Key Needed!"
- TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14.000
- TextLabel.TextWrapped = true
- TextBox.Parent = EditMeHowYouWant
- TextBox.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
- TextBox.BorderSizePixel = 0
- TextBox.Position = UDim2.new(0.27619049, 0, 0.385786802, 0)
- TextBox.Size = UDim2.new(0, 194, 0, 45)
- TextBox.Font = Enum.Font.SourceSansBold
- TextBox.Text = "Key!"
- TextBox.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextBox.TextScaled = true
- TextBox.TextSize = 14.000
- TextBox.TextWrapped = true
- TextButton.Parent = EditMeHowYouWant
- TextButton.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
- TextButton.BackgroundTransparency = 1.000
- TextButton.BorderSizePixel = 0
- TextButton.Position = UDim2.new(0.269047648, 0, 0.685279191, 0)
- TextButton.Size = UDim2.new(0, 200, 0, 50)
- TextButton.Font = Enum.Font.SourceSansBold
- TextButton.Text = "Check Key!"
- TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextButton.TextScaled = true
- TextButton.TextSize = 14.000
- TextButton.TextWrapped = true
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
- Frame.Position = UDim2.new(0.243589759, 0, 0.339690059, 0)
- Frame.Size = UDim2.new(0, 550, 0, 307)
- Frame.Visible = false
- TextButton_2.Parent = Frame
- TextButton_2.BackgroundColor3 = Color3.fromRGB(24, 24, 24)
- TextButton_2.Position = UDim2.new(0.230909094, 0, 0.39739424, 0)
- TextButton_2.Size = UDim2.new(0, 275, 0, 90)
- TextButton_2.Font = Enum.Font.SourceSansBold
- TextButton_2.Text = "Load"
- TextButton_2.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextButton_2.TextScaled = true
- TextButton_2.TextSize = 14.000
- TextButton_2.TextWrapped = true
- TextButton_2.MouseButton1Down:connect(function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/RegularVynixu/Vynixius/main/Jailbreak/Jailbreak"))()
- end)
- -- Scripts:
- local function DTZX_fake_script() -- TextButton.LocalScript
- local script = Instance.new('LocalScript', TextButton)
- script.Parent.MouseButton1Click:Connect(function()
- if script.Parent.Parent.TextBox.Text == "103011" then ---- edit test with your code
- script.Parent.Parent.Parent.Frame.Visible = true
- wait(0)
- script.Parent.Parent.Visible = false
- end
- end)
- end
- coroutine.wrap(DTZX_fake_script)()
- local function XSVNMEB_fake_script() -- EditMeHowYouWant.LocalScript
- local script = Instance.new('LocalScript', EditMeHowYouWant)
- local UIS = game:GetService('UserInputService')
- local frame = script.Parent
- local dragToggle = nil
- local dragSpeed = 0.25
- local dragStart = nil
- local startPos = nil
- local function updateInput(input)
- local delta = input.Position - dragStart
- local position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X,
- startPos.Y.Scale, startPos.Y.Offset + delta.Y)
- game:GetService('TweenService'):Create(frame, TweenInfo.new(dragSpeed), {Position = position}):Play()
- end
- frame.InputBegan:Connect(function(input)
- if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) then
- dragToggle = true
- dragStart = input.Position
- startPos = frame.Position
- input.Changed:Connect(function()
- if input.UserInputState == Enum.UserInputState.End then
- dragToggle = false
- end
- end)
- end
- end)
- UIS.InputChanged:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
- if dragToggle then
- updateInput(input)
- end
- end
- end)
- end
- coroutine.wrap(XSVNMEB_fake_script)()
- local function ZDBVJTU_fake_script() -- Frame.LocalScript
- local script = Instance.new('LocalScript', Frame)
- local UIS = game:GetService('UserInputService')
- local frame = script.Parent
- local dragToggle = nil
- local dragSpeed = 0.25
- local dragStart = nil
- local startPos = nil
- local function updateInput(input)
- local delta = input.Position - dragStart
- local position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X,
- startPos.Y.Scale, startPos.Y.Offset + delta.Y)
- game:GetService('TweenService'):Create(frame, TweenInfo.new(dragSpeed), {Position = position}):Play()
- end
- frame.InputBegan:Connect(function(input)
- if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) then
- dragToggle = true
- dragStart = input.Position
- startPos = frame.Position
- input.Changed:Connect(function()
- if input.UserInputState == Enum.UserInputState.End then
- dragToggle = false
- end
- end)
- end
- end)
- UIS.InputChanged:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
- if dragToggle then
- updateInput(input)
- end
- end
- end)
- end
- coroutine.wrap(ZDBVJTU_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement