View difference between Paste ID: GDJcnWj8 and E2riUqLm
SHOW: | | - or go back to the newest paste.
1
local AllAnimeChar = {"http://www.roblox.com/asset/?id=281575620", "http://www.roblox.com/asset/?id=266382173", "http://www.roblox.com/asset/?id=326525485"}
2
local Plr = game.Players.LocalPlayer
3
local PChar = Plr.Character
4
wait(0.5)
5
for i,v in pairs (PChar:GetChildren()) do
6
	wait()
7
	if v.ClassName == "Part" then
8
		v.Transparency = 10
9
		v.CanCollide = false
10
	end
11
	if v.ClassName == "Hat" then
12
		v:Destroy()
13
	end
14
end
15
local Head = PChar:FindFirstChild("Head")
16
local Face = Head:FindFirstChild("face")
17
Face:Destroy()
18
local CurrentAnimeChar = AllAnimeChar[math.random(1, 3)]
19
local PartDChar = Instance.new("Part", PChar)
20
PartDChar.Transparency = 10
21
PartDChar.Size = Vector3.new(8.21, 11.77, 0.2)
22
local DecalDChar = Instance.new("Decal", PartDChar)
23
DecalDChar.Texture = CurrentAnimeChar
24
DecalDChar.Face = "Front"
25
local DecalCloneDChar = DecalDChar:Clone()
26
DecalCloneDChar.Parent = PartDChar
27
DecalDChar.Texture = CurrentAnimeChar
28
DecalDChar.Face = "Back"
29
local WeldDChar = Instance.new("Weld", PartDChar)
30
WeldDChar.Part0 = PartDChar
31
WeldDChar.Part1 = PChar:FindFirstChild("Torso")
32
print("Anime mothafuckar!")