View difference between Paste ID: 95ryns8s and SZJT9z4Y
SHOW: | | - or go back to the newest paste.
1
while true do
2
	wait(.0)
3
	
4
x = Instance.new("Part")
5
x.Parent = game.Workspace
6
x.Name = ("Head")
7
  y = Instance.new("SpecialMesh")
8
  y.Parent = x
9
x.Size = Vector3.new(4,4,4)
10
x.Position = Vector3.new(math.random(-250,250), 36, math.random(-250,250))
11
x.BrickColor = BrickColor.new("Bright yellow")
12
  z = Instance.new("Decal")
13
  z.Parent = x
14
  z.Texture = "http://www.roblox.com/asset/?id=62099719"
15
16
local sound = Instance.new("Sound")
17-
sound.SoundId = "http://www.roblox.com/asset/?id=609158214" --Change the last numbers of the link to the id of your audio.
17+
sound.SoundId = "http://www.roblox.com/asset/?id=604650009" --Change the last numbers of the link to the id of your audio.
18
sound.Parent = script.Parent
19-
sound.Volume = 50
19+
sound.Volume = 500000000
20
sound.Looped=true
21
sound:play()
22
23
 end