ZynatyGaming

Shoot Out | Beta

May 5th, 2021
11
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.08 KB | None | 0 0
  1. local Material = loadstring(game:HttpGet("https://raw.githubusercontent.com/Kinlei/MaterialLua/master/Module.lua"))()
  2.  
  3. local Library =
  4. Material.Load(
  5. {
  6. Title = "Shoot Out | Beta",
  7. Style = 1,
  8. SizeX = 400,
  9. SizeY = 400,
  10. Theme = "Aqua",
  11. ColorOverrides = {
  12. MainFrame = Color3.fromRGB(35,35,35)
  13. }
  14. }
  15. )
  16.  
  17.  
  18.  
  19. -- Sections --
  20.  
  21. local Main =
  22. Library.New(
  23. {
  24. Title = "Main"
  25. }
  26. )
  27.  
  28. local Credits =
  29. Library.New(
  30. {
  31. Title = "Credits"
  32. }
  33. )
  34.  
  35.  
  36.  
  37.  
  38.  
  39. --Credits
  40.  
  41. Credits.Button(
  42. {
  43. Text = "Made By KarumuBlox#2391",
  44. Callback = function()
  45.  
  46. end
  47. }
  48. )
  49.  
  50. Credits.Button(
  51. {
  52. Text = "Discord: Click to Copy",
  53. Callback = function()
  54. setclipboard("https://discord.gg/3MKe7qFACv")
  55.  
  56. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/TrillyX/Resources/main/NFLib"))()
  57.  
  58. Library:Notification("Copied!", "Paste into Browser to join the discord", 5, Color3.fromRGB(255, 255, 255))
  59. end
  60. }
  61. )
  62.  
  63. --main--
  64.  
  65.  
  66. Main.Button(
  67. {
  68. Text = "ESP",
  69. Callback = function()
  70. shared.Visuals = { --// Configuration (Will load default settings if shared.Visuals doesn't exist.)
  71. Enabled = true,
  72. CrosshairEnabled = true,
  73. Boxes = true,
  74. Healthbar = true,
  75. Tracers = true,
  76. Info = true,
  77. ShowAllyTeam = true,
  78. UseTeamColor = true,
  79. AllyColor = Color3.fromRGB(0, 255, 0),
  80. EnemyColor = Color3.fromRGB(255, 0, 0),
  81. Crosshair = {
  82. Size = 5,
  83. Thickness = 1.5,
  84. Offset = 5
  85. }
  86. }
  87.  
  88. loadstring(game:HttpGet("https://raw.githubusercontent.com/coastss/releases/main/universal_visuals.lua"))()
  89.  
  90. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/TrillyX/Resources/main/NFLib"))()
  91.  
  92. Library:Notification("Loaded!", "Enjoy The Esp :)", 5, Color3.fromRGB(255, 255, 255))
  93. end
  94. }
  95. )
  96.  
  97. Main.Button(
  98. {
  99. Text = "Silent Aim",
  100. Callback = function()
  101. local a = require(game:GetService("ReplicatedFirst")["_0xS0URC3X"].Shared.AimAssistSettings)
  102. a.MaxScreenCoverage = 999999
  103. a.MaxKDR = 99999999.99999999
  104. a.MaxRange = 999999999
  105.  
  106. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/TrillyX/Resources/main/NFLib"))()
  107.  
  108. Library:Notification("Loaded!", "Enjoy The Silent Aim :)", 5, Color3.fromRGB(255, 255, 255))
  109. end
  110. }
  111. )
  112.  
  113. Main.Button(
  114. {
  115. Text = "Kill All",
  116. Callback = function()
  117. while wait(0.1) do
  118. spawn(function()
  119. wait(2)
  120. game:GetService("ReplicatedStorage").RemoteObjects.Deploy:FireServer()
  121. end)
  122. for a, b in pairs(game.Players:GetPlayers()) do
  123. pcall(function()
  124. if b.Name ~= game.Players.LocalPlayer.Name and b.Character and b.Character.Head and b.Character.Head.NameTag.TextLabel.TextColor3 == Color3.fromRGB(255, 0, 0) then
  125. local args = {
  126. [1] = {
  127. ["WeaponModel"] = game.Players.LocalPlayer.Character.Knife,
  128. ["HitPart"] = b.Character.HumanoidRootPart,
  129. ["HitPosition"] = b.Character.HumanoidRootPart.Position,
  130. ["HitPlayer"] = b
  131. }
  132. }
  133. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = b.Character.HumanoidRootPart.CFrame
  134. wait()
  135. spawn(function()
  136. while wait(0.5) do
  137. game:GetService("ReplicatedStorage").RemoteObjects.Stab:FireServer(unpack(args))
  138. end
  139. end)
  140. end
  141. end)
  142. end
  143. end
  144.  
  145. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/TrillyX/Resources/main/NFLib"))()
  146.  
  147. Library:Notification("Loaded!", "Enjoy The Kill All :)", 5, Color3.fromRGB(255, 255, 255))
  148. end
  149. }
  150. )
  151.  
  152.  
  153. Main.Button(
  154. {
  155. Text = "Gun Mod",
  156. Callback = function()
  157. for i,v in pairs(game:GetService("ReplicatedFirst")["_0xS0URC3X"].Shared.WeaponDataManager:GetDescendants()) do
  158. local b = require(v)
  159. b.Settings.MAX_AMMO = 99999999
  160. b.Settings.MAX_DAMAGE = 99999
  161. b.Settings.RECOIL_STRENGTH = 0
  162. b.Settings.SPREAD = 0
  163. b.Settings.RELOAD_TIME = 0
  164. b.Settings.ROF = 3000
  165. b.Settings.AUTOMATIC = true
  166. end
  167.  
  168. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/TrillyX/Resources/main/NFLib"))()
  169.  
  170. Library:Notification("Loaded!", "Enjoy The Gun Mod :)", 5, Color3.fromRGB(255, 255, 255))
  171. end
  172. }
  173. )
  174.  
  175. Main.Button(
  176. {
  177. Text = "Infinte Gems (Buggy)",
  178. Callback = function()
  179. while true do
  180. game:GetService("ReplicatedStorage").RemoteObjects.ClaimDailyChallenge:FireServer()
  181. wait(0.1)
  182. end
  183.  
  184. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/TrillyX/Resources/main/NFLib"))()
  185.  
  186. Library:Notification("Loaded!", "Enjoy The Infinte Gems :)", 5, Color3.fromRGB(255, 255, 255))
  187. end
  188. }
  189. )
  190.  
  191.  
  192.  
  193.  
  194.  
Add Comment
Please, Sign In to add comment