Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions SyncAPI.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -1931,4 +1937,4 @@ return {

end;

};
};