diff --git a/SyncAPI.lua b/SyncAPI.lua index 227a43fb..6d48676c 100644 --- a/SyncAPI.lua +++ b/SyncAPI.lua @@ -1845,14 +1845,20 @@ function CreatePart(PartType) elseif PartType == 'Seat' then NewPart = Instance.new('Seat') NewPart.Size = Vector3.new(4, 1, 2) + NewPart.BrickColor = BrickColor.Black() elseif PartType == 'Vehicle Seat' then NewPart = Instance.new('VehicleSeat') NewPart.Size = Vector3.new(4, 1, 2) + NewPart.BrickColor = BrickColor.Black() elseif PartType == 'Spawn' then NewPart = Instance.new('SpawnLocation') - NewPart.Size = Vector3.new(4, 1, 2) + NewPart.Size = Vector3.new(6, 1, 6) + local SpawnDecal = Instance.new('Decal') + SpawnDecal.Face = Enum.NormalId.Top + SpawnDecal.Texture = 'rbxasset://textures/SpawnLocation.png' + SpawnDecal.Parent = NewPart end -- Make part surfaces smooth @@ -1931,4 +1937,4 @@ return { end; -}; \ No newline at end of file +};