View difference between Paste ID: 3J0Zy7AU and GVwgPYTJ
SHOW: | | - or go back to the newest paste.
1
plr = game.Players.LocalPlayer
2
3
plr.Character.Parent = workspace
4
		plr.Character.Archivable = false
5
		plr.Character:FindFirstChildOfClass("ForceField"):Remove()
6
		for y,t in pairs(plr.Character:GetChildren()) do
7
			if t:IsA("Part") and t.Name ~= "HumanoidRootPart" then
8
				t.Transparency = 0
9
				if t.Name == "Head" and t:FindFirstChild("face") then
10
					t.face.Transparency = 0
11
				end
12
			elseif t:IsA("Accessory") and t:FindFirstChild("Handle") then
13
				t.Handle.Transparency = 0
14
			end
15
		end