|
| 21 Jan 2013 04:05 PM |
It's a gear.
Not the point.
Anyway - So, basically, when you use it, it turns you into a model [ in the inventory of ROBLOX ] which looks like a larger character.
Is there any way that I could safely turn someone into such a model without a tool?
And by ' safely ', I mean without killing them or messing up the game. |
|
|
| Report Abuse |
|
m27frogy
|
  |
| Joined: 26 Mar 2009 |
| Total Posts: 4427 |
|
|
| 21 Jan 2013 04:25 PM |
Yes, there are ways of doing it, but they usually involve a lot of work on your end. It's basically done by serializing the model, which a few plugins, like Animinus or mine, can do. Anaminus' will work with models, but mine only with GUIs. This is something of what it would look like:
local model = Instance.new("Model",player.Character) local part = Instance.new("Part") part.Size = Vector3.new(4,3,4) part.FormFactor = 0
Etc for a hundred more lines. Basically not worth it without a plugin handy. |
|
|
| Report Abuse |
|
| |