Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- while true do
- local a = Instance.new("Part", workspace)
- local b = Instance.new("Part", workspace)
- a.Position = Vector3.new(math.random(200), math.random(200), math.random(200))
- b.Position = Vector3.new(math.random(200), math.random(200), math.random(200))
- dog = Instance.new("SpecialMesh", b)
- dog.MeshId = "http://www.roblox.com/asset/?id=68340830"
- dog.TextureId = "http://www.roblox.com/asset/?id=68331520"
- cat = Instance.new("SpecialMesh", a)
- cat.MeshId = "http://www.roblox.com/asset/?id=180289755"
- cat.TextureId = ""
- wait(0.5)
- d = Instance.new("Sound", a)
- d.SoundId = "http://www.roblox.com/asset/?id=138078642"
- d.Volume = 10
- d.Looped = false
- d:Play()
- f = Instance.new("Sound", b)
- f.SoundId = "http://www.roblox.com/asset/?id=132514715"
- f.Volume = 10
- f.Looped = false
- f:Play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement