The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Cooking Simulator script pastebin roblox
By LINK GAME on 2024-09-21 08:00 am | Syntax: LUA | Views: 9



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local library = loadstring(game:HttpGet(('https://pastebin.com/raw/FsJak6AT')))()
  2. local w = library:CreateWindow("Cooking Simulator")
  3. local b = w:CreateFolder("AutoFarm")
  4. local f = w:CreateFolder("AutoBuy")
  5. local e = w:CreateFolder("Mix")
  6. local u = w:CreateFolder("Credits")
  7. --Toggle
  8. b:Toggle("AutoCollectFood",function(bool)
  9.     shared.toggle = bool
  10.     AutoCollectFood = bool
  11. end)
  12.  
  13. b:Toggle("AutoPutInPot",function(bool)
  14.     shared.toggle = bool
  15.     AutoPutInPot = bool
  16. end)
  17.  
  18. b:Toggle("AutoSell",function(bool)
  19.     shared.toggle = bool
  20.     AutoSell = bool
  21. end)
  22.  
  23. f:Toggle("Rebirth",function(bool)
  24.     shared.toggle = bool
  25.     Rebirth = bool
  26. end)
  27.  
  28. e:Toggle("InfMoney",function(bool)
  29.     shared.toggle = bool
  30.     InfMoney = bool
  31. end)
  32.  
  33. e:Toggle("AntiAfk",function(bool)
  34.     shared.toggle = bool
  35.     AntiAfk = bool
  36. end)
  37. --Credits
  38. u:Button("maxgat5#8395",function()
  39.     setclipboard("maxgat5#8395")
  40. end)
  41.  
  42. u:Button("Discrod Server",function()
  43.     setclipboard("https://discord.gg/K4txdRSVfq")
  44. end)
  45.  
  46. while wait() do
  47.     if InfMoney == true then
  48.         game:GetService("ReplicatedStorage").RemoteEvent.AddItemsFromClient:FireServer({["Coin"] = 9999999999999999*99999999,["Pot_1"] = 1},"shop_msg")
  49.     end
  50.    
  51.     if Rebirth == true then
  52.         game:GetService("ReplicatedStorage").RemoteEvent.BeginRebirth:FireServer(game:GetService("Players").LocalPlayer)
  53.     end
  54.  
  55.     if AutoPutInPot == true then
  56.         for i,v in pairs(game:GetService("Workspace").Store:GetDescendants()) do
  57.             if v.Name == "PotId" then
  58.                 if AutoPutInPot == true then
  59.                     game:GetService("ReplicatedStorage").RemoteEvent.potStateChange:FireServer(v.Value)
  60.                 end
  61.             end
  62.         end
  63.     end
  64.    
  65.     if AutoCollectFood == true then
  66.         for i,v in pairs(game:GetService("Workspace").ConveyorFoods:GetChildren()) do
  67.             if AutoCollectFood == true then
  68.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.RootPart.CFrame.Position + Vector3.new(0,0,0))
  69.                 wait(.1)
  70.             end
  71.         end
  72.     end
  73.        
  74.     if AutoSell == true then
  75.         game:GetService("ReplicatedStorage").RemoteEvent.Eat:FireServer()
  76.     end
  77.    
  78.     if AntiAfk == true then
  79.         local bb=game:service'VirtualUser'
  80.         bb:CaptureController()
  81.         bb:ClickButton2(Vector2.new())
  82.     end
  83. end