Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Material = loadstring(game:HttpGet("https://raw.githubusercontent.com/Kinlei/MaterialLua/master/Module.lua"))()
- local Library =
- Material.Load(
- {
- Title = "Shoot Out | Beta",
- Style = 1,
- SizeX = 400,
- SizeY = 400,
- Theme = "Aqua",
- ColorOverrides = {
- MainFrame = Color3.fromRGB(35,35,35)
- }
- }
- )
- -- Sections --
- local Main =
- Library.New(
- {
- Title = "Main"
- }
- )
- local Credits =
- Library.New(
- {
- Title = "Credits"
- }
- )
- --Credits
- Credits.Button(
- {
- Text = "Made By KarumuBlox#2391",
- Callback = function()
- end
- }
- )
- Credits.Button(
- {
- Text = "Discord: Click to Copy",
- Callback = function()
- setclipboard("https://discord.gg/3MKe7qFACv")
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/TrillyX/Resources/main/NFLib"))()
- Library:Notification("Copied!", "Paste into Browser to join the discord", 5, Color3.fromRGB(255, 255, 255))
- end
- }
- )
- --main--
- Main.Button(
- {
- Text = "ESP",
- Callback = function()
- shared.Visuals = { --// Configuration (Will load default settings if shared.Visuals doesn't exist.)
- Enabled = true,
- CrosshairEnabled = true,
- Boxes = true,
- Healthbar = true,
- Tracers = true,
- Info = true,
- ShowAllyTeam = true,
- UseTeamColor = true,
- AllyColor = Color3.fromRGB(0, 255, 0),
- EnemyColor = Color3.fromRGB(255, 0, 0),
- Crosshair = {
- Size = 5,
- Thickness = 1.5,
- Offset = 5
- }
- }
- loadstring(game:HttpGet("https://raw.githubusercontent.com/coastss/releases/main/universal_visuals.lua"))()
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/TrillyX/Resources/main/NFLib"))()
- Library:Notification("Loaded!", "Enjoy The Esp :)", 5, Color3.fromRGB(255, 255, 255))
- end
- }
- )
- Main.Button(
- {
- Text = "Silent Aim",
- Callback = function()
- local a = require(game:GetService("ReplicatedFirst")["_0xS0URC3X"].Shared.AimAssistSettings)
- a.MaxScreenCoverage = 999999
- a.MaxKDR = 99999999.99999999
- a.MaxRange = 999999999
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/TrillyX/Resources/main/NFLib"))()
- Library:Notification("Loaded!", "Enjoy The Silent Aim :)", 5, Color3.fromRGB(255, 255, 255))
- end
- }
- )
- Main.Button(
- {
- Text = "Kill All",
- Callback = function()
- while wait(0.1) do
- spawn(function()
- wait(2)
- game:GetService("ReplicatedStorage").RemoteObjects.Deploy:FireServer()
- end)
- for a, b in pairs(game.Players:GetPlayers()) do
- pcall(function()
- 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
- local args = {
- [1] = {
- ["WeaponModel"] = game.Players.LocalPlayer.Character.Knife,
- ["HitPart"] = b.Character.HumanoidRootPart,
- ["HitPosition"] = b.Character.HumanoidRootPart.Position,
- ["HitPlayer"] = b
- }
- }
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = b.Character.HumanoidRootPart.CFrame
- wait()
- spawn(function()
- while wait(0.5) do
- game:GetService("ReplicatedStorage").RemoteObjects.Stab:FireServer(unpack(args))
- end
- end)
- end
- end)
- end
- end
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/TrillyX/Resources/main/NFLib"))()
- Library:Notification("Loaded!", "Enjoy The Kill All :)", 5, Color3.fromRGB(255, 255, 255))
- end
- }
- )
- Main.Button(
- {
- Text = "Gun Mod",
- Callback = function()
- for i,v in pairs(game:GetService("ReplicatedFirst")["_0xS0URC3X"].Shared.WeaponDataManager:GetDescendants()) do
- local b = require(v)
- b.Settings.MAX_AMMO = 99999999
- b.Settings.MAX_DAMAGE = 99999
- b.Settings.RECOIL_STRENGTH = 0
- b.Settings.SPREAD = 0
- b.Settings.RELOAD_TIME = 0
- b.Settings.ROF = 3000
- b.Settings.AUTOMATIC = true
- end
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/TrillyX/Resources/main/NFLib"))()
- Library:Notification("Loaded!", "Enjoy The Gun Mod :)", 5, Color3.fromRGB(255, 255, 255))
- end
- }
- )
- Main.Button(
- {
- Text = "Infinte Gems (Buggy)",
- Callback = function()
- while true do
- game:GetService("ReplicatedStorage").RemoteObjects.ClaimDailyChallenge:FireServer()
- wait(0.1)
- end
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/TrillyX/Resources/main/NFLib"))()
- Library:Notification("Loaded!", "Enjoy The Infinte Gems :)", 5, Color3.fromRGB(255, 255, 255))
- end
- }
- )
Add Comment
Please, Sign In to add comment