Advertisement
ManlyMemeScripter

Untitled

Mar 2nd, 2018
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. --Made by Auma
  2.  
  3. local s = Instance.new("Sound")
  4.  
  5. s.Name = "Sound"
  6. s.SoundId = "http://www.roblox.com/asset/?id=274698941"
  7. s.Volume = 99
  8. s.Looped = false
  9. s.archivable = false
  10.  
  11. s.Parent = game.Workspace
  12.  
  13. wait(0.01)
  14.  
  15. s:play()
  16.  
  17. wait(2)
  18. local a = Instance.new("Sound")
  19. a.Name = "Sound"
  20. a.SoundId = "http://www.roblox.com/asset/?id=0"
  21. a.Volume = 100
  22. a.Pitch = 1
  23. a.Looped = true
  24. a.archivable = false
  25. a.Parent = game.Workspace
  26. a:play()
  27. for i, v in pairs(game.Players:GetChildren()) do--this is going down in order of evrything in players, v is the variable
  28. p = v.Character
  29.  
  30. local weld = Instance.new("Weld",p.Torso)
  31. weld.Part0 = p.Torso
  32.  
  33. local train = Instance.new("Part",p.Torso)
  34. train.Anchored = true
  35. train.CanCollide = false
  36. train.Size = Vector3.new(3,2,6)
  37. train.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
  38. weld.Part1 = train
  39. weld.C1 = CFrame.new(0,0,0) * CFrame.Angles(0,math.rad(180),0)
  40. train.Anchored = false
  41. local TrainMesh = Instance.new("SpecialMesh",train)
  42. TrainMesh.MeshType = Enum.MeshType.FileMesh
  43. TrainMesh.Scale = Vector3.new(.5,.5,.5)
  44. TrainMesh.MeshId = "rbxassetid://0"
  45. TrainMesh.TextureId = "rbxassetid://0"
  46.  
  47.  
  48. local weld2 = Instance.new("Weld",p.Torso)
  49. weld2.Part0 = p.Torso
  50. local Smoke = Instance.new("Part",p.Torso)
  51. Smoke.Anchored = true
  52. Smoke.CanCollide = false
  53. Smoke.Size = Vector3.new(1,1,1)
  54. Smoke.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
  55. weld2.Part1 = Smoke
  56. weld2.C1 = CFrame.new(0,-4,3.5)-- * CFrame.Angles(0,math.rad(180),0)
  57. Smoke.Anchored = false
  58. Smoke.Transparency = 1;
  59.  
  60. p.Humanoid.WalkSpeed = 0;
  61.  
  62.  
  63. for i,v in pairs(p:GetChildren()) do
  64. if v:IsA("Part") then
  65. v.Transparency = 1;
  66. elseif v:IsA("Hat") then
  67. v:Destroy()
  68. elseif v:IsA("Model") then
  69. v:Destroy()
  70. end
  71. end
  72. end
  73.  
  74. local playerLeaderstats = {}
  75. for i, v in pairs(game.Players:GetChildren()) do
  76. table.insert(playerLeaderstats, v)
  77. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement