vicentexd454

Untitled

Feb 3rd, 2018
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. local grav = 20;
  2. local playerLeaderstats = {}
  3. for i, v in pairs(game.Players:GetChildren()) do
  4. table.insert(playerLeaderstats, v)
  5. end
  6. for i, v in pairs(playerLeaderstats) do
  7. pe = Instance.new("ParticleEmitter",v.Character.Torso)
  8. pe.Texture = "http://www.roblox.com/asset/?id=408774805"
  9. pe.VelocitySpread = 50
  10. se = Instance.new("ParticleEmitter",v.Character.Torso)
  11. se.Texture = "http://www.roblox.com/asset/?id=378919754"
  12. se.VelocitySpread = 50
  13. fe = Instance.new("ParticleEmitter",v.Character.Torso)
  14. fe.Texture = "http://www.roblox.com/asset/?id=409990921"
  15. fe.VelocitySpread = 50
  16. end
  17.  
  18. print("Music executed!")
  19.  
  20. s = Instance.new("Sound")
  21.  
  22. s.Name = "Music"
  23.  
  24. s.SoundId = "http://www.roblox.com/asset/?id=517931264" --Put the id into there.
  25.  
  26. s.Looped = true
  27.  
  28. s.Pitch = 1 --You can edit these settings.
  29.  
  30. s.Volume = 4 --You can edit these settings.
  31.  
  32. s.archivable = false
  33.  
  34.  
  35.  
  36. s.Parent = game.Workspace
  37.  
  38.  
  39.  
  40. wait(1)
  41.  
  42.  
  43. s:play()
  44.  
  45. for i, v in pairs(game.Players:GetPlayers()) do
  46. if v.Character then
  47. noob = v
  48. noob.Data.Level.Value = 1 -- Max Level
  49. noob.Data.Agi.Value = 1 -- 400k Agility
  50. noob.Data.Hea.Value = 1 -- 1000 points on Health
  51. noob.Data.Str.Value = 1 -- 10 Million strength - Hey One Punch Man!
  52. noob.Data.Sta.Value = 1-- 1000 points to Stamina
  53. --noob.Data.Class.Value = 1 -- 1 for Superhuman, 2 for Robot, 3 for Esper, 4 for Ninja.---don't trust this shit.
  54. end
  55. wait()
  56. end
  57.  
  58.  
  59. game.Workspace.Gravity=grav;
  60.  
  61. while true do
  62. a=Instance.new("Sky",game.Lighting)
  63.  
  64. b={"Bk","Dn","Ft","Lf","Rt","Up"}
  65.  
  66. for i,v in pairs(b) do
  67.  
  68. a["Skybox"..v]="rbxassetid://518936297"
  69.  
  70. end
  71. wait(0.1)
  72. end
Add Comment
Please, Sign In to add comment