FurkingBoi

Ramen Simulator

May 12th, 2020
552
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.41 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 = "Ramen 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 = "AutoFarm"
  44. TextButton.TextColor3 = Color3.new(0, 0, 0)
  45. TextButton.TextSize = 14
  46. TextButton.MouseButton1Down:connect(function()
  47. --AutoFarm
  48. _G.HEAT = true --change to true or false
  49. while _G.HEAT do
  50. wait() --change time if you want
  51. game:GetService("ReplicatedStorage").RemoteFunctions.HeatIncreaseFunc:InvokeServer()
  52. end
  53. end)
  54.  
  55. TextButton_2.Parent = Frame
  56. TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  57. TextButton_2.Position = UDim2.new(0.508417487, 0, 0.145985395, 0)
  58. TextButton_2.Size = UDim2.new(0, 124, 0, 50)
  59. TextButton_2.Font = Enum.Font.SourceSans
  60. TextButton_2.Text = "AutoSell"
  61. TextButton_2.TextColor3 = Color3.new(0, 0, 0)
  62. TextButton_2.TextSize = 14
  63. TextButton_2.MouseButton1Down:connect(function()
  64. --AutoSell
  65. _G.SELL = true --change to true or false
  66. while _G.SELL do
  67. wait() --change time if you want
  68. game:GetService("ReplicatedStorage").RemoteFunctions.SellHeatFunc:InvokeServer()
  69. end
  70. end)
  71.  
  72. TextButton_3.Parent = Frame
  73. TextButton_3.BackgroundColor3 = Color3.new(1, 1, 1)
  74. TextButton_3.Position = UDim2.new(0.0370370448, 0, 0.434306532, 0)
  75. TextButton_3.Size = UDim2.new(0, 124, 0, 50)
  76. TextButton_3.Font = Enum.Font.SourceSans
  77. TextButton_3.Text = "AutoFire"
  78. TextButton_3.TextColor3 = Color3.new(0, 0, 0)
  79. TextButton_3.TextSize = 14
  80. TextButton_3.MouseButton1Down:connect(function()
  81. --AutoFire
  82. _G.FIRE = true --change to true or false
  83. while _G.FIRE do
  84. wait() --change time if you want
  85. local A_1 = true
  86. game:GetService("ReplicatedStorage").RemoteEvents.FireBreathEvent:FireServer(A_1)
  87. game:GetService("ReplicatedStorage").RemoteEvents.FireBreathDamageEvent:FireServer()
  88. end
  89. end)
  90.  
  91. TextButton_4.Parent = Frame
  92. TextButton_4.BackgroundColor3 = Color3.new(1, 1, 1)
  93. TextButton_4.Position = UDim2.new(0.0370370448, 0, 0.708029211, 0)
  94. TextButton_4.Size = UDim2.new(0, 124, 0, 50)
  95. TextButton_4.Font = Enum.Font.SourceSans
  96. TextButton_4.Text = "AutoBuy Ramen"
  97. TextButton_4.TextColor3 = Color3.new(0, 0, 0)
  98. TextButton_4.TextSize = 14
  99. TextButton_4.MouseButton1Down:connect(function()
  100. --AutoBuyRamen
  101. local tools = game:GetService("ReplicatedStorage").ToolsImg:GetChildren()
  102. for i=1, #tools do
  103. local A_1 = game:GetService("ReplicatedStorage").ToolsImg[i].ItemIdName.Value
  104. local A_2 = "Tool"
  105. game:GetService("ReplicatedStorage").RemoteEvents.ShopItemBuyEvent:FireServer(A_1, A_2)
  106. end
  107. end)
  108.  
  109. TextButton_5.Parent = Frame
  110. TextButton_5.BackgroundColor3 = Color3.new(1, 1, 1)
  111. TextButton_5.Position = UDim2.new(0.508417487, 0, 0.434306532, 0)
  112. TextButton_5.Size = UDim2.new(0, 124, 0, 50)
  113. TextButton_5.Font = Enum.Font.SourceSans
  114. TextButton_5.Text = "AutoBuy Heat"
  115. TextButton_5.TextColor3 = Color3.new(0, 0, 0)
  116. TextButton_5.TextSize = 14
  117. TextButton_5.MouseButton1Down:connect(function()
  118. --AutoBuyHeats
  119. local heats = game:GetService("ReplicatedStorage").HeatUpgradesImg:GetChildren()
  120. for i=1, #heats do
  121. local A_1 = game:GetService("ReplicatedStorage").HeatUpgradesImg[i].ItemIdName.Value
  122. local A_2 = "Upgrade"
  123. game:GetService("ReplicatedStorage").RemoteEvents.ShopItemBuyEvent:FireServer(A_1, A_2)
  124. end
  125. end)
  126.  
  127. TextButton_6.Parent = Frame
  128. TextButton_6.BackgroundColor3 = Color3.new(1, 0, 0)
  129. TextButton_6.Position = UDim2.new(0.92592591, 0, 0, 0)
  130. TextButton_6.Size = UDim2.new(0, 22, 0, 23)
  131. TextButton_6.Font = Enum.Font.GothamBold
  132. TextButton_6.Text = "X"
  133. TextButton_6.TextColor3 = Color3.new(0, 0, 0)
  134. TextButton_6.TextSize = 28
  135. TextButton_6.MouseButton1Down:connect(function()
  136. Frame.Visible = false
  137. Frame_2.Visible = true
  138. end)
  139.  
  140. Frame_2.Parent = ScreenGui
  141. Frame_2.BackgroundColor3 = Color3.new(1, 1, 1)
  142. Frame_2.Position = UDim2.new(0.00717131514, 0, 0.444174707, 0)
  143. Frame_2.Size = UDim2.new(0, 91, 0, 28)
  144. Frame.Active = true
  145. Frame.Draggable = true
  146.  
  147.  
  148. TextButton_7.Parent = Frame_2
  149. TextButton_7.BackgroundColor3 = Color3.new(1, 1, 1)
  150. TextButton_7.Position = UDim2.new(0, 0, 0.0357142873, 0)
  151. TextButton_7.Size = UDim2.new(0, 190, 0, 260)
  152. TextButton_7.Font = Enum.Font.SourceSans
  153. TextButton_7.Text = "Open"
  154. TextButton_7.TextColor3 = Color3.new(0, 0, 0)
  155. TextButton_7.TextSize = 14
  156. TextButton_7.MouseButton1Down:connect(function()
  157. Frame_2.Visible = false
  158. Frame.Visible = true
  159. end)
Add Comment
Please, Sign In to add comment