Hello, I'm trying to make some kind of trapdoor,
The way it works is like this:
When you close it, it kind of slides and grows so that you have the impression it is closing. A little like a garage door but on the ground.
I'm trying to find the exact formula to make it look good.
So far I have :
h1.Size=Vector3.new(h1.Size.X+.482,h1.Size.Y,h1.Size.Z) h1.CFrame=CFrame.new(q1.X-.241,q1.Y,q1.Z+.0241)*CFrame.Angles(math.rad(0),math.rad(15),math.rad(-0))
But that wont work.
h1 being the door part and q1 being its position
Here's some code that should work.
Note - use the Front Surface as the edge of the door that closes, and increment must be greater than one. I used 1.01
Put this in a server script...
New Answer:
001 | function difference(n 1 ,n 2 ) |
002 | return math.abs(n 2 -n 1 ) |
003 | end |
004 |
005 | function invertFace(face) |
006 | if face = = Enum.NormalId.Front then |
007 | return Enum.NormalId.Back |
008 | elseif face = = Enum.NormalId.Back then |
009 | return Enum.NormalId.Front |
010 | elseif face = = Enum.NormalId.Top then |
011 | return Enum.NormalId.Bottom |
012 | elseif face = = Enum.NormalId.Bottom then |
013 | return Enum.NormalId.Top |
014 | elseif face = = Enum.NormalId.Left then |
015 | return Enum.NormalId.Right |