So, i'm currently making a theatre in Roblox, with moving sets, and Curtains, but i can't seem to get the script to work? So, i did some research and was told to use TweenService, so i tried a few different scripts to try to get my curtains to work, and it isn't working. Could it possibly be a naming error? Heres the script i used: open = false
door1 = script.Parent.Parent.Parent.Door1
door2 = script.Parent.Parent.Parent.Door2
local TweenService = game:GetService("TweenService")
local part = script.Parent
local tweenInfo = TweenInfo.new(2,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,0,false,0)
local Door1Open = {CFrame = door1.CFrame + door1.CFrame.lookVector * 4}
local Door2Open = {CFrame = door2.CFrame + door2.CFrame.lookVector * 4}
local Door1Close = {CFrame = door1.CFrame }
local Door2Close = {CFrame = door2.CFrame }
local Open1 = TweenService:Create(door1,tweenInfo,Door1Open)
local Open2 = TweenService:Create(door2,tweenInfo,Door2Open)
local Close1 = TweenService:Create(door1,tweenInfo,Door1Close)
local Close2 = TweenService:Create(door2,tweenInfo,Door2Close)
script.Parent.MouseClick:connect(function()
01 | if open = = false then |
02 |
03 | Open 1 :Play() |
04 |
05 | Open 2 :Play() |
06 |
07 | wait( 2 ) |
08 |
09 | open = true |
10 |
11 | else |
12 |
13 | Close 1 :Play() |
14 |
15 | Close 2 :Play() |
end)
You put the tween info table thing as brackets and not curly brackets
1 | local tweenInfo = TweenInfo.new { 2 ,Enum.EasingStyle.Linear,Enum.EasingDirection.Out, 0 , false , 0 } |