trying to replace AVELO-FLAVOR with the flavor name
local SetFlavor = "Strawberry" -- for context, not actual code
local Output = Item.Output -- "AVELO-FLAVOR w/ Ice"
local NewName = Output:gsub("AVELO-FLAVOR", SetFlavor)
ObjectTouched.Parent.Name = NewName
local SetFlavor = "Strawberry" -- for context, not actual code
local Output = Item.Output -- "AVELO-FLAVOR w/ Ice"
local NewName = string.gsub(Output, "AVELO-FLAVOR", SetFlavor)
ObjectTouched.Parent.Name = NewName