ADVERTISEMENTREMOVE ADS
Game icon

Auto buy ingredients

Burger Game 🍔
6 months ago
Script preview thumbnail
Script Preview

Description

Will buy if the amount of something, for example, bread is less than 5. PLS KEEP THIS A SECRET FROM THE DEVELOPERS, ADMINS AND MODERATORS OF THIS GAME!!! - ПОЖАЛУЙСТА ХРАНИТЕ ЭТО В СЕКРЕТЕ ОТ РАЗРАБОТЧИКОВ, АДМИНОВ И МОДЕРАТОРОВ ЭТОЙ ИГРЫ!!!

Features:

  • Auto buy
ADVERTISEMENTREMOVE ADS
23 Lines • 981 Bytes
Raw
local objs = workspace.GameData.Objects
local tell = game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Tell")
while wait(1) do
if objs.Boxbrgr.Amount.Value < 5 or objs.Boxbac.Amount.Value < 5 then
tell:FireServer("Order", "Meat")
elseif objs.Boxltc.Amount.Value < 5 or objs.Boxoni.Amount.Value < 5 or objs.Boxpcl.Amount.Value < 5 or objs.Boxtom.Amount.Value < 5 or objs.Boxchz.Amount.Value < 5 then
tell:FireServer("Order", "Veggies")
elseif objs.Boxbbun.Amount.Value < 5 or objs.Boxtbun.Amount.Value < 5 then
tell:FireServer("Order", "Bread")
elseif objs.Boxfri.Amount.Value < 5 then
tell:FireServer("Order", "Fries")
elseif objs.Boxreal.Amount.Value < 5 or objs.BoxFriCon.Amount.Value < 5 then
tell:FireServer("Order", "Cups")
elseif objs.BoxBag.Amount.Value < 5 or objs.Boxtray.Amount.Value < 5 then
tell:FireServer("Order", "Trays")
end
end
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS