-- Specify the name of the GameObject with the effect attached to store the effect. -- Store the effect attached to the GameObject named "Effect" in a variable "effect" local effect = vci.assets.GetEffekseerEmitter("Effect") -- Print the effect name print(effect.EffectName) function onUse() -- Play the stored effect once effect.PlayOneShot() end