-- Define the game objects local player = game.Players.LocalPlayer local foodPlace = game.Workspace.FoodPlace local tacos = foodPlace.Tacos local fakeWatch = foodPlace.FakeWatch local smuggler = game.Workspace.Smuggler local machine = game.Workspace.Machine local guy = game.Workspace.Guy -- Function to pick up items local function pickUpItem(item) item.Transparency = 0 item.CanCollide = false item.Parent = player.Backpack end -- Function to give item to guy local function giveItem(item) item.Transparency = 0 item.CanCollide = false item.Parent = guy.Backpack end -- Function to put item in machine local function putItemInMachine(item) item.Transparency = 0 item.CanCollide = false item.Parent = machine end -- Main loop while true do -- Pick up tacos and fake watch pickUpItem(tacos) pickUpItem(fakeWatch) -- Teleport items to smuggler tacos.CFrame = smuggler.CFrame fakeWatch.CFrame = smuggler.CFrame -- Give items to guy giveItem(tacos) giveItem(fakeWatch) -- Put items in machine putItemInMachine(tacos) putItemInMachine(fakeWatch) -- Wait for a bit wait(5) end