How do you create a seamless rank door?

Here, fully made script:

Insert a local script, inside Starter pack > Starter player scripts:

local player = game.Players.LocalPlayer

if player:GetRankInGroup(1234) >= 321
for _,door in pairs(workspace[“location of the folder, or part easier to create a folder then insert the part throguh there.”]:GetChildren()) do
door.CanCollide = false
end
end

2 Likes