Legendofawesomeness3

snow

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