View difference between Paste ID: V64PvbcC and CsSypYBV
SHOW: | | - or go back to the newest paste.
1
--Tony V3rm--
2
--Based off the script from brocc--
3
--Enjoy and leave a vouch?--
4-
local pchar = game.Players.LocalPlayer.EnderWolfMage -- Can change player here --
4+
local pchar = game.Players.LocalPlayer.firebudgy -- Can change player here --
5
6
for i,v in pairs(pchar.Torso:GetChildren()) do
7
   if v.ClassName == 'Decal' then
8
        v:Destroy()
9
   end
10
end
11
for i,v in pairs(pchar:GetChildren()) do
12
   if v.ClassName == 'Hat' then
13
       v:Destroy()
14
   end
15
end
16
17
for i,v in pairs(pchar.Head:GetChildren()) do
18
   if v.ClassName == 'Decal' then
19
       v:Destroy()
20
   end
21
end
22
23
local duck = Instance.new('SpecialMesh', pchar.Torso)
24
duck.MeshType = 'FileMesh'
25
duck.MeshId = 'http://www.roblox.com/asset/?id=430266153'
26
duck.TextureId = 'http://www.roblox.com/asset/?id=430266188'
27
duck.Scale = Vector3.new(5, 5, 5)
28
pchar.Head.Transparency = 1
29
pchar['Left Arm'].Transparency = 1
30
pchar['Right Arm'].Transparency = 1
31
pchar['Left Leg'].Transparency = 1
32
pchar['Right Leg'].Transparency = 1