How would one make a door that work's like Mad Murderer's vip door if you don't have the pass the door show's up on there side yet those who have access wont see the brick?
This can be done using local parts, as said by DragonODeath in the comments. To create local parts simply replicate or create a new instance in the player's camera. This needs to be done is a local script using this code:
local passId = 1234567890 -- Change this to the Gamepass ID local passServ= game:GetService("GamePassService") if not passServ:PlayerHasPass(game.Players.LocalPlayer,passId) then local cam = game.Workspace.CurrentCamera --Instance.new("Part",cam) --game.ReplicatedStorage.Object:Clone().Parent = cam end
If this helps you or works for you please vote this up and accept this as your answer!