Below is the code im using but when i change size of drops it does nothing
01 | wait( 2 ) |
02 | workspace:WaitForChild( "PartStorage" ) |
03 |
04 | meshDrop = true |
05 | -------------------- |
06 | -- Mesh Settings: -- [If you want a mesh drop, set meshDrop to true up on top.] |
07 | -- Look at the mesh properties and change the inside of the quotes below to the appropriate |
08 | -- full link or the rbxasset:// style, doesnt matter which one you see in the mesh you want |
09 |
10 | meshID = "http://www.roblox.com/asset/?id=16190555" |
11 | textureID = "http://www.roblox.com/asset/?id=16285875" |
12 | -------------------- |
13 |
14 |
15 | deb = true |
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?
I am no professional when it comes to scripting, but I believe that meshes do not have a Size
property, instead they have a Scale
property. Try changing Scale
instead of Size
on line 27. Hope this helped.