Advertisement
Guest User

Gui

a guest
Apr 22nd, 2019
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local Plasma = Instance.new("TextButton")
  6. local M16a4 = Instance.new("TextButton")
  7. local Spas = Instance.new("TextButton")
  8. local Text = Instance.new("TextLabel")
  9. local Sniper = Instance.new("TextButton")
  10.  
  11. -- Properties
  12.  
  13. ScreenGui.Parent = game.CoreGui
  14.  
  15. Frame.Parent = ScreenGui
  16. Frame.Active = true
  17. Frame.BackgroundColor3 = Color3.new(0.564706, 0.564706, 0.564706)
  18. Frame.Position = UDim2.new(0.733609974, 0, 0.584766567, 0)
  19. Frame.Selectable = true
  20. Frame.Size = UDim2.new(0, 266, 0, 282)
  21.  
  22. Plasma.Name = "Plasma"
  23. Plasma.Parent = Frame
  24. Plasma.BackgroundColor3 = Color3.new(1, 1, 1)
  25. Plasma.Position = UDim2.new(0.0437400937, 0, 0.215885133, 0)
  26. Plasma.Size = UDim2.new(0, 115, 0, 42)
  27. Plasma.Font = Enum.Font.SourceSans
  28. Plasma.Text = "Plasma Launcher"
  29. Plasma.TextColor3 = Color3.new(0, 0, 0)
  30. Plasma.TextScaled = true
  31. Plasma.TextSize = 14
  32. Plasma.TextWrapped = true
  33. Plasma.MouseButton1Click:connect(function()
  34. local A_1 = "MPShop"
  35. local A_2 = "Plasma Launcher"
  36. local Event = game:GetService("ReplicatedStorage").RemoteEvents.Shops["Buy_Item2"]
  37. Event:FireServer(A_1, A_2)
  38. end)
  39.  
  40. M16a4.Name = "M16a4"
  41. M16a4.Parent = Frame
  42. M16a4.BackgroundColor3 = Color3.new(1, 1, 1)
  43. M16a4.Position = UDim2.new(0.531323135, 0, 0.215885133, 0)
  44. M16a4.Size = UDim2.new(0, 115, 0, 42)
  45. M16a4.Font = Enum.Font.SourceSans
  46. M16a4.Text = "M16A4"
  47. M16a4.TextColor3 = Color3.new(0, 0, 0)
  48. M16a4.TextScaled = true
  49. M16a4.TextSize = 14
  50. M16a4.TextWrapped = true
  51. M16a4.MouseButton1Click:connect(function()
  52. local A_1 = "MPShop"
  53. local A_2 = "M16A4"
  54. local Event = game:GetService("ReplicatedStorage").RemoteEvents.Shops["Buy_Item2"]
  55. Event:FireServer(A_1, A_2)
  56. end)
  57.  
  58. Spas.Name = "Spas"
  59. Spas.Parent = Frame
  60. Spas.BackgroundColor3 = Color3.new(1, 1, 1)
  61. Spas.Position = UDim2.new(0.531323135, 0, 0.584784031, 0)
  62. Spas.Size = UDim2.new(0, 115, 0, 42)
  63. Spas.Font = Enum.Font.SourceSans
  64. Spas.Text = "SPAS-55"
  65. Spas.TextColor3 = Color3.new(0, 0, 0)
  66. Spas.TextScaled = true
  67. Spas.TextSize = 14
  68. Spas.TextWrapped = true
  69. Spas.MouseButton1Click:connect(function()
  70. local A_1 = "MPShop"
  71. local A_2 = "SPAS-55"
  72. local Event = game:GetService("ReplicatedStorage").RemoteEvents.Shops["Buy_Item2"]
  73. Event:FireServer(A_1, A_2)
  74. end)
  75.  
  76. Text.Name = "Text"
  77. Text.Parent = Frame
  78. Text.BackgroundColor3 = Color3.new(0.407843, 0.407843, 0.407843)
  79. Text.Position = UDim2.new(0, 0, -0.0023437934, 0)
  80. Text.Size = UDim2.new(0, 266, 0, 34)
  81. Text.Font = Enum.Font.SourceSans
  82. Text.Text = "Gui made and scripts made by Darcy"
  83. Text.TextColor3 = Color3.new(1, 1, 1)
  84. Text.TextScaled = true
  85. Text.TextSize = 14
  86. Text.TextWrapped = true
  87.  
  88. Sniper.Name = "Sniper"
  89. Sniper.Parent = Frame
  90. Sniper.BackgroundColor3 = Color3.new(1, 1, 1)
  91. Sniper.Position = UDim2.new(0.0437400937, 0, 0.584783971, 0)
  92. Sniper.Size = UDim2.new(0, 115, 0, 42)
  93. Sniper.Font = Enum.Font.SourceSans
  94. Sniper.Text = "Paladin [Sniper]"
  95. Sniper.TextColor3 = Color3.new(0, 0, 0)
  96. Sniper.TextScaled = true
  97. Sniper.TextSize = 14
  98. Sniper.TextWrapped = true
  99. Sniper.MouseButton1Click:connect(function()
  100. local A_1 = "MPShop"
  101. local A_2 = "Paladin"
  102. local Event = game:GetService("ReplicatedStorage").RemoteEvents.Shops["Buy_Item2"]
  103. Event:FireServer(A_1, A_2)
  104. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement