View difference between Paste ID: R02F2AS7 and zWqfMQZM
SHOW: | | - or go back to the newest paste.
1
print("HEAVY IS LOADING..")
2
wait(0.5)
3
local Plr = game.Players.LocalPlayer
4
local PChar = Plr.Character
5
local Head = PChar:FindFirstChild("Head")
6
local Mouth = Instance.new("Decal", PChar.Head)
7
local Eyes = Instance.new("Decal", PChar.Head)
8
local VoiceS = Instance.new("Sound", PChar.Head)
9
local SID = {"186913641", "166552695", "344521940"}
10
VoiceS.Name = "Voice"
11
Eyes.Texture = "http://www.roblox.com/asset/?id=176207326"
12
13
if Head == nil then
14
	print("Head not found! Finding Fake Heads..")
15
	if PChar:FindFirstChild("fakeHead") == nil then
16
		error("Heads not found!")
17
		return
18
	end
19
	print("Fake Heads found! Putting into..")
20
	Mouth.Parent = PChar:FindFirstChild("fakeHead")
21
	VoiceS.Parent = PChar:FindFirstChild("fakeHead")
22
end
23
24
if Head:FindFirstChild("face") == nil then
25
	print("Face not found -_-")
26
else
27
	Head:FindFirstChild("face"):Destroy()
28
end
29
30
print("HEAVY IS READY!")
31
VoiceS.SoundId = "rbxassetid://"..SID[math.random(1, #SID)]
32
VoiceS:Play()
33
VoiceS.Looped = true
34
while true do
35
	wait()
36
	if VoiceS.PlaybackLoudness > 100 then
37
		Mouth.Texture = "http://www.roblox.com/asset/?id=176217393"
38
	else
39
		Mouth.Texture = "http://www.roblox.com/asset/?id=176217905"
40
41
     	if VoiceS.PlaybackLoudness > 200 then
42
		Mouth.Texture = "http://www.roblox.com/asset/?id=176217393"
43
	else
44
		Mouth.Texture = "http://www.roblox.com/asset/?id=1038043632"
45
	end
46
end
47
end