Advertisement
Guest User

Untitled

a guest
Feb 20th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. while wait() do
  2. part = Instance.new("Part",workspace)
  3. part.Name = "Toad"
  4. mesh = Instance.new("SpecialMesh",part)
  5. part.CanCollide = false
  6. part.Size = Vector3.new(30,30,30)
  7. part.Position = Vector3.new(math.random(-3000,1000),math.random(1,3000),math.random(-3000,3000))
  8. mesh.MeshType = "FileMesh"
  9. mesh.MeshId = "rbxassetid://1301935915"
  10. mesh.TextureId = "rbxassetid://1300137893"
  11. local trail = Instance.new("Trail", toad)
  12. trail.Attachment0 = a0
  13. trail.Attachment1 = a1
  14. trail.FaceCamera = true
  15. trail.Lifetime = 1
  16. trail.Transparency = NumberSequence.new(0,0.5,0,1,1,0)
  17. trail.Texture = "http://www.roblox.com/asset/?id=102124677"
  18. --trail.Color = Color3.new(math.random(255)/255, math.random(255)/255, math.random(255)/255)
  19. wait(0.1)
  20. end
  21. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement