local player = game:GetService("Players").LocalPlayer local character = player.Character if character and character:FindFirstChild("Drink") and character.Drink:FindFirstChild("Drink") and character.Drink.Drink:FindFirstChild("Drink") then local drinkEvent = character.Drink.Drink.Drink while true do drinkEvent:FireServer() wait(0) -- Adjust the wait time as needed end else print("Drink event not found in player's character.") end