Advertisement
itsjustpyper

gui

Jan 8th, 2017
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.10 KB | None | 0 0
  1. -- We create the screenGui
  2. Main = Instance.new("ScreenGui",game.Players.LocalPlayer.PlayerGui)
  3. -- We create and define the first frame!
  4.  
  5. Frame1 = Instance.new("Frame",Main)
  6. Frame1.Position = UDim2.new(0.3, 0, 0.3, 0)
  7. Frame1.Size = UDim2.new(0, 450, 0, 350)
  8. Frame1.BackgroundColor3 = Color3.new(0.0196,0.0156,0.0117)
  9. Frame1.BorderColor3 = Color3.new(0.403,0.643,1)
  10. Frame1.BackgroundTransparency = 0.3
  11. Frame1.Draggable = true
  12. Frame1.Visible = false
  13. -- We create and define the second frame!
  14. Frame2 = Instance.new("ScrollingFrame",Frame1)
  15. Frame2.Name = "Main"
  16. Frame2.Position = UDim2.new(0., 0, 0.13, 0)
  17. Frame2.Size = UDim2.new(0, 450, 0, 302)
  18. Frame2.BackgroundColor3 = Color3.new(0,0,0)
  19. Frame2.BorderColor3 = Color3.new(0,0,0)
  20. Frame2.BackgroundTransparency = 0.6
  21. -- Now lets add the buttons and define them
  22. Assas = Instance.new("TextButton",Frame2)
  23. Assas.Name = "RoMoney"
  24. Assas.BackgroundColor3 = Color3.new(1, 1, 1)
  25. Assas.Position = UDim2.new(0, 0, 0.24, 0)
  26. Assas.Size = UDim2.new(0, 200, 0, 50)
  27. Assas.Font = 'SourceSansBold'
  28. Assas.FontSize = 14
  29. Assas.TextSize = 14
  30. Assas.TextScaled = true
  31. Assas.TextWrapped = true
  32. Assas.Text = "Rocitizen Money"
  33. Assas.BackgroundTransparency = 0.6
  34. Assas.AutoButtonColor = true
  35. Assas.MouseButton1Down:connect(function()
  36. game.Players.LocalPlayer.ChangeMoney:Fire(2000000000)
  37. end)
  38. ---------------------------------
  39. LT2 = Instance.new("TextButton",Frame2)
  40. LT2.Name = "LT2"
  41. LT2.BackgroundColor3 = Color3.new(1, 1, 1)
  42. LT2.Position = UDim2.new(0, 0, 0, 0)
  43. LT2.Size = UDim2.new(0, 200, 0, 50)
  44. LT2.Font = 'SourceSansBold'
  45. LT2.FontSize = 14
  46. LT2.TextSize = 14
  47. LT2.TextScaled = true
  48. LT2.TextWrapped = true
  49. LT2.Text = "LT2 Base Dupe"
  50. LT2.BackgroundTransparency = 0.6
  51. LT2.AutoButtonColor = true
  52. LT2.BorderSizePixel = 3
  53. LT2.MouseButton1Down:connect(function()
  54. game.ReplicatedStorage.LoadSaveRequests.RequestSave:InvokeServer(2,Game.Players[LocalPlayer])
  55. end)
  56. ---------------------------------
  57. TPM = Instance.new("TextButton",Frame2)
  58. TPM.Name = "TPM"
  59. TPM.BackgroundColor3 = Color3.new(1, 1, 1)
  60. TPM.Position = UDim2.new(0, 0, 0.08, 0)
  61. TPM.Size = UDim2.new(0, 200, 0, 50)
  62. TPM.Font = 'SourceSansBold'
  63. TPM.FontSize = 14
  64. TPM.TextSize = 14
  65. TPM.TextScaled = true
  66. TPM.TextWrapped = true
  67. TPM.Text = "The Plaza Money"
  68. TPM.BackgroundTransparency = 0.6
  69. TPM.AutoButtonColor = true
  70. TPM.BorderSizePixel = 3
  71. TPM.MouseButton1Down:connect(function()
  72. game.ReplicatedStorage.ServerStats.ChangeMoney:FireServer(1000000, math.floor(math.sqrt(game.ReplicatedStorage.ServerStats.CurrentID.Value)) + 1337)
  73. end)
  74. ---------------------------------
  75. Ftof = Instance.new("TextButton",Frame2)
  76. Ftof.Name = "Ftof"
  77. Ftof.BackgroundColor3 = Color3.new(1, 1, 1)
  78. Ftof.Position = UDim2.new(0, 0, 0.16, 0)
  79. Ftof.Size = UDim2.new(0, 200, 0, 50)
  80. Ftof.Font = 'SourceSansBold'
  81. Ftof.FontSize = 14
  82. Ftof.TextSize = 14
  83. Ftof.TextScaled = true
  84. Ftof.TextWrapped = true
  85. Ftof.Text = "FTOF Custom Magic"
  86. Ftof.BackgroundTransparency = 0.6
  87. Ftof.AutoButtonColor = true
  88. Ftof.BorderSizePixel = 3
  89. Ftof.MouseButton1Down:connect(function()
  90. local Children = game.Lighting.Customs.armyranger2172:GetChildren()
  91. for i = 1, #Children do
  92. Children[i]:Clone().Parent = game.Players.LocalPlayer.Backpack
  93. end
  94. end)
  95. -- Lets add the seperator now!
  96. Sep = Instance.new("Frame",Frame1)
  97. Sep.Name = 'Seperator'
  98. Sep.Position = UDim2.new(0, 0, 0, 0)
  99. Sep.Size = UDim2.new(0, 450, 0, 50)
  100. Sep.BackgroundColor3 = Color3.new(0,0,0)
  101. Sep.BorderColor3 = Color3.new(0,0,0)
  102. Sep.BackgroundTransparency = 100
  103. Sep.BorderSizePixel = 3
  104. --Now The title...
  105. Titl = Instance.new("TextLabel",Frame1)
  106. Titl.Name = 'Title'
  107. Titl.BackgroundColor3 = Color3.new(1,1,1)
  108. Titl.BorderColor3 = Color3.new(1,1,1)
  109. Titl.Position = UDim2.new(0, 0, 0, 0)
  110. Titl.Size = UDim2.new(0, 450, 0, 40)
  111. Titl.Text= 'InGame Scripts'
  112. Titl.FontSize = "Size18"
  113. Titl.TextSize = 18
  114. Titl.TextScaled = true
  115. Titl.TextWrapped = true
  116. Titl.Font = 'SourceSansBold'
  117. Titl.BackgroundTransparency = 0.6
  118. Titl.BorderSizePixel = 3
  119. Titl.TextColor3 = Color3.new(1,1,1)
  120. --Now for the Open Button
  121. Ope = Instance.new("TextButton",Main)
  122. Ope.BackgroundColor3 = Color3.new(0,0.8196,1)
  123. Ope.BorderColor3 = Color3.new(0,0,0)
  124. Ope.Name = 'Open'
  125. Ope.Size = UDim2.new(0.154, 0, 0.076, 0)
  126. Ope.Position = UDim2.new(0.83, 0, 0.393, 0)
  127. Ope.Font = 'SourceSansLight'
  128. Ope.FontSize = 'Size60'
  129. Ope.TextSize = 60
  130. Ope.TextScaled = false
  131. Ope.TextWrapped = true
  132. Ope.Text = "Open!"
  133. Ope.BackgroundTransparency = 0.3
  134. Ope.AutoButtonColor = true
  135. Ope.Draggable = true
  136. Ope.MouseButton1Down:connect(function()
  137.  
  138. Frame1.Visible = true
  139. end)
  140. --Finally for the Close Button!
  141. Clo = Instance.new("TextButton",Frame1)
  142. Clo.BackgroundColor3 = Color3.new(0.2627,0.6431,1)
  143. Clo.BorderColor3 = Color3.new(0.3137,0.5529,1)
  144. Clo.Name = 'Close'
  145. Clo.Size = UDim2.new(0, 40, 0, 40)
  146. Clo.Position = UDim2.new(0.91, 0, 0, 0)
  147. Clo.Font = 'SourceSansBold'
  148. Clo.FontSize = 'Size14'
  149. Clo.TextSize = 14
  150. Clo.TextScaled = true
  151. Clo.TextWrapped = true
  152. Clo.Text = "X"
  153. Clo.BackgroundTransparency = 0
  154. Clo.AutoButtonColor = true
  155. Clo.BorderSizePixel = 3
  156. Clo.Style = 'RobloxRoundDefaultButton'
  157. Clo.MouseButton1Down:connect(function()
  158. Frame1.Visible = false
  159.  
  160. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement