Advertisement
faisalhacksnock

Untitled

Jun 30th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. :ls --I've heard that only you can see it. Oh well.
  2.  
  3. local char = game.Players.LocalPlayer.Character
  4. local cam = Workspace.CurrentCamera
  5. while wait(0.1) do
  6. local snow = Instance.new("Part",cam)
  7. snow.Shape = "Ball"
  8. snow.CanCollide = false
  9. snow.BrickColor = BrickColor.new("Institutional white")
  10. snow.Size = Vector3.new(1,1,1)
  11. snow.CFrame = char.Torso.CFrame + Vector3.new(math.random(-25,25), -5 ,math.random(-25,25))
  12. game:GetService("Debris"):AddItem(snow,5)
  13.  
  14. local float = Instance.new("BodyForce",snow)
  15. float.force = Vector3.new(0,500,0)
  16.  
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement