F3XTeam / RBX-Building-Tools

A set of powerful, easy building tools for ROBLOX.
41 stars 24 forks source link

Made SpawnLocation and Seats appearence same as in studio. #134

Open ccuser44 opened 3 years ago

ccuser44 commented 3 years ago

So normally in studio when you create a spawnlocation it has a square shape and has a the spawn decal on top of it. Also Seats and VehicleSeats have their brickcolor set to black when created in studio.

Also for me at least in F3X BTools when spawning these parts you easily confuse them with regular parts.

Sparkypen7 commented 3 years ago

Please do not pass the 2nd argument in Instance.new with the parent. Use .Parent later on.

local SpawnDecal = Instance.new('Decal')
SpawnDecal.Face = Enum.NormalId.Top
SpawnDecal.Texture = 'rbxasset://textures/SpawnLocation.png'
SpawnDecal.Parent = NewPart

I also do not see the purpose of this change -- users can just add a decal on top of the SpawnLocation if they really need it.

ccuser44 commented 3 years ago

Done. However going to keep the decal because studio has the same behavior and most users are used to Spawns having the decal. And it makes the spawn more easily distinguishable as a spawn.

ccuser44 commented 1 month ago

Any update on this?