Advertisement
FireyScripter

dat meme (LOCAL SCRIPT)

Sep 14th, 2016
391
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.98 KB | None | 0 0
  1. --NEED TO FIX IT
  2. local Plr = game.Players.LocalPlayer
  3. --Instance.new
  4. local Tool = Instance.new("Tool", game.Workspace)
  5. Tool.Name = "dat meme"
  6. local Handle = Instance.new("Part", Tool)
  7. Handle.Name = "Handle"
  8. local Mesh = Instance.new("SpecialMesh", Handle)
  9. Mesh.MeshType = "FileMesh"
  10. Mesh.MeshId = "http://www.roblox.com/asset/?id=431888678"
  11. local Txture = Instance.new("Decal", Handle)
  12. Txture.Texture = "http://www.roblox.com/asset/?id=431888683"
  13. Tool.GripPos = Vector3.new(0, 0, 0)
  14. Tool.Parent = Plr.Backpack
  15. --Sound
  16. local DS = Instance.new("Sound", Handle)
  17. local OS = Instance.new("Sound", Handle) -- memes
  18. DS.SoundId = "http://www.roblox.com/asset/?id=198462271"
  19. OS.SoundId = "http://www.roblox.com/asset/?id=198462271"
  20. --I nono
  21. Tool.Equipped:connect(function()
  22.     Tool.GripPos = Vector3.new(0, 0, 0)
  23.     OS:Play()
  24. end)
  25.  
  26. Tool.Activated:connect(function()
  27.     DS:Play()
  28.     Tool.GripPos = Vector3.new(0, 0, 0)
  29.     wait(2)
  30.     Tool.GripPos = Vector3.new(0, 0, 0)
  31. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement