View difference between Paste ID: 3hj5te2C and nSM6JfJc
SHOW: | | - or go back to the newest paste.
1-
--Shit ass script made by failedmite57926
1+
--gaming
2
3
local LocalPlayer = game:GetService("Players").LocalPlayer
4
local Character = LocalPlayer.Character
5
local Humanoid = Character:FindFirstChildOfClass("Humanoid")
6
7
function rm()
8
	for i,v in pairs(Character:GetDescendants()) do
9
		if v:IsA("BasePart") then
10
			if v.Name == "Handle" or v.Name == "Head" then
11
				if Character.Head:FindFirstChild("OriginalSize") then
12
					Character.Head.OriginalSize:Destroy()
13
				end
14
			else
15
				for i,cav in pairs(v:GetDescendants()) do
16
					if cav:IsA("Attachment") then
17
						if cav:FindFirstChild("OriginalPosition") then
18
							cav.OriginalPosition:Destroy()  
19
						end
20
					end
21
				end
22
				v:FindFirstChild("OriginalSize"):Destroy()
23
				if v:FindFirstChild("AvatarPartScaleType") then
24
					v:FindFirstChild("AvatarPartScaleType"):Destroy()
25
				end
26
			end
27
		end
28
	end
29
end
30
31
rm()
32
wait(0.5)
33
Humanoid:FindFirstChild("BodyProportionScale"):Destroy()
34
wait(1)
35
36
rm()
37
wait(0.5)
38
Humanoid:FindFirstChild("BodyHeightScale"):Destroy()
39
wait(1)
40
41
rm()
42
wait(0.5)
43
Humanoid:FindFirstChild("BodyWidthScale"):Destroy()
44
wait(1)
45
46
rm()
47
wait(0.5)
48
Humanoid:FindFirstChild("BodyDepthScale"):Destroy()
49
wait(1)
50
51
rm()
52
wait(0.5)
53
Humanoid:FindFirstChild("HeadScale"):Destroy()
54-
wait(1)
54+
55