Advertisement
Guest User

Tycoon Simulator Script

a guest
Dec 31st, 2019
12,534
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.28 KB | None | 0 0
  1. -- yealetFNG
  2. -- https://discord.gg/TSNQ5Hk
  3.  
  4. -- Instances:
  5.  
  6. local TycoonSimulatorGUI = Instance.new("ScreenGui")
  7. local OpenFrame = Instance.new("Frame")
  8. local OpenButton = Instance.new("TextButton")
  9. local DeleteGUIBUtton = Instance.new("TextButton")
  10. local MainFrame = Instance.new("Frame")
  11. local TPTOROBUXBUTTON = Instance.new("TextButton")
  12. local TPTOTICKETBUTTON = Instance.new("TextButton")
  13. local DISABLEANTICHEAT = Instance.new("TextButton")
  14. local DISCORDLINK = Instance.new("TextLabel")
  15. local DISCORDNAME = Instance.new("TextLabel")
  16. local CLOSEMAINFRAMEBUTTON = Instance.new("TextButton")
  17.  
  18. --Properties:
  19.  
  20. TycoonSimulatorGUI.Name = "TycoonSimulatorGUI"
  21. TycoonSimulatorGUI.Parent = game.CoreGui
  22.  
  23. OpenFrame.Name = "OpenFrame"
  24. OpenFrame.Parent = TycoonSimulatorGUI
  25. OpenFrame.BackgroundColor3 = Color3.new(0.741176, 0.286275, 0.25098)
  26. OpenFrame.BorderColor3 = Color3.new(0.45098, 0.172549, 0.14902)
  27. OpenFrame.BorderSizePixel = 4
  28. OpenFrame.Position = UDim2.new(0.450563192, 0, 0.134684145, 0)
  29. OpenFrame.Size = UDim2.new(0, 158, 0, 50)
  30. OpenFrame.Draggable = true
  31. OpenFrame.Active = true
  32.  
  33.  
  34. OpenButton.Name = "OpenButton"
  35. OpenButton.Parent = OpenFrame
  36. OpenButton.BackgroundColor3 = Color3.new(1, 1, 1)
  37. OpenButton.BackgroundTransparency = 1
  38. OpenButton.BorderSizePixel = 0
  39. OpenButton.Position = UDim2.new(-0.00536271557, 0, -0.00665077567, 0)
  40. OpenButton.Size = UDim2.new(0, 158, 0, 50)
  41. OpenButton.Font = Enum.Font.GothamSemibold
  42. OpenButton.Text = "Open"
  43. OpenButton.TextColor3 = Color3.new(1, 1, 1)
  44. OpenButton.TextScaled = true
  45. OpenButton.TextSize = 14
  46. OpenButton.TextWrapped = true
  47. OpenButton.MouseButton1Down:connect(function()
  48. MainFrame.Visible = true -- Makes the gui visible
  49. OpenFrame.Visible = false -- Makes the open button invisible
  50. end)
  51.  
  52. DeleteGUIBUtton.Name = "DeleteGUIBUtton"
  53. DeleteGUIBUtton.Parent = OpenFrame
  54. DeleteGUIBUtton.BackgroundColor3 = Color3.new(1, 0.32549, 0.192157)
  55. DeleteGUIBUtton.BorderSizePixel = 4
  56. DeleteGUIBUtton.Position = UDim2.new(-0.0059891711, 0, -0.903044879, 0)
  57. DeleteGUIBUtton.Size = UDim2.new(0, 158, 0, 24)
  58. DeleteGUIBUtton.Font = Enum.Font.GothamSemibold
  59. DeleteGUIBUtton.Text = "Remove GUI"
  60. DeleteGUIBUtton.TextColor3 = Color3.new(1, 1, 1)
  61. DeleteGUIBUtton.TextScaled = true
  62. DeleteGUIBUtton.TextSize = 14
  63. DeleteGUIBUtton.TextWrapped = true
  64. DeleteGUIBUtton.MouseButton1Down:connect(function()
  65. TycoonSimulatorGUI:Remove()
  66. end)
  67.  
  68.  
  69. MainFrame.Name = "MainFrame"
  70. MainFrame.Parent = TycoonSimulatorGUI
  71. MainFrame.BackgroundColor3 = Color3.new(0.741176, 0.286275, 0.25098)
  72. MainFrame.BorderColor3 = Color3.new(0.45098, 0.172549, 0.14902)
  73. MainFrame.BorderSizePixel = 4
  74. MainFrame.Position = UDim2.new(0.350438029, 0, 0.22526817, 0)
  75. MainFrame.Size = UDim2.new(0, 475, 0, 289)
  76. MainFrame.Visible = false
  77. MainFrame.Draggable = true
  78. MainFrame.Active = true
  79.  
  80.  
  81. TPTOROBUXBUTTON.Name = "TPTOROBUXBUTTON"
  82. TPTOROBUXBUTTON.Parent = MainFrame
  83. TPTOROBUXBUTTON.BackgroundColor3 = Color3.new(1, 0.32549, 0.192157)
  84. TPTOROBUXBUTTON.BackgroundTransparency = 0.69999998807907
  85. TPTOROBUXBUTTON.BorderSizePixel = 4
  86. TPTOROBUXBUTTON.Position = UDim2.new(0.0620056838, 0, 0.560823321, 0)
  87. TPTOROBUXBUTTON.Size = UDim2.new(0, 182, 0, 81)
  88. TPTOROBUXBUTTON.Font = Enum.Font.GothamSemibold
  89. TPTOROBUXBUTTON.Text = "[Keep Clicking] Teleport to highest value ROBUX"
  90. TPTOROBUXBUTTON.TextColor3 = Color3.new(1, 1, 1)
  91. TPTOROBUXBUTTON.TextScaled = true
  92. TPTOROBUXBUTTON.TextSize = 14
  93. TPTOROBUXBUTTON.TextWrapped = true
  94. TPTOROBUXBUTTON.MouseButton1Down:connect(function()
  95. local children = workspace:getChildren()
  96. for i=1,#children do
  97. if children[i].Name == "Robux" then
  98. if children[i].Owner.Value == "Nobody" then
  99. if children[i].Worth.Value >= 1000 then
  100. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(children[i].Position)
  101. end
  102. end
  103. end
  104. end
  105. end)
  106.  
  107.  
  108. TPTOTICKETBUTTON.Name = "TPTOTICKETBUTTON"
  109. TPTOTICKETBUTTON.Parent = MainFrame
  110. TPTOTICKETBUTTON.BackgroundColor3 = Color3.new(1, 0.32549, 0.192157)
  111. TPTOTICKETBUTTON.BackgroundTransparency = 0.69999998807907
  112. TPTOTICKETBUTTON.BorderSizePixel = 4
  113. TPTOTICKETBUTTON.Position = UDim2.new(0.558847785, 0, 0.560823321, 0)
  114. TPTOTICKETBUTTON.Size = UDim2.new(0, 182, 0, 81)
  115. TPTOTICKETBUTTON.Font = Enum.Font.GothamSemibold
  116. TPTOTICKETBUTTON.Text = "[Keep Clicking] Teleport to highest value ticket"
  117. TPTOTICKETBUTTON.TextColor3 = Color3.new(1, 1, 1)
  118. TPTOTICKETBUTTON.TextScaled = true
  119. TPTOTICKETBUTTON.TextSize = 14
  120. TPTOTICKETBUTTON.TextWrapped = true
  121. TPTOTICKETBUTTON.MouseButton1Down:connect(function()
  122. local children = workspace:getChildren()
  123. for i=1,#children do
  124. if children[i].Name == "Ticket" then
  125. if children[i].Owner.Value == "Nobody" then
  126. if children[i].Worth.Value >= 1000 then
  127. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(children[i].Position)
  128. end
  129. end
  130. end
  131. end
  132. end)
  133.  
  134. DISABLEANTICHEAT.Name = "DISABLEANTICHEAT"
  135. DISABLEANTICHEAT.Parent = MainFrame
  136. DISABLEANTICHEAT.BackgroundColor3 = Color3.new(1, 0.32549, 0.192157)
  137. DISABLEANTICHEAT.BackgroundTransparency = 0.69999998807907
  138. DISABLEANTICHEAT.BorderSizePixel = 4
  139. DISABLEANTICHEAT.Position = UDim2.new(0.0620056801, 0, 0.273626089, 0)
  140. DISABLEANTICHEAT.Size = UDim2.new(0, 428, 0, 53)
  141. DISABLEANTICHEAT.Font = Enum.Font.GothamSemibold
  142. DISABLEANTICHEAT.Text = "[Run First] DISABLE ANTI-CHEAT"
  143. DISABLEANTICHEAT.TextColor3 = Color3.new(1, 1, 1)
  144. DISABLEANTICHEAT.TextScaled = true
  145. DISABLEANTICHEAT.TextSize = 14
  146. DISABLEANTICHEAT.TextWrapped = true
  147. DISABLEANTICHEAT.MouseButton1Down:connect(function()
  148. game:GetService('ReplicatedStorage').Events.AntiCheat:Destroy()
  149. end)
  150.  
  151. DISCORDLINK.Name = "DISCORDLINK"
  152. DISCORDLINK.Parent = MainFrame
  153. DISCORDLINK.BackgroundColor3 = Color3.new(1, 1, 1)
  154. DISCORDLINK.BackgroundTransparency = 1
  155. DISCORDLINK.BorderSizePixel = 0
  156. DISCORDLINK.Size = UDim2.new(0, 475, 0, 30)
  157. DISCORDLINK.Font = Enum.Font.GothamSemibold
  158. DISCORDLINK.Text = "https://discord.gg/TSNQ5Hk"
  159. DISCORDLINK.TextColor3 = Color3.new(1, 1, 1)
  160. DISCORDLINK.TextScaled = true
  161. DISCORDLINK.TextSize = 14
  162. DISCORDLINK.TextWrapped = true
  163.  
  164. DISCORDNAME.Name = "DISCORDNAME"
  165. DISCORDNAME.Parent = MainFrame
  166. DISCORDNAME.BackgroundColor3 = Color3.new(1, 1, 1)
  167. DISCORDNAME.BackgroundTransparency = 1
  168. DISCORDNAME.BorderSizePixel = 0
  169. DISCORDNAME.Position = UDim2.new(0, 0, 0.103806227, 0)
  170. DISCORDNAME.Size = UDim2.new(0, 475, 0, 22)
  171. DISCORDNAME.Font = Enum.Font.GothamSemibold
  172. DISCORDNAME.Text = "yealetFNG#1693"
  173. DISCORDNAME.TextColor3 = Color3.new(1, 1, 1)
  174. DISCORDNAME.TextScaled = true
  175. DISCORDNAME.TextSize = 14
  176. DISCORDNAME.TextWrapped = true
  177.  
  178. CLOSEMAINFRAMEBUTTON.Name = "CLOSEMAINFRAMEBUTTON"
  179. CLOSEMAINFRAMEBUTTON.Parent = MainFrame
  180. CLOSEMAINFRAMEBUTTON.BackgroundColor3 = Color3.new(1, 0.32549, 0.192157)
  181. CLOSEMAINFRAMEBUTTON.BackgroundTransparency = 0.69999998807907
  182. CLOSEMAINFRAMEBUTTON.BorderSizePixel = 4
  183. CLOSEMAINFRAMEBUTTON.Position = UDim2.new(0.29147923, 0, 0.916955054, 0)
  184. CLOSEMAINFRAMEBUTTON.Size = UDim2.new(0, 198, 0, 24)
  185. CLOSEMAINFRAMEBUTTON.Font = Enum.Font.GothamSemibold
  186. CLOSEMAINFRAMEBUTTON.Text = "Close"
  187. CLOSEMAINFRAMEBUTTON.TextColor3 = Color3.new(1, 1, 1)
  188. CLOSEMAINFRAMEBUTTON.TextScaled = true
  189. CLOSEMAINFRAMEBUTTON.TextSize = 14
  190. CLOSEMAINFRAMEBUTTON.TextWrapped = true
  191. CLOSEMAINFRAMEBUTTON.MouseButton1Down:connect(function()
  192. MainFrame.Visible = false-- Makes the gui visible
  193. OpenFrame.Visible = true-- Makes the open button invisible
  194. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement