Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to prevent the sliding door from rotation?

Asked by
Yuuwa0519 197
6 years ago
Edited 6 years ago

I have made a sliding door for my game, but when it opens it somehow changes the orientation of door from 0,90,0 to 0,0,0 instead of just sliding. I am still a starter so i have no idea what to do. code:

01local TweenService = game:GetService("TweenService")
02local door1 = script.Parent:WaitForChild("Door1")
03local door2 = script.Parent:WaitforChild("Door2")
04local tweeningInformation = TweenInfo.new(1.2,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,0,false,0)
05local door1Open = {Cframe = Cframe.new(Postion)}
06local door2Open = {Cframe = Cframe.new(Position)}
07local door1Close = {Cframe = Cframe.new(Position)}
08local door2Close = {Cframe = Cframe.new(position)}
09local tween1open = TweenService:Create(door1,tweeningInformation,door1Open)
10local tween1close = TweenService:Create(door1,tweeningInformation,door1Close)
11local tween2open = TweenService:Create(door2,tweeningInformation,door2Open)
12local tween2close = Tweenservice:Create(door2,tweeningInformation,door2Close)
13script.Parent.Detector1.Touched:Connect(function(hit)
14tween1open:Play()
15tween2open:Play()
16wait(3)
17tween1close:Play()
18tween2close:Play()
19end)
20script.Parent.Detector2.Touched:Connect(function(hit)
21tween1open:Play()
22tween2open:Play()
23wait(3)
24tween1close:Play()
25tween2close:Play()
26end)

2 answers

Log in to vote
0
Answered by 6 years ago

A “cframe.new(Vector3…)” just have location set.
And Part.CFrame = CFrame.new() just overwrite the cframe
You just need to multiplicate the CFrame with
CFrame.fromEulerAnglesXYZ(math.rad(part.Rotation.X), math.rad(part.Rotation.Y), math.rad(part.Rotation.Z))

0
Thanks for explanation. However, i think i still dont understand it so if it`s not inconvinient, will you show me the where i should put that bit of code? Thank you :D Yuuwa0519 197 — 6y
Ad
Log in to vote
0
Answered by
xg1y 41
6 years ago
Edited 6 years ago

Due to the base plate and orientations of parts, it could be that your part is defaulted to an orientation (Eg; 0,90,0) and due to you changing the cframe, it resets the orientation to (0,0,0)

What you’d want to do is to set the orientation and the cframe, to the part’s orientation and the changing cframe.

Answer this question