This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if getgenv().syn and getgenv().syn.run_on_actor then | |
for _,v in pairs(getactors())do--phantom forces out here using actors | |
if tostring(v)=="lol"then--actor named lul | |
syn.run_on_actor(v,[[ | |
local mouse--same old method just now in a run actor | |
for _,v in pairs(getgc(true))do | |
if type(v)=="table"then | |
if rawget(v,"mouse")then | |
if rawget(v.mouse,"onmousemove")then | |
mouse=v.mouse |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local function getRoleColor(plr) | |
if (plr.Backpack:FindFirstChild("Knife") or plr.Character:FindFirstChild("Knife")) then | |
return Color3.new(255, 0, 0) | |
elseif (plr.Backpack:FindFirstChild("Gun") or plr.Character:FindFirstChild("Gun")) then | |
return Color3.new(0, 0, 255) | |
else | |
return Color3.new(0, 255, 0) | |
end | |
end | |
while true do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() | |
local Window = Library.CreateLib("Etronix Hub", "BloodTheme") | |
local StealthMode = true -- If game has an anticheat that checks the logs | |
local Indicator | |
--MAIN-- | |
local Tab = Window:NewTab("Main") | |
local Section = Tab:NewSection("Anti (RECOMMENDED)") | |
Section:NewToggle("AntiCheat Bypass", "Bypasses/stops the AntiCheat", function(state) |