Advertisement
SlappyDappyCrappy

Untitled

Nov 8th, 2017
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.18 KB | None | 0 0
  1. n = game.Players.LocalPlayer.Character
  2. y = Instance.new("Sound", n.Head)
  3. y.SoundId = "rbxassetid://979691916"
  4. y.PlaybackSpeed = .3
  5. y.Volume = 5
  6. y.Name = 'music'
  7. y.Looped = true
  8. y:Play()
  9. while wait(1/30) do
  10. for _, v in pairs(n:GetChildren()) do
  11.   if v.ClassName == "Part" or v.ClassName == "MeshPart" then
  12. v.Transparency = math.random(0,1)
  13. n.HumanoidRootPart.Transparency = 1
  14.   end
  15. end
  16. for _, v in pairs(n:GetChildren()) do
  17.   if v.ClassName == "Accessory"  then
  18. v.Handle.Transparency = math.random(0,1)
  19.   end
  20. end
  21. for _, v in pairs(n:GetChildren()) do
  22.   if v.ClassName == "Tool"  then
  23. v.Handle.Transparency = math.random(0,1)
  24.   end
  25. end
  26. for _, v in pairs(n.Head:GetChildren()) do
  27.   if v.ClassName == "Decal"  then
  28.     v.Transparency = math.random(0,1)
  29.   end
  30. end
  31. for _, v in pairs(n:GetChildren()) do
  32.   if v.ClassName == "Part" or v.ClassName == "MeshPart" then
  33. d = Instance.new('SelectionBox',v)
  34. d.Name = 's'
  35. d.Adornee = v
  36. d.LineThickness = 0
  37. d.SurfaceTransparency = 1
  38. d.Color3 = Color3.new(math.random(),math.random(),math.random())
  39. if v.Name == 'HumanoidRootPart' then
  40. d:Destroy()
  41. end
  42. wait(.001)
  43. d:Destroy()
  44. end
  45. end
  46. n.Humanoid.WalkSpeed = math.random(16,33)
  47. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement