I couldn’t actually find anything about this online but I’m pretty sure I’ve seen it in tutorials before. Can you do something like this:
local part = workspace.Part1 or workspace.Part2
Or something like this:
local part = workspace:FindFirstChild("Part1") or workspace:FindFirstChild("Part2")
Where if the first part doesn’t exist, it will assign the variable to the second part instead? Do both of the examples work? Is there a better way to do it?