Advertisement
Guest User

ballonsimgui

a guest
Dec 8th, 2019
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.87 KB | None | 0 0
  1. --version 1.0
  2. --yealetFNG
  3.  
  4. -- Instances:
  5.  
  6. local ballonsimulatorgui = Instance.new("ScreenGui")
  7. local openframe = Instance.new("Frame")
  8. local title = Instance.new("TextLabel")
  9. local discord = Instance.new("TextLabel")
  10. local openbutton = Instance.new("TextButton")
  11. local mainframe = Instance.new("Frame")
  12. local closebutton = Instance.new("TextButton")
  13. local title_2 = Instance.new("TextLabel")
  14. local givecoins = Instance.new("TextButton")
  15. local fastestautofarm = Instance.new("TextButton")
  16. local averageautofarm = Instance.new("TextButton")
  17. local autorebirth = Instance.new("TextButton")
  18.  
  19. --Properties:
  20.  
  21. ballonsimulatorgui.Name = "ballonsimulatorgui"
  22. ballonsimulatorgui.Parent = game.CoreGui
  23.  
  24. openframe.Name = "openframe"
  25. openframe.Parent = ballonsimulatorgui
  26. openframe.BackgroundColor3 = Color3.new(1, 1, 1)
  27. openframe.Position = UDim2.new(0.553191423, 0, 0.0297973678, 0)
  28. openframe.Size = UDim2.new(0, 252, 0, 118)
  29. openframe.Style = Enum.FrameStyle.RobloxRound
  30. openframe.Draggable = true
  31. openframe.Active = true
  32.  
  33. title.Name = "title"
  34. title.Parent = openframe
  35. title.BackgroundColor3 = Color3.new(1, 1, 1)
  36. title.BackgroundTransparency = 1
  37. title.Position = UDim2.new(0.0198412724, 0, 0.0593220331, 0)
  38. title.Size = UDim2.new(0, 227, 0, 22)
  39. title.Font = Enum.Font.Gotham
  40. title.Text = "BallonSimulatorGUI"
  41. title.TextColor3 = Color3.new(1, 1, 1)
  42. title.TextScaled = true
  43. title.TextSize = 14
  44. title.TextWrapped = true
  45.  
  46. discord.Name = "discord"
  47. discord.Parent = openframe
  48. discord.BackgroundColor3 = Color3.new(1, 1, 1)
  49. discord.BackgroundTransparency = 1
  50. discord.Position = UDim2.new(0.0753977969, 0, 0.322698504, 0)
  51. discord.Size = UDim2.new(0, 227, 0, 24)
  52. discord.Font = Enum.Font.Gotham
  53. discord.Text = "https://discord.gg/TSNQ5Hk\\n"
  54. discord.TextColor3 = Color3.new(1, 1, 1)
  55. discord.TextScaled = true
  56. discord.TextSize = 14
  57. discord.TextWrapped = true
  58.  
  59. openbutton.Name = "openbutton"
  60. openbutton.Parent = openframe
  61. openbutton.BackgroundColor3 = Color3.new(0.14902, 1, 0.27451)
  62. openbutton.BackgroundTransparency = 0.30000001192093
  63. openbutton.Position = UDim2.new(0.0401875377, 0, 0.551526666, 0)
  64. openbutton.Size = UDim2.new(0, 222, 0, 36)
  65. openbutton.Font = Enum.Font.GothamBlack
  66. openbutton.Text = "open"
  67. openbutton.TextColor3 = Color3.new(1, 1, 10.0196)
  68. openbutton.TextScaled = true
  69. openbutton.TextSize = 14
  70. openbutton.TextWrapped = true
  71. openbutton.MouseButton1Down:connect(function()
  72. mainframe.Visible = true -- Makes the gui visible
  73. openframe.Visible = false -- Makes the open button invisible
  74. end)
  75.  
  76.  
  77. mainframe.Name = "mainframe"
  78. mainframe.Parent = ballonsimulatorgui
  79. mainframe.BackgroundColor3 = Color3.new(1, 1, 1)
  80. mainframe.Position = UDim2.new(0.384230226, 0, 0.0297973771, 0)
  81. mainframe.Size = UDim2.new(0, 250, 0, 382)
  82. mainframe.Style = Enum.FrameStyle.RobloxRound
  83. mainframe.Draggable = true
  84. mainframe.Active = true
  85.  
  86. closebutton.Name = "closebutton"
  87. closebutton.Parent = mainframe
  88. closebutton.BackgroundColor3 = Color3.new(1, 0.0627451, 0.0627451)
  89. closebutton.BackgroundTransparency = 0.30000001192093
  90. closebutton.Position = UDim2.new(0.0304553304, 0, 0.0150218382, 0)
  91. closebutton.Size = UDim2.new(0, 222, 0, 19)
  92. closebutton.Font = Enum.Font.GothamBlack
  93. closebutton.Text = "close"
  94. closebutton.TextColor3 = Color3.new(1, 1, 10.0196)
  95. closebutton.TextScaled = true
  96. closebutton.TextSize = 14
  97. closebutton.TextWrapped = true
  98. closebutton.MouseButton1Down:connect(function()
  99. mainframe.Visible = false-- Makes the gui visible
  100. openframe.Visible = true-- Makes the open button invisible
  101. end)
  102.  
  103.  
  104. title_2.Name = "title"
  105. title_2.Parent = mainframe
  106. title_2.BackgroundColor3 = Color3.new(1, 1, 1)
  107. title_2.BackgroundTransparency = 1
  108. title_2.Position = UDim2.new(0.0198412724, 0, 0.0907356441, 0)
  109. title_2.Size = UDim2.new(0, 227, 0, 22)
  110. title_2.Font = Enum.Font.Gotham
  111. title_2.Text = "BallonSimulatorGUI"
  112. title_2.TextColor3 = Color3.new(1, 1, 1)
  113. title_2.TextScaled = true
  114. title_2.TextSize = 14
  115. title_2.TextWrapped = true
  116.  
  117. givecoins.Name = "givecoins"
  118. givecoins.Parent = mainframe
  119. givecoins.BackgroundColor3 = Color3.new(0.345098, 0.356863, 1)
  120. givecoins.BackgroundTransparency = 0.5
  121. givecoins.Position = UDim2.new(0.020585075, 0, 0.249212846, 0)
  122. givecoins.Size = UDim2.new(0, 224, 0, 38)
  123. givecoins.Font = Enum.Font.GothamBlack
  124. givecoins.Text = "Give 10,000 coins"
  125. givecoins.TextColor3 = Color3.new(1, 1, 1)
  126. givecoins.TextScaled = true
  127. givecoins.TextSize = 14
  128. givecoins.TextWrapped = true
  129. givecoins.MouseButton1Down:connect(function()
  130. game.ReplicatedStorage.FillBalloon:FireServer(10000)
  131. game.ReplicatedStorage.Sell:FireServer(workspace.UITriggers.Sell)
  132. end)
  133.  
  134. fastestautofarm.Name = "fastestautofarm"
  135. fastestautofarm.Parent = mainframe
  136. fastestautofarm.BackgroundColor3 = Color3.new(0.345098, 0.356863, 1)
  137. fastestautofarm.BackgroundTransparency = 0.5
  138. fastestautofarm.Position = UDim2.new(0.020585075, 0, 0.43769452, 0)
  139. fastestautofarm.Size = UDim2.new(0, 224, 0, 38)
  140. fastestautofarm.Font = Enum.Font.GothamBlack
  141. fastestautofarm.Text = "fastest autofarm"
  142. fastestautofarm.TextColor3 = Color3.new(1, 1, 1)
  143. fastestautofarm.TextScaled = true
  144. fastestautofarm.TextSize = 14
  145. fastestautofarm.TextWrapped = true
  146. fastestautofarm.MouseButton1Down:connect(function()
  147. while true do
  148. wait()
  149. spawn(function()
  150. while true do
  151. wait()
  152. spawn(function()
  153. while true do
  154. wait()
  155. game.ReplicatedStorage.FillBalloon:FireServer(10000)
  156. game.ReplicatedStorage.Sell:FireServer(workspace.UITriggers.Sell)
  157. end
  158. end)
  159. end
  160. end)
  161. end
  162. end)
  163.  
  164. averageautofarm.Name = "averageautofarm"
  165. averageautofarm.Parent = mainframe
  166. averageautofarm.BackgroundColor3 = Color3.new(0.345098, 0.356863, 1)
  167. averageautofarm.BackgroundTransparency = 0.5
  168. averageautofarm.Position = UDim2.new(0.0166168213, 0, 0.620940566, 0)
  169. averageautofarm.Size = UDim2.new(0, 224, 0, 38)
  170. averageautofarm.Font = Enum.Font.GothamBlack
  171. averageautofarm.Text = "average speed autofarm"
  172. averageautofarm.TextColor3 = Color3.new(1, 1, 1)
  173. averageautofarm.TextScaled = true
  174. averageautofarm.TextSize = 14
  175. averageautofarm.TextWrapped = true
  176. averageautofarm.MouseButton1Down:connect(function()
  177. while true do
  178. wait()
  179. game.ReplicatedStorage.FillBalloon:FireServer(10000)
  180. game.ReplicatedStorage.Sell:FireServer(workspace.UITriggers.Sell)
  181. end
  182. end)
  183.  
  184. autorebirth.Name = "autorebirth"
  185. autorebirth.Parent = mainframe
  186. autorebirth.BackgroundColor3 = Color3.new(0.345098, 0.356863, 1)
  187. autorebirth.BackgroundTransparency = 0.5
  188. autorebirth.Position = UDim2.new(0.0166168213, 0, 0.793715417, 0)
  189. autorebirth.Size = UDim2.new(0, 224, 0, 38)
  190. autorebirth.Font = Enum.Font.GothamBlack
  191. autorebirth.Text = "auto rebirth"
  192. autorebirth.TextColor3 = Color3.new(1, 1, 1)
  193. autorebirth.TextScaled = true
  194. autorebirth.TextSize = 14
  195. autorebirth.TextWrapped = true
  196. autorebirth.MouseButton1Down:connect(function()
  197. while true do
  198. wait()
  199. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(65, 13969, 1494))
  200. game.ReplicatedStorage.Rebirth:InvokeServer()
  201. end
  202. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement