Advertisement
DrakerMaker

I Don't Feel So Good

Sep 8th, 2019
931
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. for i,v in pairs(owner.Character:GetChildren()) do
  2. if v:IsA("Part") then
  3. local particle = Instance.new("ParticleEmitter", v)
  4. particle.Name = "DontFeelSoGood"
  5. particle.EmissionDirection = "Left"
  6. particle.Texture = "rbxassetid://268259229"
  7. particle.Size = NumberSequence.new(0.3)
  8. particle.RotSpeed = NumberRange.new(16)
  9. particle.Rotation = NumberRange.new(100)
  10. particle.Color = ColorSequence.new(v.Color)
  11. end
  12. end
  13. local trans = 0
  14. for i = 1,25 do
  15. wait()
  16. for i,v in pairs(owner.Character:GetChildren()) do
  17. if v:IsA("Part") then
  18. v.Transparency = v.Transparency +0.05
  19. trans = trans +0.010
  20. v.DontFeelSoGood.Transparency = NumberSequence.new(trans)
  21. end
  22. end
  23. end
  24. for i,v in pairs(owner.Character:GetChildren()) do
  25. v.Parent = nil
  26. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement