Advertisement
tripono

gums

Jul 30th, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.99 KB | None | 0 0
  1. local Tool = script.Parent
  2. Tool:WaitForChild("Handle")
  3. Tool:WaitForChild("AimPart")
  4. Tool:WaitForChild("SmokePart")wait(0.5)
  5. --Made by YouTubes--
  6. --Edit settings below--
  7. local Tool = script.Parent
  8. local Settings = {
  9. Range = 1000
  10. ,Spread = 7
  11. ,Damage = {50, 75}
  12. ,HeadShotDamage = {70, 70}
  13. ,Bullets = 1
  14. ,FireRate = 0.1
  15. ,Automatic = true
  16. ,AntiTK = true
  17. ,ImpactDuration = 3
  18. --Reload
  19. ,ReloadKey = "R"
  20. ,ReloadTime = 2
  21. ,Ammo = 30
  22. ,IncludeChamberedBullet = false
  23. --Gui
  24. ,GuiPos = Vector2.new(script.Gui.Frame.Position.X.Scale, script.Gui.Frame.Position.Y.Scale)
  25. --Arms
  26. ,OneHanded = false
  27. ,FakeArms = true
  28. ,FakeArmTransparency = 0
  29. ,RightPos = CFrame.new(-0.75, -0.25, 0.5) * CFrame.Angles(math.rad(-90), 0, 0)
  30. ,LeftPos = CFrame.new(1, 0.5, 0.5) * CFrame.Angles(math.rad(-90), math.rad(45), 0)
  31. ,AimPart = Tool.AimPart
  32. ,AimPartOffset = CFrame.new()
  33. ,AimGripOffset = Vector3.new(0, 0, 0)
  34. ,LeftAimPos = CFrame.new(1, 0.5, 0.5) * CFrame.Angles(math.rad(-100), math.rad(45), 0)
  35. ,AimAnim = {
  36. Enabled = false
  37. ,Frames = 50
  38. ,Time = 0.1
  39. }
  40. ,ChangeFOV = {true, 60}
  41. ,SpreadReduction = 5
  42. --Weld
  43. ,Weld = true
  44. --Mouse
  45. ,Icons = {
  46. Idle = "http://www.roblox.com/asset/?id=133409254"
  47. ,Fire1 = "http://www.roblox.com/asset/?id=133409254"
  48. ,Fire2 = "http://www.roblox.com/asset/?id=133409254"
  49. ,Fire3 = "http://www.roblox.com/asset/?id=133409254"
  50. ,Reload = "http://www.roblox.com/asset/?id=133409254"
  51. ,Aim = "rbxasset://textures/Blank.png"
  52. }
  53. ,FireMouseAnimTime = 0.15
  54. --Recoil
  55. ,Recoil = math.rad(1)
  56. --Smoke
  57. ,Smoke = true
  58. ,SmokePart = Tool.SmokePart
  59. ,Smokes = {{script.Smoke, 6, 0.1}, {script.Smoke1, 0.1}, {script.Smoke1, 0.1}}
  60. --Sprint
  61. ,Sprint = true
  62. ,SprintSpeed = 25
  63. ,SprintKey = "0"
  64. ,SprintSpreadIncrease = 40
  65. ,SprintArmOffset = CFrame.new(0.25, 0.125, 0.25) * CFrame.Angles(math.rad(-30), math.rad(35), 0)
  66. --Other
  67. ,DropHats = true
  68. }
  69.  
  70. repeat Wait() until _G.YouTubesOldGunScript
  71. _G.YouTubesOldGunScript(Tool, Settings, script)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement