I've always been curious about how to animate parts in roblox, but I never found out anything... Can I have some pointers and tips please? At least how to make something simple like a door! :)
In order to accomplish something like this, we need to use CFrame, and rotating.
Here is a basic cframing script that would move an object 10 times:
part = game.Workspace["'Brick"] for i = 1, 10 do part.CFrame = CFrame.new(part.CFrame.X, part.CFrame.Y + 1, part.CFrame.Z) end
All it will take is practice.