GGametypePlayer

annoy 100

Dec 14th, 2022
786
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.89 KB | None | 0 0
  1. --LITTLE SKID
  2.  
  3. local Debris = game:GetService("Debris")
  4.  
  5. --credit
  6. local MSG = Instance.new("Message", workspace)
  7. MSG.Name = "Credits"
  8. MSG.Text = "The worst gun system, made by IAmBanFor.(annoy 100)"
  9.  
  10. Debris:AddItem(MSG, 2)
  11.  
  12. --main
  13. local tool = Instance.new("Tool", game:GetService("Players").IAmBanFor.Backpack)
  14. local Part = Instance.new("Part", tool)
  15. local Mesh = Instance.new("SpecialMesh", Part)
  16.  
  17. local equip = Instance.new("Sound", Part)
  18. local shot = Instance.new("Sound", Part)
  19.  
  20. tool.Name = "gun"
  21. Part.Name = "Handle"
  22. Part.Size = Vector3.new(1.203, 0.936, 0.265)
  23.  
  24. Mesh.MeshId = "rbxassetid://623102664"
  25. Mesh.TextureId = "rbxassetid://623102879"
  26.  
  27. equip.Volume = 10
  28. equip.SoundId = "rbxassetid://7405483764"
  29.  
  30. shot.Volume = 10
  31. shot.SoundId = "rbxassetid://2811598570"
  32.  
  33.  
  34. tool.Equipped:Connect(function() equip:Play()  end)
  35. tool.Activated:Connect(function() shot:Play() end)
Advertisement
Add Comment
Please, Sign In to add comment