Alright so basically I need to make a block turned into a hat. How would I use a script to complete that?
Create a new mesh, and then parent it to the part:
1 | Instance.new( "SpecialMesh" , game.Workspace.Part) |
If you wanted to make it simpler by using the :Clone()
function you could do this:
Put a mesh in lighting, or somewhere else, then add a script wherever. Let's say when you hit a part, it will clone a mesh from lighting, and place it in your torso.
1 | script.Parent.Touched:connect( function (hit) |
2 | if hit.Parent:FindFirstChild( "Humanoid" ) then |
3 | if hit.Parent:FindFirstChild( "Torso" ) then |
4 | cloneMesh = game.Lighting.Mesh:Clone() |
5 | cloneMesh.Parent = hit.Parent.Torso |
6 | end |
7 | end |
8 | end ) |
There you go!