Advertisement
Upscalefanatic3

Clone Tycoon 2 GUI Script

Jan 28th, 2019
31,450
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.85 KB | None | 0 0
  1. -- https://www.roblox.com/games/413424176/Clone-Tycoon-2
  2.  
  3.  
  4.  
  5.  
  6. -- MADE BY : RBXLStealit
  7. -- Instances:
  8. local ScreenGui = Instance.new("ScreenGui")
  9. local HYLYH = Instance.new("Frame")
  10. local Main1 = Instance.new("Frame")
  11. local TextLabel = Instance.new("TextLabel")
  12. local owner = Instance.new("TextLabel")
  13. local close = Instance.new("TextButton")
  14. local Main2 = Instance.new("Frame")
  15. local cash = Instance.new("TextButton")
  16. local gems = Instance.new("TextButton")
  17. --Properties:
  18. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  19.  
  20. HYLYH.Name = "HYLYH"
  21. HYLYH.Parent = ScreenGui
  22. HYLYH.BackgroundColor3 = Color3.new(0.552941, 0.501961, 0.498039)
  23. HYLYH.Position = UDim2.new(0.239831701, 0, 0.079522863, 0)
  24. HYLYH.Size = UDim2.new(0, 371, 0, 117)
  25.  
  26. Main1.Name = "Main1"
  27. Main1.Parent = HYLYH
  28. Main1.BackgroundColor3 = Color3.new(1, 1, 1)
  29. Main1.BackgroundTransparency = 0.40000000596046
  30. Main1.Position = UDim2.new(0.18328841, 0, 0.0576515421, 0)
  31. Main1.Size = UDim2.new(0, 234, 0, 48)
  32.  
  33. TextLabel.Parent = Main1
  34. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  35. TextLabel.BackgroundTransparency = 1
  36. TextLabel.Position = UDim2.new(0.0769230798, 0, -0.020833334, 0)
  37. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  38. TextLabel.Font = Enum.Font.Cartoon
  39. TextLabel.Text = "CLONE TYCOON 2"
  40. TextLabel.TextColor3 = Color3.new(0.301961, 0.756863, 0)
  41. TextLabel.TextSize = 30
  42. TextLabel.TextStrokeTransparency = 0.5
  43.  
  44. owner.Name = "owner"
  45. owner.Parent = Main1
  46. owner.BackgroundColor3 = Color3.new(1, 1, 1)
  47. owner.BackgroundTransparency = 1
  48. owner.Position = UDim2.new(0.0789743587, 0, 2.22916698, 0)
  49. owner.Size = UDim2.new(0, 200, 0, 26)
  50. owner.Font = Enum.Font.Cartoon
  51. owner.Text = "GUI BY : RBXLStealit"
  52. owner.TextColor3 = Color3.new(0, 0, 0)
  53. owner.TextSize = 14
  54.  
  55. close.Name = "close"
  56. close.Parent = Main1
  57. close.BackgroundColor3 = Color3.new(1, 0, 0)
  58. close.BackgroundTransparency = 0.55000001192093
  59. close.BorderSizePixel = 0
  60. close.Position = UDim2.new(1.19658124, 0, -0.0833333358, 0)
  61. close.Size = UDim2.new(0, 23, 0, 20)
  62. close.Font = Enum.Font.Cartoon
  63. close.Text = "X"
  64. close.TextColor3 = Color3.new(0, 0, 0)
  65. close.TextSize = 14
  66.  
  67. Main2.Name = "Main2"
  68. Main2.Parent = HYLYH
  69. Main2.BackgroundColor3 = Color3.new(0.584314, 1, 0.109804)
  70. Main2.BackgroundTransparency = 0.75
  71. Main2.Position = UDim2.new(0.0350404307, 0, 0.529914558, 0)
  72. Main2.Size = UDim2.new(0, 346, 0, 49)
  73.  
  74. cash.Name = "cash"
  75. cash.Parent = Main2
  76. cash.BackgroundColor3 = Color3.new(0.403922, 1, 0.85098)
  77. cash.BackgroundTransparency = 0.69999998807907
  78. cash.BorderSizePixel = 6
  79. cash.Position = UDim2.new(0.0289017335, 0, 0.187008142, 0)
  80. cash.Size = UDim2.new(0, 127, 0, 31)
  81. cash.SizeConstraint = Enum.SizeConstraint.RelativeXX
  82. cash.Font = Enum.Font.Cartoon
  83. cash.Text = "GIFT INF COINS"
  84. cash.TextColor3 = Color3.new(0, 0, 0)
  85. cash.TextSize = 18
  86.  
  87. gems.Name = "gems"
  88. gems.Parent = Main2
  89. gems.BackgroundColor3 = Color3.new(0.403922, 1, 0.85098)
  90. gems.BackgroundTransparency = 0.69999998807907
  91. gems.BorderSizePixel = 6
  92. gems.Position = UDim2.new(0.601156056, 0, 0.187008142, 0)
  93. gems.Size = UDim2.new(0, 127, 0, 31)
  94. gems.SizeConstraint = Enum.SizeConstraint.RelativeXX
  95. gems.Font = Enum.Font.Cartoon
  96. gems.Text = "GIFT INF GEMS"
  97. gems.TextColor3 = Color3.new(0, 0, 0)
  98. gems.TextSize = 18
  99. -- Scripts:
  100.  
  101.  
  102. cash.MouseButton1Click:Connect(function()
  103. game.Workspace.Events.DataStores.LoadStep:FireServer("Cash", 20000000000)
  104. end)
  105.  
  106. gems.MouseButton1Click:Connect(function()
  107. game.Workspace.Events.DataStores.LoadStep:FireServer("Gems", 100000000000)
  108. end)
  109.  
  110. close.MouseButton1Click:Connect(function()
  111. HYLYH.Visible = false
  112. end)
  113.  
  114. HYLYH.Active = true
  115. HYLYH.Draggable = true
  116.  
  117. -- SCRIPT MADE BY : ferryslavina123 --
  118. while true do
  119. owner.Text = "Gui By : RBXLStealit"
  120. wait(3)
  121. owner.Text = "SPECIAL THANKS : ferryslavina123"
  122. wait(3)
  123. owner.Text = "SPECIAL THANKS : VienneDeLaconas"
  124. wait(3)
  125. end
  126. -- END --
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement