How to make Item Roll Effect

Within Build a Base and Steal, there is an effect when the user opens an egg, it transitions from a placeholder block to a random item. How do I achieve the effect of the items starting small then expending outwards how do I do that?

local numval = instance.new("numbervalue)
numval.value = .5

tweenservice;Create(numval, tweeninfo.new(.1), {value = 1})

numval:getpropertysignalchanged(โ€œvalueโ€):connect(function(val)
model:ScaleTo(numval)
end

something like that

1 Like