RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Invisible wall"
-- server script (ServerScriptService) local part = Instance.new("Part") part.Parent = game.Workspace part.Position = Vector3.new(0, 5, 0) part.Size = Vector3.new(20, 10, 1) part.Transparency = 1 part.Anchored = true part.CanCollide = true part.BrickColor = BrickColor.new("Institutional white") -- This color won't be visible due to transparency, but you can change it if needed -- If you want to make the wall visible for a short period, you can uncomment the following lines --[[ while true do part.Transparency = 0.5 wait(5) part.Transparency = 1 wait(5) end --]]