Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.35 KB | None | 0 0
  1.  
  2. 1.wait(1)
  3.  
  4.  
  5. 2.
  6.  
  7.  
  8. 3.-- Local Player
  9.  
  10.  
  11. 4.local p = game.Players.LocalPlayer
  12.  
  13.  
  14. 5.
  15.  
  16.  
  17. 6.-- Instance Objects
  18.  
  19.  
  20. 7.local gui = Instance.new('ScreenGui',p.PlayerGui)
  21.  
  22.  
  23. 8.local frame = Instance.new('ScrollingFrame',gui)
  24.  
  25.  
  26. 9.local open = Instance.new('TextButton',gui)
  27.  
  28.  
  29. 10.local name = Instance.new('TextLabel',frame)
  30.  
  31.  
  32. 11.local arrest = Instance.new('TextButton',frame)
  33.  
  34.  
  35. 12.local btools = Instance.new('TextButton',frame)
  36.  
  37.  
  38. 13.local escape = Instance.new('TextButton',frame)
  39.  
  40.  
  41. 14.local exit = Instance.new('TextButton',frame)
  42.  
  43.  
  44. 15.local killaura = Instance.new('TextButton',frame)
  45.  
  46.  
  47. 16.local melee = Instance.new('TextButton',frame)
  48.  
  49.  
  50. 17.local removedoors = Instance.new('TextButton',frame)
  51.  
  52.  
  53. 18.local tools = Instance.new('TextButton',frame)
  54.  
  55.  
  56. 19.
  57.  
  58.  
  59. 20.-- Name object
  60.  
  61.  
  62. 21.gui.Name = "Prison Life v2.0 GUI"
  63.  
  64.  
  65. 22.frame.Name = "Commands"
  66.  
  67.  
  68. 23.open.Name = "Open"
  69.  
  70.  
  71. 24.name.Name = "Name"
  72.  
  73.  
  74. 25.arrest.Name = "ArrestButton"
  75.  
  76.  
  77. 26.btools.Name = "BtoolsButton"
  78.  
  79.  
  80. 27.escape.Name = "EscapeButton"
  81.  
  82.  
  83. 28.exit.Name = "ExitButton"
  84.  
  85.  
  86. 29.killaura.Name = "KillauraButton"
  87.  
  88.  
  89. 30.melee.Name = "MeleeButton"
  90.  
  91.  
  92. 31.removedoors.Name = "RemoveDoorsButton"
  93.  
  94.  
  95. 32.tools.Name = "ToolsButton"
  96.  
  97.  
  98. 33.
  99.  
  100.  
  101. 34.-- Object Visible
  102.  
  103.  
  104. 35.frame.Visible = true
  105.  
  106.  
  107. 36.open.Visible = false
  108.  
  109.  
  110. 37.name.Visible = true
  111.  
  112.  
  113. 38.arrest.Visible = true
  114.  
  115.  
  116. 39.btools.Visible = true
  117.  
  118.  
  119. 40.escape.Visible = true
  120.  
  121.  
  122. 41.exit.Visible = true
  123.  
  124.  
  125. 42.killaura.Visible = true
  126.  
  127.  
  128. 43.melee.Visible = true
  129.  
  130.  
  131. 44.removedoors.Visible = true
  132.  
  133.  
  134. 45.tools.Visible = true
  135.  
  136.  
  137. 46.
  138.  
  139.  
  140. 47.-- Background Color
  141.  
  142.  
  143. 48.frame.BackgroundColor3 = Color3.new(255,255,255)
  144.  
  145.  
  146. 49.open.BackgroundColor3 = Color3.new(0,255,255)
  147.  
  148.  
  149. 50.name.BackgroundColor3 = Color3.new(255,255,255)
  150.  
  151.  
  152. 51.arrest.BackgroundColor3 = Color3.new(0,0,255)
  153.  
  154.  
  155. 52.btools.BackgroundColor3 = Color3.new(0,0,255)
  156.  
  157.  
  158. 53.escape.BackgroundColor3 = Color3.new(0,0,255)
  159.  
  160.  
  161. 54.exit.BackgroundColor3 = Color3.new(255,0,0)
  162.  
  163.  
  164. 55.killaura.BackgroundColor3 = Color3.new(0,0,255)
  165.  
  166.  
  167. 56.melee.BackgroundColor3 = Color3.new(0,0,255)
  168.  
  169.  
  170. 57.removedoors.BackgroundColor3 = Color3.new(0,0,255)
  171.  
  172.  
  173. 58.tools.BackgroundColor3 = Color3.new(0,0,255)
  174.  
  175.  
  176. 59.
  177.  
  178.  
  179. 60.-- Background Transparency
  180.  
  181.  
  182. 61.frame.BackgroundTransparency = 0.5
  183.  
  184.  
  185. 62.open.BackgroundTransparency = 0
  186.  
  187.  
  188. 63.name.BackgroundTransparency = 0.6
  189.  
  190.  
  191. 64.arrest.BackgroundTransparency = 0
  192.  
  193.  
  194. 65.btools.BackgroundTransparency = 0
  195.  
  196.  
  197. 66.escape.BackgroundTransparency = 0
  198.  
  199.  
  200. 67.exit.BackgroundTransparency = 0
  201.  
  202.  
  203. 68.killaura.BackgroundTransparency = 0
  204.  
  205.  
  206. 69.melee.BackgroundTransparency = 0
  207.  
  208.  
  209. 70.removedoors.BackgroundTransparency = 0
  210.  
  211.  
  212. 71.tools.BackgroundTransparency = 0
  213.  
  214.  
  215. 72.
  216.  
  217.  
  218. 73.-- Objects Size
  219.  
  220.  
  221. 74.frame.Size = UDim2.new(0,250,0,300)
  222.  
  223.  
  224. 75.open.Size = UDim2.new(0,80,0,30)
  225.  
  226.  
  227. 76.name.Size = UDim2.new(0,180,0,40)
  228.  
  229.  
  230. 77.arrest.Size = UDim2.new(0.9,12,0,30)
  231.  
  232.  
  233. 78.btools.Size = UDim2.new(0.9,12,0,30)
  234.  
  235.  
  236. 79.escape.Size = UDim2.new(0.9,12,0,30)
  237.  
  238.  
  239. 80.exit.Size = UDim2.new(0,50,0,40)
  240.  
  241.  
  242. 81.killaura.Size = UDim2.new(0.9,12,0,30)
  243.  
  244.  
  245. 82.melee.Size = UDim2.new(0.9,12,0,30)
  246.  
  247.  
  248. 83.removedoors.Size = UDim2.new(0.9,12,0,30)
  249.  
  250.  
  251. 84.tools.Size = UDim2.new(0.9,12,0,30)
  252.  
  253.  
  254. 85.
  255.  
  256.  
  257. 86.-- Objects Position
  258.  
  259.  
  260. 87.frame.Position = UDim2.new(0,5,0.4,0)
  261.  
  262.  
  263. 88.open.Position = UDim2.new(0,0,0,0)
  264.  
  265.  
  266. 89.name.Position = UDim2.new(0,0,0,0)
  267.  
  268.  
  269. 90.arrest.Position = UDim2.new(0,0,0,320)
  270.  
  271.  
  272. 91.btools.Position = UDim2.new(0,0,0,185)
  273.  
  274.  
  275. 92.escape.Position = UDim2.new(0,0,0,230)
  276.  
  277.  
  278. 93.exit.Position = UDim2.new(0,184,0,0)
  279.  
  280.  
  281. 94.killaura.Position = UDim2.new(0,0,0,275)
  282.  
  283.  
  284. 95.melee.Position = UDim2.new(0,0,0,140)
  285.  
  286.  
  287. 96.removedoors.Position = UDim2.new(0,0,0,50)
  288.  
  289.  
  290. 97.tools.Position = UDim2.new(0,0,0,95)
  291.  
  292.  
  293. 98.
  294.  
  295.  
  296. 99.-- Objects Text Color
  297.  
  298.  
  299. 100.open.TextColor3 = Color3.new(0,0,0)
  300.  
  301.  
  302. 101.name.TextColor3 = Color3.new(0,255,255)
  303.  
  304.  
  305. 102.arrest.TextColor3 = Color3.new(0,0,0)
  306.  
  307.  
  308. 103.btools.TextColor3 = Color3.new(0,0,0)
  309.  
  310.  
  311. 104.escape.TextColor3 = Color3.new(0,0,0)
  312.  
  313.  
  314. 105.exit.TextColor3 = Color3.new(0,0,0)
  315.  
  316.  
  317. 106.killaura.TextColor3 = Color3.new(0,0,0)
  318.  
  319.  
  320. 107.melee.TextColor3 = Color3.new(0,0,0)
  321.  
  322.  
  323. 108.removedoors.TextColor3 = Color3.new(0,0,0)
  324.  
  325.  
  326. 109.tools.TextColor3 = Color3.new(0,0,0)
  327.  
  328.  
  329. 110.
  330.  
  331.  
  332. 111.-- Object Font
  333.  
  334.  
  335. 112.name.Font = 'Fantasy'
  336.  
  337.  
  338. 113.
  339.  
  340.  
  341. 114.-- Object Text
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement