fix studio entities having collision in-game

This commit is contained in:
2023-12-27 14:01:22 -05:00
parent 24f0c45c8c
commit d46b4dc844

View File

@@ -11,7 +11,7 @@ local StudioEntities: Entities = {
local function HidePart(Part: BasePart, enabled: boolean)
Part.Transparency = enabled and 1 or .9
Part.CanCollide = enabled
Part.CanCollide = false
Part.CastShadow = false
end