Homestyle_chicken

nod

Mar 23rd, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local TextButton = Instance.new("TextButton")
  4.  
  5. --Properties:
  6.  
  7. ScreenGui.Parent = game.CoreGui
  8.  
  9. Frame.Parent = ScreenGui
  10. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  11. Frame.Position = UDim2.new(0.919469953, 0, 0.422965139, 0)
  12. Frame.Size = UDim2.new(0, 78, 0, 31)
  13.  
  14. TextButton.Parent = Frame
  15. TextButton.BackgroundColor3 = Color3.new(0, 1, 1)
  16. TextButton.Position = UDim2.new(0.0128204897, 0, 0, 0)
  17. TextButton.Size = UDim2.new(0, 78, 0, 31)
  18. TextButton.Font = Enum.Font.SourceSans
  19. TextButton.Text = "general guns"
  20. TextButton.TextColor3 = Color3.new(0, 0, 0)
  21. TextButton.TextSize = 14
  22. TextButton.MouseButton1Down:connect(function()
  23. local player = game:GetService("Players").LocalPlayer
  24. local gun = player.Backpack:FindFirstChild("M9")
  25. local sM = require(gun:FindFirstChild("GunStates"))
  26. sM["Damage"] = 999
  27. sM["MaxAmmo"] = math.huge
  28. sM["StoredAmmo"] = math.huge
  29. sM["FireRate"] = 0.0001
  30. sM["AmmoPerClip"] = math.huge
  31. sM["Range"] = 5000
  32. sM["ReloadTime"] = 0.05
  33. sM["Bullets"] = 1
  34. sM["AutoFire"] = false
  35.  
  36. local player = game:GetService("Players").LocalPlayer
  37. local gun = player.Backpack:FindFirstChild("M4A1")
  38. local sM = require(gun:FindFirstChild("GunStates"))
  39. sM["Damage"] = 999
  40. sM["MaxAmmo"] = math.huge
  41. sM["StoredAmmo"] = math.huge
  42. sM["FireRate"] = 0.06
  43. sM["AmmoPerClip"] = math.huge
  44. sM["Range"] = 5000
  45. sM["ReloadTime"] = 0.05
  46. sM["Bullets"] = 1
  47. sM["AutoFire"] = true
  48.  
  49. local player = game:GetService("Players").LocalPlayer
  50. local gun = player.Backpack:FindFirstChild("Remington 870")
  51. local sM = require(gun:FindFirstChild("GunStates"))
  52. sM["Damage"] = 999
  53. sM["MaxAmmo"] = math.huge
  54. sM["StoredAmmo"] = math.huge
  55. sM["FireRate"] = 0.8
  56. sM["AmmoPerClip"] = math.huge
  57. sM["Range"] = 5000
  58. sM["ReloadTime"] = 0.05
  59. sM["Bullets"] = 18
  60. sM["AutoFire"] = false
  61. end)
Add Comment
Please, Sign In to add comment