-- open source 123 -- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))() local Window = OrionLib:MakeWindow({Name = "Projeto LKB", HidePremium = false, SaveConfig = true, ConfigFolder = "Projeto LKB"}) local Tab = Window:MakeTab({ Name = "Main", Icon = "rbxassetid://4483345998", PremiumOnly = false }) _G.Money = 10000 -- value _G.autokillallgun = false -- kill all gun only wow Tab:AddToggle({ Name = "Auto kill All (Gun / disabled and enabled fix bug / (tool rq))", Default = false, Callback = function(v) -- value _G.autokillallgun = v -- value false = true and true = false if _G.autokillallgun then -- if _g.autokillallgun = true then -- function script -- local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer while _G.autokillallgun do -- if _G.autokillallgun true then // function for _, plr in pairs(Players:GetPlayers()) do if plr ~= LocalPlayer and plr.Character and plr.Character:FindFirstChild("HumanoidRootPart") then local rip = Vector3.new(0, 0, 0) local args = { [1] = plr, -- player [2] = rip -- vector } LocalPlayer.Character:FindFirstChildOfClass("Tool").kill:FireServer(unpack(args)) -- fire event and FindFirstChildOfClass tool end end wait(0.1) -- wait to prevent lag and too frequent firing end end end }) Tab:AddButton({ Name = "Give Knifes/Guns - works on kill all (Gun)", Callback = function() for i,v in game.Players:GetDescendants() do if v:IsA("Tool") then v.Parent = game.Players.LocalPlayer.Backpack -- clone players tool Backpack end end end }) Tab:AddTextbox({ Name = "Money Value (_G)", Default = "10000", TextDisappear = true, Callback = function(v) _G.Money = tonumber(v) -- value money change _G.money end }) Tab:AddButton({ Name = "Give Money (_G)", Callback = function(v) _G.Money = -math.abs(_G.Money) -- change _G.Money -value for positive money local args = { [1] = "NiksScythe", -- random knife/gun [2] = _G.Money -- value } game:GetService("ReplicatedStorage").Buy:InvokeServer(unpack(args)) -- InvokeServer task.wait(0.1) -- wait -- notification function -- OrionLib:MakeNotification({ Name = "Money Add !", -- name not Content = "Value: ".._G.Money.." (+)", -- value not Image = "rbxassetid://4483345998", Time = 5 }) end })