0% found this document useful (0 votes)
64 views1 page

Duck

The document creates a duck mesh that is attached to the local player's character torso and sets its properties. It then makes the character's head and limbs transparent so that only the duck mesh is visible, transforming the player's character into a duck.

Uploaded by

Decri Kivon
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
64 views1 page

Duck

The document creates a duck mesh that is attached to the local player's character torso and sets its properties. It then makes the character's head and limbs transparent so that only the duck mesh is visible, transforming the player's character into a duck.

Uploaded by

Decri Kivon
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

local pchar = game.Players.LocalPlayer.

Character
local duck = Instance.new("SpecialMesh", pchar.Torso)
duck.MeshType = "FileMesh"
duck.MeshId = "http://www.roblox.com/asset/?id=9419831"
duck.TextureId = "http://www.roblox.com/asset/?id=9419827"
duck.Scale = Vector3.new(5, 5, 5)
pchar.Head.Transparency = 1
pchar["Left Arm"].Transparency = 1
pchar["Right Arm"].Transparency = 1
pchar["Left Leg"].Transparency = 1
pchar["Right Leg"].Transparency = 1

You might also like