Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.46 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local Jailbreak = Instance.new("ScreenGui")
  7. local Main = Instance.new("Frame")
  8. local Top = Instance.new("Frame")
  9. local TextLabel = Instance.new("TextLabel")
  10. local Exit = Instance.new("TextButton")
  11. local Walkspeed = Instance.new("TextButton")
  12. local Fly = Instance.new("TextButton")
  13. local Jewlery = Instance.new("TextButton")
  14. local CrimBase = Instance.new("TextButton")
  15. local Noclip = Instance.new("TextButton")
  16. local Bank = Instance.new("TextButton")
  17.  
  18. --Properties:
  19.  
  20. Jailbreak.Name = "Jailbreak"
  21. Jailbreak.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  22. Jailbreak.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  23.  
  24. Main.Name = "Main"
  25. Main.Parent = Jailbreak
  26. Main.BackgroundColor3 = Color3.new(0, 0, 0)
  27. Main.Position = UDim2.new(0.25493291, 0, 0.308353812, 0)
  28. Main.Selectable = true
  29. Main.Size = UDim2.new(0, 560, 0, 347)
  30.  
  31. Top.Name = "Top"
  32. Top.Parent = Main
  33. Top.BackgroundColor3 = Color3.new(1, 1, 1)
  34. Top.Size = UDim2.new(0, 560, 0, 100)
  35.  
  36. TextLabel.Parent = Top
  37. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0.498039)
  38. TextLabel.Size = UDim2.new(0, 560, 0, 100)
  39. TextLabel.Font = Enum.Font.SourceSans
  40. TextLabel.Text = "My Jailbreak Script "
  41. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  42. TextLabel.TextSize = 32
  43.  
  44. Exit.Name = "Exit"
  45. Exit.Parent = Top
  46. Exit.BackgroundColor3 = Color3.new(0, 0, 1)
  47. Exit.Position = UDim2.new(0.9375, 0, 0, 0)
  48. Exit.Size = UDim2.new(0, 35, 0, 35)
  49. Exit.Font = Enum.Font.SourceSans
  50. Exit.Text = "X"
  51. Exit.TextColor3 = Color3.new(0, 0, 0)
  52. Exit.TextSize = 14
  53.  
  54. Walkspeed.Name = "Walkspeed"
  55. Walkspeed.Parent = Main
  56. Walkspeed.BackgroundColor3 = Color3.new(0.333333, 0, 1)
  57. Walkspeed.Position = UDim2.new(0.0607142895, 0, 0.348703176, 0)
  58. Walkspeed.Size = UDim2.new(0, 200, 0, 50)
  59. Walkspeed.Font = Enum.Font.SourceSans
  60. Walkspeed.Text = "Walkspeed"
  61. Walkspeed.TextColor3 = Color3.new(0, 0, 0)
  62. Walkspeed.TextSize = 14
  63.  
  64. Fly.Name = "Fly"
  65. Fly.Parent = Main
  66. Fly.BackgroundColor3 = Color3.new(0.333333, 0, 1)
  67. Fly.Position = UDim2.new(0.642857134, 0, 0.492795378, 0)
  68. Fly.Size = UDim2.new(0, 200, 0, 50)
  69. Fly.Font = Enum.Font.SourceSans
  70. Fly.Text = "Fly"
  71. Fly.TextColor3 = Color3.new(0, 0, 0)
  72. Fly.TextSize = 14
  73.  
  74. Jewlery.Name = "Jewlery"
  75. Jewlery.Parent = Main
  76. Jewlery.BackgroundColor3 = Color3.new(0.333333, 0, 1)
  77. Jewlery.Position = UDim2.new(0.0607142895, 0, 0.63688761, 0)
  78. Jewlery.Size = UDim2.new(0, 200, 0, 50)
  79. Jewlery.Font = Enum.Font.SourceSans
  80. Jewlery.Text = "Jewlery"
  81. Jewlery.TextColor3 = Color3.new(0, 0, 0)
  82. Jewlery.TextSize = 14
  83.  
  84. CrimBase.Name = "CrimBase"
  85. CrimBase.Parent = Main
  86. CrimBase.BackgroundColor3 = Color3.new(0.333333, 0, 1)
  87. CrimBase.Position = UDim2.new(0.642857134, 0, 0.348703206, 0)
  88. CrimBase.Size = UDim2.new(0, 200, 0, 50)
  89. CrimBase.Font = Enum.Font.SourceSans
  90. CrimBase.Text = "CrimBase"
  91. CrimBase.TextColor3 = Color3.new(0, 0, 0)
  92. CrimBase.TextSize = 14
  93.  
  94. Noclip.Name = "Noclip"
  95. Noclip.Parent = Main
  96. Noclip.BackgroundColor3 = Color3.new(0.333333, 0, 1)
  97. Noclip.Position = UDim2.new(0.642857134, 0, 0.63688761, 0)
  98. Noclip.Size = UDim2.new(0, 200, 0, 50)
  99. Noclip.Font = Enum.Font.SourceSans
  100. Noclip.Text = "Noclip"
  101. Noclip.TextColor3 = Color3.new(0, 0, 0)
  102. Noclip.TextSize = 14
  103.  
  104. Bank.Name = "Bank"
  105. Bank.Parent = Main
  106. Bank.BackgroundColor3 = Color3.new(0.333333, 0.333333, 1)
  107. Bank.Position = UDim2.new(0.0607142746, 0, 0.492795408, 0)
  108. Bank.Size = UDim2.new(0, 200, 0, 50)
  109. Bank.Font = Enum.Font.SourceSans
  110. Bank.Text = "Bank"
  111. Bank.TextColor3 = Color3.new(0, 0, 0)
  112. Bank.TextSize = 14
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement