zachw9436

Untitled

Apr 15th, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. while true do
  2. a = Instance.new("Part", workspace)
  3. b = Instance.new("Part", workspace)
  4. a.Position = Vector3.new(math.random(200), math.random(200), math.random(200))
  5. b.Position = Vector3.new(math.random(200), math.random(200), math.random(200))
  6. dog = Instance.new("SpecialMesh", b)
  7. dog.MeshId = "http://www.roblox.com/asset/?id=68340830"
  8. dog.TextureId = "http://www.roblox.com/asset/?id=68331520"
  9. cat = Instance.new("SpecialMesh", a)
  10. cat.MeshId = "http://www.roblox.com/asset/?id=180289755"
  11. cat.TextureId = ""
  12. wait(0.5)
  13. d = Instance.new("Sound", a)
  14. d.SoundId = "http://www.roblox.com/asset/?id=138078642"
  15. d.Volume = 10
  16. d.Looped = false
  17. d:Play()
  18. f = Instance.new("Sound", b)
  19. f.SoundId = "http://www.roblox.com/asset/?id=132514715"
  20. f.Volume = 10
  21. f.Looped = false
  22. f:Play()
  23. end
Add Comment
Please, Sign In to add comment