(newbie to scripting)
i made a deadmau5 cube and i made the panels on it move, is there any way to make the selectionbox transparency to 1, and to 0 whenever it moves?
Maybe you can use something like this? :
script.Parent.Changed:Connect(function(property)
if property == 'Position' then --Checks if changed property is Position or not
--Code here
end
end)