RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a script that unchares the hole map and put a script that makes other poeple see it"
-- server script local map = game.Workspace.Map local function onPlayerAdded(player) local character = player.Character if character then for _, v in pairs(map:GetDescendants()) do if v:IsA("BasePart") then v.Transparency = 0 end end end end game.Players.PlayerAdded:Connect(onPlayerAdded)