RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"can walls fly"
-- not sure how this relates to roblox or lua but here’s a script on making a wall go up :) local part = script.Parent local wall = game.Workspace.Wall local canOpen = true local function lift(otherPart) local partParent = otherPart.Parent local humanoid = partParent:FindFirstChildWhichIsA('Humanoid') if humanoid and canOpen then canOpen = false wall.Position = wall.Position Vector3.new(0,12,0) wait(3) wall.Position = wall.Position Vector3.new(0,-12,0) canOpen = true end end part.Touched:Connect(lift)