Advertisement
i5J

Civillization GUI

i5J
Mar 20th, 2019
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.65 KB | None | 0 0
  1. -- i5J
  2. -- Civillization GUI
  3. -- Instances:
  4. local Exploit = Instance.new("ScreenGui")
  5. local OpenFrame = Instance.new("Frame")
  6. local Open = Instance.new("TextButton")
  7. local Main = Instance.new("Frame")
  8. local Design = Instance.new("Frame")
  9. local MadeBy = Instance.new("TextLabel")
  10. local Credit = Instance.new("TextLabel")
  11. local Close = Instance.new("TextButton")
  12. local Pupolation = Instance.new("TextButton")
  13. local Resource = Instance.new("TextButton")
  14. --Properties:
  15. Exploit.Name = "Exploit"
  16. Exploit.Parent = game.CoreGui
  17. Exploit.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  18.  
  19. OpenFrame.Name = "OpenFrame"
  20. OpenFrame.Parent = Exploit
  21. OpenFrame.BackgroundColor3 = Color3.new(0.984314, 1, 0.635294)
  22. OpenFrame.Position = UDim2.new(-0.00770077109, 0, -0.00131750107, 0)
  23. OpenFrame.Size = UDim2.new(0, 101, 0, 33)
  24.  
  25. Open.Name = "Open"
  26. Open.Parent = OpenFrame
  27. Open.BackgroundColor3 = Color3.new(0.984314, 1, 0.815686)
  28. Open.Position = UDim2.new(0, 0, 0.10416574, 0)
  29. Open.Size = UDim2.new(0, 100, 0, 26)
  30. Open.Font = Enum.Font.Fantasy
  31. Open.Text = "Open"
  32. Open.TextColor3 = Color3.new(0, 0, 0)
  33. Open.TextSize = 16
  34. Open.MouseButton1Down:connect(function()
  35. Main.Visible = true
  36. OpenFrame.Visible = false
  37. end)
  38.  
  39. Main.Name = "Main"
  40. Main.Parent = Exploit
  41. Main.Active = true
  42. Main.BackgroundColor3 = Color3.new(1, 0.803922, 0.411765)
  43. Main.Position = UDim2.new(0.600736678, 0, 0.675641596, 0)
  44. Main.Size = UDim2.new(0, 300, 0, 186)
  45. Main.Visible = false
  46. Main.Draggable = true
  47.  
  48. Design.Name = "Design"
  49. Design.Parent = Main
  50. Design.BackgroundColor3 = Color3.new(0.996078, 1, 0.67451)
  51. Design.Size = UDim2.new(0, 300, 0, 20)
  52.  
  53. MadeBy.Name = "Made By"
  54. MadeBy.Parent = Main
  55. MadeBy.BackgroundColor3 = Color3.new(1, 1, 1)
  56. MadeBy.BackgroundTransparency = 1
  57. MadeBy.Position = UDim2.new(0.146666661, 0, 0, 0)
  58. MadeBy.Size = UDim2.new(0, 200, 0, 20)
  59. MadeBy.Font = Enum.Font.SourceSans
  60. MadeBy.Text = "Civillian GUI"
  61. MadeBy.TextColor3 = Color3.new(0, 0, 0)
  62. MadeBy.TextSize = 14
  63.  
  64. Credit.Name = "Credit"
  65. Credit.Parent = Main
  66. Credit.BackgroundColor3 = Color3.new(1, 1, 1)
  67. Credit.BackgroundTransparency = 1
  68. Credit.Position = UDim2.new(0.165665567, 0, 0.783649981, 0)
  69. Credit.Size = UDim2.new(0, 200, 0, 29)
  70. Credit.Font = Enum.Font.SourceSans
  71. Credit.Text = "Made by:i5J#6927"
  72. Credit.TextColor3 = Color3.new(0, 0, 0)
  73. Credit.TextSize = 14
  74.  
  75. Close.Name = "Close"
  76. Close.Parent = Main
  77. Close.BackgroundColor3 = Color3.new(1, 0, 0)
  78. Close.Position = UDim2.new(0.912772238, 0, 0.0147901978, 0)
  79. Close.Size = UDim2.new(0, 20, 0, 13)
  80. Close.Font = Enum.Font.SourceSans
  81. Close.Text = ""
  82. Close.TextColor3 = Color3.new(0, 0, 0)
  83. Close.TextSize = 14
  84.  
  85. Pupolation.Name = "Pupolation"
  86. Pupolation.Parent = Main
  87. Pupolation.BackgroundColor3 = Color3.new(1, 1, 1)
  88. Pupolation.Position = UDim2.new(0.257601798, 0, 0.216519952, 0)
  89. Pupolation.Size = UDim2.new(0, 145, 0, 33)
  90. Pupolation.Font = Enum.Font.SourceSans
  91. Pupolation.Text = "Add 100k Population"
  92. Pupolation.TextColor3 = Color3.new(0, 0, 0)
  93. Pupolation.TextSize = 14
  94. Pupolation.MouseButton1Down:connect(function()
  95. game.ReplicatedStorage.statchange:FireServer(100000, "Population")
  96. end)
  97.  
  98. Resource.Name = "Resource"
  99. Resource.Parent = Main
  100. Resource.BackgroundColor3 = Color3.new(1, 1, 1)
  101. Resource.Position = UDim2.new(0.255368531, 0, 0.487802207, 0)
  102. Resource.Size = UDim2.new(0, 145, 0, 33)
  103. Resource.Font = Enum.Font.SourceSans
  104. Resource.Text = "Add 100k Resource"
  105. Resource.TextColor3 = Color3.new(0, 0, 0)
  106. Resource.TextSize = 14
  107. Resource.MouseButton1Down:connect(function()
  108. game.ReplicatedStorage.statchange:FireServer(100000, "Resources")
  109. end)
  110. Close.MouseButton1Down:connect(function()
  111. OpenFrame.Visible = true
  112. Main.Visible = false
  113. end)
  114. ----- Made by: i5J#6927
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement