Advertisement
Chxp

Untitled

Jul 29th, 2015
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local player = game.Players.LocalPlayer
  2. local character = player.Character or player.CharacterAdded:wait()
  3.  
  4. character.Humanoid.WalkSpeed = 100
  5.  
  6. local colors = {
  7.     Color3.new(250, 250, 250),
  8.     Color3.new(250, 250, 250),
  9.     Color3.new(250, 250, 250),
  10.     Color3.new(250, 250, 250),
  11.     Color3.new(250, 250, 250),
  12.     Color3.new(250, 250, 250),
  13.     Color3.new(250, 250, 250)
  14. }
  15.  
  16. for i,v in pairs(colors) do
  17.     local particle = Instance.new("ParticleEmitter", character.Torso)
  18.     particle.Name = "Sparkely"
  19.     particle.Size = NumberSequence.new(0.9, 0.9)
  20.     particle.LightEmission = -10
  21.     particle.Texture = "http://www.roblox.com/asset/?id=41363957"
  22.     particle.Lifetime = NumberRange.new(1, 1)
  23.     particle.Rate = 30
  24.     particle.Speed = NumberRange.new(10, 10)
  25.     particle.VelocitySpread = 13
  26.     particle.Color = ColorSequence.new(v, v)
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement