Advertisement
SituatedGull8

SmokeS+UndergroundSong

May 24th, 2018
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.95 KB | None | 0 0
  1. plr = "mrmmikeyr94" --Put Your Name Der.
  2. --Start The Music!
  3. local s = Instance.new("Sound") --Inserts A Sound.
  4. s.Name = "We Are Scripters" --Names It So People Cant Delete it because dey dont know its name!
  5. s.SoundId = "http://www.roblox.com/asset/?id=27697743" --Sets The Music
  6. s.Volume = 2 --Sets the volume
  7. s.Pitch = 2.5 --Set the pitch
  8. s.Looped = true --Makes it keep on looping. (It keeps playing..)
  9. s.archivable = false --Makes it so people cant delete it if they find out the name.
  10. s.Parent = game.Workspace --Makes the Sound go to the workspace so everyone can hear it
  11. s:play()
  12. --Set The Skybox!
  13. h = Instance.new("Sky") --Inserts A Skybox
  14. h.Parent=game.Lighting --Puts the skybox into lighting
  15. h.SkyboxBk="http://www.roblox.com/asset/?id=1351835552" --All Below Set The Skybox
  16. h.SkyboxDn="http://www.roblox.com/asset/?id=1351835552"
  17. h.SkyboxFt="http://www.roblox.com/asset/?id=1351835552"
  18. h.SkyboxLf="http://www.roblox.com/asset/?id=1351835552"
  19. h.SkyboxRt="http://www.roblox.com/asset/?id=1351835552"
  20. h.SkyboxUp="http://www.roblox.com/asset/?id=1351835552"
  21. --Make A Message!
  22. msg = Instance.new("Team Elite join today!",workspace) --Inserts A Message Into Workspace.
  23. msg.Name="Team Elite" --Names It So People Dont Know The Name To Delete It.
  24. msg.Text = "This Game Got taken over by Team Elite" --Sets The Message.
  25. --Lightning/Ambient!
  26. game.Lighting.Brightness = 10
  27. game.Lighting.Ambient = Color3.new(255,0,0)
  28.  
  29. --smoke grenade script combo with Song--
  30. --Contact @Maikii#7644 on discord for song change or
  31. --you can edit code.
  32. --THANKS FOR USING MY SCRIPT :D--
  33.  
  34. local player=game.Players.LocalPlayer;
  35. local char=game.Players.LocalPlayer.Character;
  36. local humanoid = player.Character.Humanoid;
  37. Tool=Instance.new('Tool', game.Players.LocalPlayer.Backpack);
  38. Tool.GripForward=Vector3.new(-0.161, 0, -0.987);
  39. Tool.GripPos=Vector3.new(0.1, 0, 0.1);
  40. Tool.GripRight=Vector3.new(0.217, 0, -0.976);
  41. Tool.GripUp=Vector3.new(0, 1, 0);
  42. Tool.Name='Smoke Grenade'
  43. Handle=Instance.new('Part', Tool);
  44. Handle.Name = 'Handle';
  45. Handle.Size=Vector3.new(1, 1.2, 1);
  46. c4mesh=Instance.new('SpecialMesh', Handle);
  47. c4mesh.MeshType = 'FileMesh';
  48. c4mesh.MeshId='http://www.roblox.com/asset/?id=16975131';
  49. c4mesh.TextureId='http://www.roblox.com/asset/?id=16975111';
  50. c4mesh.Scale=Vector3.new(0.75, 0.75, 0.75);
  51. light=Instance.new('PointLight', Handle);
  52. light.Color = Color3.new(255,0,0)
  53. light.Range=10;
  54. light.Enabled=false;
  55. beep=Instance.new('Sound',Handle)
  56. beep.Volume=5;
  57. beep.SoundId='rbxassetid://252141949'
  58. access=Instance.new('Sound',Handle)
  59. access.Volume=5;
  60. access.SoundId='rbxassetid://131644923'
  61. beeptone=Instance.new('Sound',Handle)
  62. beeptone.Volume=5;
  63. beeptone.SoundId='rbxassetid://75338648'
  64. local Prepare=Instance.new("Animation");
  65. Prepare.AnimationId="http://www.roblox.com/Asset?ID=75322014";
  66. local Launch=Instance.new("Animation");
  67. Launch.AnimationId="http://www.roblox.com/Asset?ID=94157627";
  68. function onActivated()
  69. if not Tool.Enabled then
  70. return
  71. end
  72. Tool.Enabled=false;
  73. local LaunchAnim = humanoid:LoadAnimation(Launch);
  74. LaunchAnim:Play();
  75. wait(0.4)
  76.  
  77. local p = Handle:Clone();
  78. local dir = char.Head.CFrame.lookVector;
  79. p.Velocity = (dir * 80) + Vector3.new(0,8,0);
  80. p.CanCollide = true;
  81. p.Parent = game.Workspace;
  82. p.Name='c4';
  83. beep.Parent=p;
  84. light.Parent=p;
  85. Handle.Transparency=1;
  86.  
  87. wait(0.2)
  88. smokee=Instance.new('ParticleEmitter', p)
  89. smokee.Size = NumberSequence.new(31)
  90. smokee.Speed = NumberRange.new(10)
  91. smokee.RotSpeed = NumberRange.new(-255, 250)
  92. smokee.Texture = 'http://www.roblox.com/asset/?id=241539438'
  93. smokee.LightEmission = 1
  94. ex=Instance.new('Explosion',workspace);
  95. ex.BlastPressure=6;
  96. ex.BlastRadius=6;
  97. ex.Position=p.Position;
  98. smokee.VelocitySpread = 30
  99. smokee.Rate = 500
  100. smokee.Enabled=true;
  101. ss=Instance.new('Sound',p);
  102. ss.Volume=5;
  103. ss.SoundId='rbxassetid://424618966';
  104. ss:Play();
  105. Handle.Transparency=1;
  106. wait(16)
  107. p:remove();
  108. Handle.Transparency=0
  109. Tool.Enabled=true;
  110.  
  111.  
  112.  
  113. end
  114. Tool.Activated:connect(onActivated);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement