Advertisement
Theskyler900

for a friend lo

Sep 22nd, 2019
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.08 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local MainGUI = Instance.new("Frame")
  3. local TELEPORTJAIL = Instance.new("TextButton")
  4. local close = Instance.new("TextButton")
  5. local OPENGUI = Instance.new("Frame")
  6. local open = Instance.new("TextButton")
  7. --Properties:
  8. ScreenGui.Parent = game.CoreGui
  9.  
  10. MainGUI.Active = true
  11. MainGUI.Draggable = true
  12.  
  13. MainGUI.Name = "MainGUI"
  14. MainGUI.Parent = ScreenGui
  15. MainGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  16. MainGUI.Position = UDim2.new(0.0903284699, 0, 0.400398403, 0)
  17. MainGUI.Size = UDim2.new(0, 200, 0, 100)
  18. MainGUI.Visible = false
  19.  
  20. TELEPORTJAIL.Name = "TELEPORT JAIL"
  21. TELEPORTJAIL.Parent = MainGUI
  22. TELEPORTJAIL.BackgroundColor3 = Color3.new(1, 1, 1)
  23. TELEPORTJAIL.BorderSizePixel = 0
  24. TELEPORTJAIL.Position = UDim2.new(0, 0, 0.25, 0)
  25. TELEPORTJAIL.Size = UDim2.new(0, 200, 0, 50)
  26. TELEPORTJAIL.Font = Enum.Font.Arcade
  27. TELEPORTJAIL.Text = "JAIL"
  28. TELEPORTJAIL.TextColor3 = Color3.new(0, 0, 0)
  29. TELEPORTJAIL.TextSize = 30
  30. TELEPORTJAIL.MouseButton1Click:connect(function()
  31. loadstring(game:HttpGet("https://pastebin.com/raw/fY8ZdNPY",true))()
  32.  
  33. print("Working")
  34. end)
  35.  
  36. close.Name = "close"
  37. close.Parent = MainGUI
  38. close.BackgroundColor3 = Color3.new(1, 1, 1)
  39. close.Position = UDim2.new(0.899999976, 0, 0, 0)
  40. close.Size = UDim2.new(0, 20, 0, 20)
  41. close.Font = Enum.Font.SourceSans
  42. close.Text = "X"
  43. close.TextColor3 = Color3.new(0, 0, 0)
  44. close.TextSize = 14
  45. close.MouseButton1Click:connect(function()
  46. MainGUI.Visible = false
  47. OPENGUI.Visible = true
  48. end)
  49.  
  50. OPENGUI.Name = "OPENGUI"
  51. OPENGUI.Parent = ScreenGui
  52. OPENGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  53. OPENGUI.Position = UDim2.new(0, 0, 0.531872511, 0)
  54. OPENGUI.Size = UDim2.new(0, 63, 0, 23)
  55.  
  56. open.Name = "open"
  57. open.Parent = OPENGUI
  58. open.BackgroundColor3 = Color3.new(1, 1, 1)
  59. open.Position = UDim2.new(-0.142857149, 0, 0, 0)
  60. open.Size = UDim2.new(0, 72, 0, 23)
  61. open.Font = Enum.Font.SourceSans
  62. open.Text = "open"
  63. open.TextColor3 = Color3.new(0, 0, 0)
  64. open.TextSize = 14
  65. open.MouseButton1Click:connect(function()
  66. MainGUI.Visible = true
  67. OPENGUI.Visible = false
  68. end)
  69.  
  70. print("Working")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement