why wont this move?
game.Workspace.DoorParts.MainDoor.Cframe=1,30,0
hope you guys can figure this out
Thats because you cannot directly assign the CFrame of a part to a bunch of numbers. You have to make the cframe equal another cframe. (also, the f in CFrame is capitalized.) To make this work, you would do:
game.Workspace.DoorParts.MainDoor.CFrame = CFrame.new(1, 30, 0)