Advertisement
DepsYT

Ramen Simulator

May 12th, 2020
1,144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.34 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local GUI = Instance.new("ScreenGui")
  7. local Main = Instance.new("Frame")
  8. local AFOn = Instance.new("TextButton")
  9. local ASOn = Instance.new("TextButton")
  10. local AFOff = Instance.new("TextButton")
  11. local ASOff = Instance.new("TextButton")
  12. local CLose = Instance.new("TextButton")
  13. local By = Instance.new("TextLabel")
  14. local TP = Instance.new("Frame")
  15. local Zone = Instance.new("TextButton")
  16. local CLose_2 = Instance.new("TextButton")
  17. local Zone_2 = Instance.new("TextButton")
  18. local Zone_3 = Instance.new("TextButton")
  19. local Zone_4 = Instance.new("TextButton")
  20. local Zone_5 = Instance.new("TextButton")
  21. local Zone_6 = Instance.new("TextButton")
  22. local Zone_7 = Instance.new("TextButton")
  23. local Zone_8 = Instance.new("TextButton")
  24. local Zone_9 = Instance.new("TextButton")
  25. local Zone_10 = Instance.new("TextButton")
  26. local Zone_11 = Instance.new("TextButton")
  27. local AllIslands = Instance.new("TextButton")
  28.  
  29. --Properties:
  30.  
  31. GUI.Name = "GUI"
  32. GUI.Parent = game.CoreGui
  33. GUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  34.  
  35. Main.Name = "Main"
  36. Main.Parent = GUI
  37. Main.Active = true
  38. Main.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  39. Main.BorderSizePixel = 0
  40. Main.Position = UDim2.new(0.216253445, 0, 0.322695047, 0)
  41. Main.Size = UDim2.new(0, 412, 0, 200)
  42. Main.Active = true
  43. Main.Draggable = true
  44.  
  45. AFOn.Name = "AF On"
  46. AFOn.Parent = Main
  47. AFOn.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  48. AFOn.BorderColor3 = Color3.fromRGB(25, 25, 25)
  49. AFOn.BorderSizePixel = 0
  50. AFOn.Position = UDim2.new(3.7252903e-09, 0, 0.170000002, 0)
  51. AFOn.Size = UDim2.new(0, 154, 0, 46)
  52. AFOn.Font = Enum.Font.SourceSans
  53. AFOn.Text = "Auto Farm [On]"
  54. AFOn.TextColor3 = Color3.fromRGB(255, 255, 255)
  55. AFOn.TextSize = 14.000
  56. AFOn.MouseButton1Down:connect (function()
  57. --AutoFarm
  58. _G.HEAT = true --change to true or false
  59. while _G.HEAT do
  60. wait() --change time if you want
  61. game:GetService("ReplicatedStorage").RemoteFunctions.HeatIncreaseFunc:InvokeServer()
  62. end
  63. end)
  64.  
  65. ASOn.Name = "AS On"
  66. ASOn.Parent = Main
  67. ASOn.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  68. ASOn.BorderColor3 = Color3.fromRGB(25, 25, 25)
  69. ASOn.BorderSizePixel = 0
  70. ASOn.Position = UDim2.new(0.62621361, 0, 0.170000002, 0)
  71. ASOn.Size = UDim2.new(0, 154, 0, 46)
  72. ASOn.Font = Enum.Font.SourceSans
  73. ASOn.Text = "Auto Sell [On]"
  74. ASOn.TextColor3 = Color3.fromRGB(255, 255, 255)
  75. ASOn.TextSize = 14.000
  76. ASOn.MouseButton1Down:connect (function()
  77. --AutoSell
  78. _G.SELL = true --change to true or false
  79. while _G.SELL do
  80. wait() --change time if you want
  81. game:GetService("ReplicatedStorage").RemoteFunctions.SellHeatFunc:InvokeServer()
  82. end
  83. end)
  84.  
  85. AFOff.Name = "AF Off"
  86. AFOff.Parent = Main
  87. AFOff.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  88. AFOff.BorderColor3 = Color3.fromRGB(25, 25, 25)
  89. AFOff.BorderSizePixel = 0
  90. AFOff.Position = UDim2.new(3.7252903e-09, 0, 0.540000021, 0)
  91. AFOff.Size = UDim2.new(0, 154, 0, 46)
  92. AFOff.Font = Enum.Font.SourceSans
  93. AFOff.Text = "Auto Farm [Off]"
  94. AFOff.TextColor3 = Color3.fromRGB(255, 255, 255)
  95. AFOff.TextSize = 14.000
  96. AFOff.MouseButton1Down:connect (function()
  97. --AutoFarm
  98. _G.HEAT = false --change to true or false
  99. while _G.HEAT do
  100. wait() --change time if you want
  101. game:GetService("ReplicatedStorage").RemoteFunctions.HeatIncreaseFunc:InvokeServer()
  102. end
  103. end)
  104.  
  105.  
  106. ASOff.Name = "AS Off"
  107. ASOff.Parent = Main
  108. ASOff.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  109. ASOff.BorderColor3 = Color3.fromRGB(25, 25, 25)
  110. ASOff.BorderSizePixel = 0
  111. ASOff.Position = UDim2.new(0.62621361, 0, 0.540000021, 0)
  112. ASOff.Size = UDim2.new(0, 154, 0, 46)
  113. ASOff.Font = Enum.Font.SourceSans
  114. ASOff.Text = "Auto Sell [Off]"
  115. ASOff.TextColor3 = Color3.fromRGB(255, 255, 255)
  116. ASOff.TextSize = 14.000
  117. ASOff.MouseButton1Down:connect(function()
  118. --AutoSell
  119. _G.SELL = false --change to true or false
  120. while _G.SELL do
  121. wait() --change time if you want
  122. game:GetService("ReplicatedStorage").RemoteFunctions.SellHeatFunc:InvokeServer()
  123. end
  124. end)
  125.  
  126. CLose.Name = "CLose"
  127. CLose.Parent = Main
  128. CLose.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  129. CLose.BorderColor3 = Color3.fromRGB(25, 25, 25)
  130. CLose.BorderSizePixel = 0
  131. CLose.Position = UDim2.new(0.941747546, 0, 0, 0)
  132. CLose.Size = UDim2.new(0, 24, 0, 24)
  133. CLose.Font = Enum.Font.SourceSans
  134. CLose.Text = "X"
  135. CLose.TextColor3 = Color3.fromRGB(170, 0, 0)
  136. CLose.TextSize = 18.000
  137. CLose.MouseButton1Down:connect(function()
  138. GUI.Visible = false
  139. end)
  140.  
  141. By.Name = "By"
  142. By.Parent = Main
  143. By.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  144. By.BorderSizePixel = 0
  145. By.Position = UDim2.new(0.271336526, 0, 0.860744655, 0)
  146. By.Size = UDim2.new(0, 187, 0, 27)
  147. By.Font = Enum.Font.SourceSans
  148. By.Text = "GUI by DepsYT#0274"
  149. By.TextColor3 = Color3.fromRGB(255, 255, 255)
  150. By.TextSize = 19.000
  151.  
  152. TP.Name = "TP"
  153. TP.Parent = Main
  154. TP.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  155. TP.BorderColor3 = Color3.fromRGB(25, 25, 25)
  156. TP.BorderSizePixel = 2
  157. TP.Position = UDim2.new(-0.269417465, 0, 0, 0)
  158. TP.Size = UDim2.new(0, 100, 0, 200)
  159. TP.Active = true
  160. TP.Draggable = true
  161.  
  162. Zone.Name = "Zone"
  163. Zone.Parent = TP
  164. Zone.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  165. Zone.BorderColor3 = Color3.fromRGB(25, 25, 25)
  166. Zone.BorderSizePixel = 0
  167. Zone.Position = UDim2.new(0.11242722, 0, 0.144999981, 0)
  168. Zone.Size = UDim2.new(0, 81, 0, 17)
  169. Zone.Font = Enum.Font.SourceSans
  170. Zone.Text = "Fortune island"
  171. Zone.TextColor3 = Color3.fromRGB(255, 255, 255)
  172. Zone.TextSize = 14.000
  173. Zone.MouseButton1Down:connect(function()
  174. for i = 1,45 do
  175. wait(.08)
  176. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-222, 1064, 594)
  177. end
  178. end)
  179.  
  180. CLose_2.Name = "CLose"
  181. CLose_2.Parent = TP
  182. CLose_2.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  183. CLose_2.BorderColor3 = Color3.fromRGB(25, 25, 25)
  184. CLose_2.BorderSizePixel = 0
  185. CLose_2.Position = UDim2.new(0.751747549, 0, 0, 0)
  186. CLose_2.Size = UDim2.new(0, 24, 0, 24)
  187. CLose_2.Font = Enum.Font.SourceSans
  188. CLose_2.Text = "X"
  189. CLose_2.TextColor3 = Color3.fromRGB(170, 0, 0)
  190. CLose_2.TextSize = 18.000
  191. CLose_2.MouseButton1Down:connect(function()
  192. TP.Visible = false
  193. end)
  194.  
  195. Zone_2.Name = "Zone"
  196. Zone_2.Parent = TP
  197. Zone_2.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  198. Zone_2.BorderColor3 = Color3.fromRGB(25, 25, 25)
  199. Zone_2.BorderSizePixel = 0
  200. Zone_2.Position = UDim2.new(0.11242722, 0, 0.229999989, 0)
  201. Zone_2.Size = UDim2.new(0, 81, 0, 17)
  202. Zone_2.Font = Enum.Font.SourceSans
  203. Zone_2.Text = "Lava lake island"
  204. Zone_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  205. Zone_2.TextSize = 14.000
  206. Zone_2.MouseButton1Down:connect(function()
  207. for i = 1,45 do
  208. wait(.08)
  209. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-218, 1887, 567)
  210. end
  211. end)
  212.  
  213. Zone_3.Name = "Zone"
  214. Zone_3.Parent = TP
  215. Zone_3.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  216. Zone_3.BorderColor3 = Color3.fromRGB(25, 25, 25)
  217. Zone_3.BorderSizePixel = 0
  218. Zone_3.Position = UDim2.new(0.11242722, 0, 0.484999985, 0)
  219. Zone_3.Size = UDim2.new(0, 81, 0, 17)
  220. Zone_3.Font = Enum.Font.SourceSans
  221. Zone_3.Text = "Interstellar island"
  222. Zone_3.TextColor3 = Color3.fromRGB(255, 255, 255)
  223. Zone_3.TextSize = 13.000
  224. Zone_3.MouseButton1Down:connect(function()
  225. for i = 1,45 do
  226. wait(.08)
  227. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-301, 15715, 400)
  228. end
  229. end)
  230.  
  231. Zone_5.Name = "Zone"
  232. Zone_5.Parent = TP
  233. Zone_5.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  234. Zone_5.BorderColor3 = Color3.fromRGB(25, 25, 25)
  235. Zone_5.BorderSizePixel = 0
  236. Zone_5.Position = UDim2.new(0.11242722, 0, 0.314999998, 0)
  237. Zone_5.Size = UDim2.new(0, 81, 0, 17)
  238. Zone_5.Font = Enum.Font.SourceSans
  239. Zone_5.Text = "Magma pools island"
  240. Zone_5.TextColor3 = Color3.fromRGB(255, 255, 255)
  241. Zone_5.TextSize = 10.000
  242. Zone_5.MouseButton1Down:connect(function()
  243. for i = 1,45 do
  244. wait(.08)
  245. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-184, 4318, 452)
  246. end
  247. end)
  248.  
  249. Zone_6.Name = "Zone"
  250. Zone_6.Parent = TP
  251. Zone_6.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  252. Zone_6.BorderColor3 = Color3.fromRGB(25, 25, 25)
  253. Zone_6.BorderSizePixel = 0
  254. Zone_6.Position = UDim2.new(0.11242722, 0, 0.910000026, 0)
  255. Zone_6.Size = UDim2.new(0, 81, 0, 17)
  256. Zone_6.Font = Enum.Font.SourceSans
  257. Zone_6.Text = "Spacebound island"
  258. Zone_6.TextColor3 = Color3.fromRGB(255, 255, 255)
  259. Zone_6.TextSize = 12.000
  260. Zone_6.MouseButton1Down:connect(function()
  261. for i = 1,45 do
  262. wait(.08)
  263. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-379, 62940, -114)
  264. end
  265. end)
  266.  
  267. Zone_7.Name = "Zone"
  268. Zone_7.Parent = TP
  269. Zone_7.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  270. Zone_7.BorderColor3 = Color3.fromRGB(25, 25, 25)
  271. Zone_7.BorderSizePixel = 0
  272. Zone_7.Position = UDim2.new(0.11242722, 0, 0.825000048, 0)
  273. Zone_7.Size = UDim2.new(0, 81, 0, 17)
  274. Zone_7.Font = Enum.Font.SourceSans
  275. Zone_7.Text = "Nightmare island"
  276. Zone_7.TextColor3 = Color3.fromRGB(255, 255, 255)
  277. Zone_7.TextSize = 13.000
  278. Zone_7.MouseButton1Down:connect(function()
  279. for i = 1,45 do
  280. wait(.08)
  281. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-435, 48582, 9)
  282. end
  283. end)
  284.  
  285. Zone_8.Name = "Zone"
  286. Zone_8.Parent = TP
  287. Zone_8.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  288. Zone_8.BorderColor3 = Color3.fromRGB(25, 25, 25)
  289. Zone_8.BorderSizePixel = 0
  290. Zone_8.Position = UDim2.new(0.11242722, 0, 0.655000031, 0)
  291. Zone_8.Size = UDim2.new(0, 81, 0, 17)
  292. Zone_8.Font = Enum.Font.SourceSans
  293. Zone_8.Text = "Planetoid island"
  294. Zone_8.TextColor3 = Color3.fromRGB(255, 255, 255)
  295. Zone_8.TextSize = 14.000
  296. Zone_8.MouseButton1Down:connect(function()
  297. for i = 1,45 do
  298. wait(.08)
  299. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-470, 29742, -28)
  300. end
  301. end)
  302.  
  303. Zone_9.Name = "Zone"
  304. Zone_9.Parent = TP
  305. Zone_9.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  306. Zone_9.BorderColor3 = Color3.fromRGB(25, 25, 25)
  307. Zone_9.BorderSizePixel = 0
  308. Zone_9.Position = UDim2.new(0.11242722, 0, 0.569999993, 0)
  309. Zone_9.Size = UDim2.new(0, 81, 0, 17)
  310. Zone_9.Font = Enum.Font.SourceSans
  311. Zone_9.Text = "Void island"
  312. Zone_9.TextColor3 = Color3.fromRGB(255, 255, 255)
  313. Zone_9.TextSize = 14.000
  314. Zone_9.MouseButton1Down:connect(function()
  315. for i = 1,45 do
  316. wait(.08)
  317. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-438, 22263, 182)
  318. end
  319. end)
  320.  
  321. Zone_10.Name = "Zone"
  322. Zone_10.Parent = TP
  323. Zone_10.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  324. Zone_10.BorderColor3 = Color3.fromRGB(25, 25, 25)
  325. Zone_10.BorderSizePixel = 0
  326. Zone_10.Position = UDim2.new(0.11242722, 0, 0.74000001, 0)
  327. Zone_10.Size = UDim2.new(0, 81, 0, 17)
  328. Zone_10.Font = Enum.Font.SourceSans
  329. Zone_10.Text = "Celestial island"
  330. Zone_10.TextColor3 = Color3.fromRGB(255, 255, 255)
  331. Zone_10.TextSize = 14.000
  332. Zone_10.MouseButton1Down:connect(function()
  333. for i = 1,45 do
  334. wait(.08)
  335. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-397, 37066, 87)
  336. end
  337. end)
  338.  
  339. Zone_11.Name = "Zone"
  340. Zone_11.Parent = TP
  341. Zone_11.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  342. Zone_11.BorderColor3 = Color3.fromRGB(25, 25, 25)
  343. Zone_11.BorderSizePixel = 0
  344. Zone_11.Position = UDim2.new(0.11242722, 0, 0.399999976, 0)
  345. Zone_11.Size = UDim2.new(0, 81, 0, 17)
  346. Zone_11.Font = Enum.Font.SourceSans
  347. Zone_11.Text = "Prosperous island"
  348. Zone_11.TextColor3 = Color3.fromRGB(255, 255, 255)
  349. Zone_11.TextSize = 10.000
  350. Zone_11.MouseButton1Down:connect(function()
  351. for i = 1,45 do
  352. wait(.08)
  353. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-204, 10003, 520)
  354. end
  355. end)
  356.  
  357. AllIslands.Name = "All Islands"
  358. AllIslands.Parent = Main
  359. AllIslands.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  360. AllIslands.BorderColor3 = Color3.fromRGB(25, 25, 25)
  361. AllIslands.BorderSizePixel = 0
  362. AllIslands.Position = UDim2.new(0.37378642, 0, 0.400000006, 0)
  363. AllIslands.Size = UDim2.new(0, 104, 0, 28)
  364. AllIslands.Font = Enum.Font.SourceSans
  365. AllIslands.Text = "All Islands"
  366. AllIslands.TextColor3 = Color3.fromRGB(255, 255, 255)
  367. AllIslands.TextSize = 14.000
  368. AllIslands.MouseButton1Down:connect(function()
  369. --fortune
  370. for i = 1,45 do
  371. wait(.08)
  372. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-222, 1064, 594)
  373. end
  374. --lava lake
  375. for i = 1,45 do
  376. wait(.08)
  377. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-218, 1887, 567)
  378. end
  379. --Magma pools
  380. for i = 1,45 do
  381. wait(.08)
  382. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-184, 4318, 452)
  383. end
  384. --Prosperous
  385. for i = 1,45 do
  386. wait(.08)
  387. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-204, 10003, 520)
  388. end
  389. --Interstellar
  390. for i = 1,45 do
  391. wait(.08)
  392. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-301, 15715, 400)
  393. end
  394. --void
  395. for i = 1,45 do
  396. wait(.08)
  397. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-438, 22263, 182)
  398. end
  399. --planetoid
  400. for i = 1,45 do
  401. wait(.08)
  402. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-470, 29742, -28)
  403. end
  404. --Celestial
  405. for i = 1,45 do
  406. wait(.08)
  407. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-397, 37066, 87)
  408. end
  409. --Nightmare
  410. for i = 1,45 do
  411. wait(.08)
  412. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-435, 48582, 9)
  413. end
  414. --Spacebound
  415. for i = 1,45 do
  416. wait(.08)
  417. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-379, 62940, -114)
  418. end
  419. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement