Roblox how to make a sliding door
local doorDistanceToSlide = 5 — moves 5 studs to the rightlocal door = workspace.Door — easiest if the door is a union or meshpart, since tweening models is toughdoorClickDetector.MouseClick:Connect(function() local endCFrame = door.CFrame CFrame.new(doorDistanceToSlide, 0, 0) game:GetService(“Tween...