Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How do you change the size of a mesh when using a mesh dropper in a tycoon? [closed]

Asked by 7 years ago

Below is the code im using but when i change size of drops it does nothing

01wait(2)
02workspace:WaitForChild("PartStorage")
03 
04meshDrop = 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 
12--------------------
13 
14 
15deb = true
View all 39 lines...
0
Instead of part.Size, try adding m.Scale below the Texture id part. Keep using Vector3's though Nikkulaos 229 — 7y

Closed as Not Constructive by hiimgoodpack and Goulstem

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?

1 answer

Log in to vote
1
Answered by 7 years ago

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.

Ad