Advertisement
FireyScripter

MTN DEW (ROBLOX LOCAL SCRIPT)

Aug 21st, 2016
371
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. wait(10)
  2. --Start the script
  3. local Plr = game.Players.LocalPlayer
  4. --Instance.new
  5. local Tool = Instance.new("Tool", game.Workspace)
  6. Tool.TextureId = "http://www.roblox.com/asset/?id=10247550"
  7. Tool.Name = "Mtn Dew"
  8. local Handle = Instance.new("Part", Tool)
  9. Handle.Name = "Handle"
  10. local Mesh = Instance.new("SpecialMesh", Handle)
  11. Mesh.MeshType = "FileMesh"
  12. Mesh.MeshId = "http://www.roblox.com/asset/?id=10470609"
  13. local Txture = Instance.new("Decal", Handle)
  14. Txture.Texture = "http://www.roblox.com/asset/?id=29796694"
  15. Tool.GripPos = Vector3.new(0, 0, 0)
  16. Tool.Parent = Plr.Backpack
  17. --Sound
  18. local DS = Instance.new("Sound", Handle)
  19. local OS = Instance.new("Sound", Handle) -- memes
  20. DS.SoundId = "http://www.roblox.com/asset/?id=10722059"
  21. OS.SoundId = "http://www.roblox.com/asset/?id=10721950"
  22. --Function
  23.  
  24. Tool.Equipped:connect(function()
  25.     Tool.GripPos = Vector3.new(0, 0, 0)
  26.     OS:Play()
  27. end)
  28.  
  29. Tool.Activated:connect(function()
  30.     DS:Play()
  31.     Tool.GripPos = Vector3.new(1.5, -0.3, -0.5)
  32.     wait(2)
  33.     Tool.GripPos = Vector3.new(0, 0, 0)
  34. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement