Advertisement
Geecgo

EEEEEEEEEE

Sep 11th, 2021
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.08 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local EditMeHowYouWant = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local TextBox = Instance.new("TextBox")
  10. local TextButton = Instance.new("TextButton")
  11. local Frame = Instance.new("Frame")
  12. local TextButton_2 = Instance.new("TextButton")
  13.  
  14. --Properties:
  15.  
  16. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  17. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  18.  
  19. EditMeHowYouWant.Name = "Edit Me How You Want"
  20. EditMeHowYouWant.Parent = ScreenGui
  21. EditMeHowYouWant.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  22. EditMeHowYouWant.Position = UDim2.new(0.31070891, 0, 0.373063147, 0)
  23. EditMeHowYouWant.Size = UDim2.new(0, 420, 0, 197)
  24.  
  25. TextLabel.Parent = EditMeHowYouWant
  26. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  27. TextLabel.BackgroundTransparency = 1.000
  28. TextLabel.Position = UDim2.new(0.261904776, 0, 0.131979704, 0)
  29. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  30. TextLabel.Font = Enum.Font.SourceSansBold
  31. TextLabel.Text = "Key Needed!"
  32. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  33. TextLabel.TextScaled = true
  34. TextLabel.TextSize = 14.000
  35. TextLabel.TextWrapped = true
  36.  
  37. TextBox.Parent = EditMeHowYouWant
  38. TextBox.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
  39. TextBox.BorderSizePixel = 0
  40. TextBox.Position = UDim2.new(0.27619049, 0, 0.385786802, 0)
  41. TextBox.Size = UDim2.new(0, 194, 0, 45)
  42. TextBox.Font = Enum.Font.SourceSansBold
  43. TextBox.Text = "Key!"
  44. TextBox.TextColor3 = Color3.fromRGB(0, 0, 0)
  45. TextBox.TextScaled = true
  46. TextBox.TextSize = 14.000
  47. TextBox.TextWrapped = true
  48.  
  49. TextButton.Parent = EditMeHowYouWant
  50. TextButton.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  51. TextButton.BackgroundTransparency = 1.000
  52. TextButton.BorderSizePixel = 0
  53. TextButton.Position = UDim2.new(0.269047648, 0, 0.685279191, 0)
  54. TextButton.Size = UDim2.new(0, 200, 0, 50)
  55. TextButton.Font = Enum.Font.SourceSansBold
  56. TextButton.Text = "Check Key!"
  57. TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  58. TextButton.TextScaled = true
  59. TextButton.TextSize = 14.000
  60. TextButton.TextWrapped = true
  61.  
  62. Frame.Parent = ScreenGui
  63. Frame.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  64. Frame.Position = UDim2.new(0.243589759, 0, 0.339690059, 0)
  65. Frame.Size = UDim2.new(0, 550, 0, 307)
  66. Frame.Visible = false
  67.  
  68. TextButton_2.Parent = Frame
  69. TextButton_2.BackgroundColor3 = Color3.fromRGB(24, 24, 24)
  70. TextButton_2.Position = UDim2.new(0.230909094, 0, 0.39739424, 0)
  71. TextButton_2.Size = UDim2.new(0, 275, 0, 90)
  72. TextButton_2.Font = Enum.Font.SourceSansBold
  73. TextButton_2.Text = "Load"
  74. TextButton_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  75. TextButton_2.TextScaled = true
  76. TextButton_2.TextSize = 14.000
  77. TextButton_2.TextWrapped = true
  78. TextButton_2.MouseButton1Down:connect(function()
  79. loadstring(game:HttpGet("https://raw.githubusercontent.com/RegularVynixu/Vynixius/main/Jailbreak/Jailbreak"))()
  80. end)
  81.  
  82. -- Scripts:
  83.  
  84. local function DTZX_fake_script() -- TextButton.LocalScript
  85. local script = Instance.new('LocalScript', TextButton)
  86.  
  87. script.Parent.MouseButton1Click:Connect(function()
  88. if script.Parent.Parent.TextBox.Text == "103011" then ---- edit test with your code
  89. script.Parent.Parent.Parent.Frame.Visible = true
  90. wait(0)
  91. script.Parent.Parent.Visible = false
  92. end
  93. end)
  94. end
  95. coroutine.wrap(DTZX_fake_script)()
  96. local function XSVNMEB_fake_script() -- EditMeHowYouWant.LocalScript
  97. local script = Instance.new('LocalScript', EditMeHowYouWant)
  98.  
  99. local UIS = game:GetService('UserInputService')
  100.  
  101. local frame = script.Parent
  102.  
  103.  
  104.  
  105. local dragToggle = nil
  106.  
  107. local dragSpeed = 0.25
  108.  
  109. local dragStart = nil
  110.  
  111. local startPos = nil
  112.  
  113.  
  114.  
  115. local function updateInput(input)
  116.  
  117. local delta = input.Position - dragStart
  118.  
  119. local position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X,
  120.  
  121. startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  122.  
  123. game:GetService('TweenService'):Create(frame, TweenInfo.new(dragSpeed), {Position = position}):Play()
  124.  
  125. end
  126.  
  127.  
  128.  
  129. frame.InputBegan:Connect(function(input)
  130.  
  131. if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) then
  132.  
  133. dragToggle = true
  134.  
  135. dragStart = input.Position
  136.  
  137. startPos = frame.Position
  138.  
  139. input.Changed:Connect(function()
  140.  
  141. if input.UserInputState == Enum.UserInputState.End then
  142.  
  143. dragToggle = false
  144.  
  145. end
  146.  
  147. end)
  148.  
  149. end
  150.  
  151. end)
  152.  
  153.  
  154.  
  155. UIS.InputChanged:Connect(function(input)
  156.  
  157. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  158.  
  159. if dragToggle then
  160.  
  161. updateInput(input)
  162.  
  163. end
  164.  
  165. end
  166.  
  167. end)
  168. end
  169. coroutine.wrap(XSVNMEB_fake_script)()
  170. local function ZDBVJTU_fake_script() -- Frame.LocalScript
  171. local script = Instance.new('LocalScript', Frame)
  172.  
  173. local UIS = game:GetService('UserInputService')
  174.  
  175. local frame = script.Parent
  176.  
  177.  
  178.  
  179. local dragToggle = nil
  180.  
  181. local dragSpeed = 0.25
  182.  
  183. local dragStart = nil
  184.  
  185. local startPos = nil
  186.  
  187.  
  188.  
  189. local function updateInput(input)
  190.  
  191. local delta = input.Position - dragStart
  192.  
  193. local position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X,
  194.  
  195. startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  196.  
  197. game:GetService('TweenService'):Create(frame, TweenInfo.new(dragSpeed), {Position = position}):Play()
  198.  
  199. end
  200.  
  201.  
  202.  
  203. frame.InputBegan:Connect(function(input)
  204.  
  205. if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) then
  206.  
  207. dragToggle = true
  208.  
  209. dragStart = input.Position
  210.  
  211. startPos = frame.Position
  212.  
  213. input.Changed:Connect(function()
  214.  
  215. if input.UserInputState == Enum.UserInputState.End then
  216.  
  217. dragToggle = false
  218.  
  219. end
  220.  
  221. end)
  222.  
  223. end
  224.  
  225. end)
  226.  
  227.  
  228.  
  229. UIS.InputChanged:Connect(function(input)
  230.  
  231. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  232.  
  233. if dragToggle then
  234.  
  235. updateInput(input)
  236.  
  237. end
  238.  
  239. end
  240.  
  241. end)
  242. end
  243. coroutine.wrap(ZDBVJTU_fake_script)()
  244.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement