FurkingBoi

billionaire

Feb 22nd, 2020
2,323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.38 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local TextButton = Instance.new("TextButton")
  10. local TextButton_2 = Instance.new("TextButton")
  11. local TextButton_3 = Instance.new("TextButton")
  12. local TextButton_4 = Instance.new("TextButton")
  13. local TextButton_5 = Instance.new("TextButton")
  14. local TextButton_6 = Instance.new("TextButton")
  15. local Frame_2 = Instance.new("Frame")
  16. local TextButton_7 = Instance.new("TextButton")
  17.  
  18. --Properties:
  19.  
  20. ScreenGui.Parent = game.CoreGui
  21.  
  22. Frame.Parent = ScreenGui
  23. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  24. Frame.Position = UDim2.new(0.0788844526, 0, 0.54004848, 0)
  25. Frame.Size = UDim2.new(0, 297, 0, 274)
  26. Frame.Visible = false
  27. Frame.Active = true
  28. Frame.Draggable = true
  29.  
  30. TextLabel.Parent = Frame
  31. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  32. TextLabel.Size = UDim2.new(0, 297, 0, 23)
  33. TextLabel.Font = Enum.Font.GothamBlack
  34. TextLabel.Text = "Billionaire Simulator Fucker"
  35. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  36. TextLabel.TextSize = 20
  37.  
  38. TextButton.Parent = Frame
  39. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  40. TextButton.Position = UDim2.new(0.0370370448, 0, 0.145985395, 0)
  41. TextButton.Size = UDim2.new(0, 124, 0, 50)
  42. TextButton.Font = Enum.Font.SourceSans
  43. TextButton.Text = "Auto Farm"
  44. TextButton.TextColor3 = Color3.new(0, 0, 0)
  45. TextButton.TextSize = 14
  46. TextButton.MouseButton1Down:connect(function()
  47. _G.AutoBS = true
  48.  
  49. while _G.AutoBS == true
  50. do
  51. wait()
  52. local Event = game:GetService('ReplicatedStorage').RPC.Businesses_Click
  53.  
  54. local Args = { 'hotdog' }
  55.  
  56. Event:FireServer(unpack(Args))
  57. end
  58. end)
  59.  
  60. TextButton_2.Parent = Frame
  61. TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  62. TextButton_2.Position = UDim2.new(0.508417487, 0, 0.145985395, 0)
  63. TextButton_2.Size = UDim2.new(0, 124, 0, 50)
  64. TextButton_2.Font = Enum.Font.SourceSans
  65. TextButton_2.Text = "Auto Upgrade"
  66. TextButton_2.TextColor3 = Color3.new(0, 0, 0)
  67. TextButton_2.TextSize = 14
  68. TextButton_2.MouseButton1Down:connect(function()
  69. _G.AutoUpgrade = true
  70.  
  71. while _G.AutoUpgrade == true
  72. do
  73. wait()
  74. local Event = game:GetService('ReplicatedStorage').RPC.Businesses_Purchase
  75.  
  76. local Args = { 'hotdog', 10 }
  77.  
  78. Event:FireServer(unpack(Args))
  79. end
  80. end)
  81.  
  82.  
  83.  
  84. TextButton_6.Parent = Frame
  85. TextButton_6.BackgroundColor3 = Color3.new(1, 0, 0)
  86. TextButton_6.Position = UDim2.new(0.92592591, 0, 0, 0)
  87. TextButton_6.Size = UDim2.new(0, 22, 0, 23)
  88. TextButton_6.Font = Enum.Font.GothamBold
  89. TextButton_6.Text = "X"
  90. TextButton_6.TextColor3 = Color3.new(0, 0, 0)
  91. TextButton_6.TextSize = 28
  92. TextButton_6.MouseButton1Down:connect(function()
  93. Frame.Visible = false
  94. Frame_2.Visible = true
  95. end)
  96.  
  97. Frame_2.Parent = ScreenGui
  98. Frame_2.BackgroundColor3 = Color3.new(1, 1, 1)
  99. Frame_2.Position = UDim2.new(0.00717131514, 0, 0.444174707, 0)
  100. Frame_2.Size = UDim2.new(0, 91, 0, 28)
  101. Frame.Active = true
  102. Frame.Draggable = true
  103.  
  104.  
  105. TextButton_7.Parent = Frame_2
  106. TextButton_7.BackgroundColor3 = Color3.new(1, 1, 1)
  107. TextButton_7.Position = UDim2.new(0, 0, 0.0357142873, 0)
  108. TextButton_7.Size = UDim2.new(0,190, 0, 260)
  109. TextButton_7.Font = Enum.Font.SourceSans
  110. TextButton_7.Text = "Open"
  111. TextButton_7.TextColor3 = Color3.new(0, 0, 0)
  112. TextButton_7.TextSize = 100
  113. TextButton_7.MouseButton1Down:connect(function()
  114. Frame_2.Visible = false
  115. Frame.Visible = true
  116. end)
Add Comment
Please, Sign In to add comment