I am wondering how people make their decals move like a gif, does anyone know how that works?
you can use spritesheets!
quick brief on how you can start by using it
look up a gif you want to be put on roblox
then go to this website: click here
that will automatically turn your gif into a spritesheet!
then make a decal with the spritesheet
i recommend looking up how to use them, but from there you should be good!
comment if you need more assistants
if this helped, make sure to check that i solved your question!
make a part with material forcefield, after it make specialmesh and make it File if u want script then get this:
1 | local part = Instance.new( "Part" ,game.Workspace) |
2 | local mesh = Instance.new( "SpecialMesh" ,part) |
3 | mesh.MeshType = Enum.MeshType.ForceField |
4 | mesh.TextureId = "" -- put in "" the texture id |