Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. while true do
  2. wait(0.5)
  3. for i,v in pairs(game.Players:GetChildren()) do
  4. pcall(function ()
  5. local taco = Instance.new("Part",Workspace)
  6. taco.CanCollide = false
  7. local m = Instance.new("SpecialMesh",taco)
  8. m.MeshId = "http://www.roblox.com/asset/?id=14846869"
  9. m.TextureId = "http://www.roblox.com/asset/?id=14846834"
  10. taco.CFrame = v.Character.Torso.CFrame + Vector3.new(math.random(-50,50),100,math.random(-50,50))
  11. end)
  12. end
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement