The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Cooking in the Rain 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 in the Rain")
  3. local b = w:CreateFolder("AutoFarm")
  4. local e = w:CreateFolder("Mix")
  5. local u = w:CreateFolder("Credits")
  6. local Cook;
  7. local CookFast;
  8. --Toggle
  9. b:Toggle("Cook",function(bool)
  10.     shared.toggle = bool
  11.     TCook = bool
  12. end)
  13.  
  14. b:Dropdown("Cook",{"Bread","Omelette","Cookies"},true,function(mob)
  15.     Cook = mob
  16. end)
  17.  
  18. b:Toggle("CookFast",function(bool)
  19.     shared.toggle = bool
  20.     TCookFast = bool
  21. end)
  22.  
  23. b:Dropdown("CookFast",{"BreadFast","OmeletteFast","CookiesFast"},true,function(mob)
  24.     CookFast = mob
  25. end)
  26.  
  27. b:Toggle("GiveFoodToSmurfs",function(bool)
  28.     shared.toggle = bool
  29.     GiveFoodToSmurfs = bool
  30. end)
  31.  
  32. b:Toggle("AutoCollectDrop",function(bool)
  33.     shared.toggle = bool
  34.     AutoCollectDrop = bool
  35. end)
  36.  
  37. b:Toggle("AutoSellFood",function(bool)
  38.     shared.toggle = bool
  39.     AutoSellFood = bool
  40. end)
  41.  
  42. e:Toggle("AntiAfk",function(bool)
  43.     shared.toggle = bool
  44.     AntiAfk = bool
  45. end)
  46.  
  47. e:Button("Inf Backpack",function()
  48.     for i=1,9999 do
  49.         game:GetService("ReplicatedStorage").Events.EatInventoryEvent:FireServer({"Strawberry"})
  50.     end
  51. end)
  52.  
  53. --Credits
  54. u:Button("maxgat5#8395",function()
  55.     setclipboard("maxgat5#8395")
  56. end)
  57.  
  58. u:Button("Discrod Server",function()
  59.     setclipboard("https://discord.gg/K4txdRSVfq")
  60. end)
  61.  
  62. game:GetService('RunService').Stepped:connect(function()
  63.     if TCookFast == true then
  64.         if CookFast == "BreadFast" then
  65.             game:GetService("ReplicatedStorage").Cook:InvokeServer("Bread",workspace.Base.Kitchen.KitchenApplianceRow.Oven)
  66.         end
  67.        
  68.         if CookFast == "OmeletteFast" then
  69.             game:GetService("ReplicatedStorage").Cook:InvokeServer("Omelette",workspace.Base.Kitchen.KitchenApplianceRow.Stove)
  70.         end
  71.        
  72.         if CookFast == "CookiesFast" then
  73.             game:GetService("ReplicatedStorage").Cook:InvokeServer("Cookies",workspace.Base.Kitchen.KitchenApplianceRow.Oven)
  74.         end
  75.     end
  76. end)
  77.  
  78. while wait() do
  79.     if TCook == true then
  80.         if Cook == "Cookies" then
  81.             game:GetService("ReplicatedStorage").Cook:InvokeServer("Cookies",workspace.Base.Kitchen.KitchenApplianceRow.Oven)
  82.         end
  83.        
  84.         if Cook == "Omelette" then
  85.             game:GetService("ReplicatedStorage").Cook:InvokeServer("Omelette",workspace.Base.Kitchen.KitchenApplianceRow.Stove)
  86.         end
  87.        
  88.         if Cook == "Bread" then
  89.             game:GetService("ReplicatedStorage").Cook:InvokeServer("Bread",workspace.Base.Kitchen.KitchenApplianceRow.Oven)
  90.         end
  91.     end
  92.    
  93.     if GiveFoodToSmurfs == true then
  94.         for i,v in pairs(game:GetService("Workspace").Base.FoodStallSites:GetDescendants()) do
  95.             if v.Name == "FrontSign" and v.ClassName == "Part" then
  96.                 if v.SurfaceGui.TextLabel.Text == game.Players.LocalPlayer.Name.."'s Stall" then
  97.                     v.Parent.Parent.ServeStepper.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0,0,100)
  98.                     wait(.1)
  99.                     v.Parent.Parent.ServeStepper.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0,0,0)
  100.                     wait(2.1)
  101.                 end
  102.             end
  103.         end
  104.     end
  105.    
  106.     if AutoCollectDrop == true then
  107.         for i,v in pairs(game:GetService("Workspace").Base.IngredientDrops:GetDescendants()) do
  108.             if v.ClassName == "Part" or v.ClassName == "MeshPart" then
  109.                 v.CanCollide = false
  110.                 v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0,0,0)
  111.             end
  112.         end
  113.     end
  114.    
  115.     if AutoSellFood == true then
  116.         for i,v in pairs(game:GetService("Workspace").Base.Merchant.MerchantSignboards:GetChildren()) do
  117.             for i,v1 in pairs(v:GetChildren()) do
  118.                 if v1.ClassName == "Part" or v1.ClassName == "MeshPart" then
  119.                     v1.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0,0,100)
  120.                     wait(.1)
  121.                     v1.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0,0,0)
  122.                     wait(1)
  123.                 end
  124.             end
  125.         end
  126.     end
  127.    
  128.     if AntiAfk == true then
  129.         local bb=game:service'VirtualUser'
  130.         bb:CaptureController()
  131.         bb:ClickButton2(Vector2.new())
  132.     end
  133. end