-- Load Rayfield UI Library
local Rayfield = loadstring(game:HttpGet('https://raw.githubusercontent.com/SiriusSoftwareLtd/Rayfield/main/source.lua'))()
-- Control States
getgenv().HitboxEnabled = false
getgenv().SilentFootsteps = false
local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
-- Window Setup
local Window = Rayfield:CreateWindow({
Name = "Aura Elite: AR2",
LoadingTitle = "Titanium Framework",
LoadingSubtitle = "by Caden",
ConfigurationSaving = { Enabled = false },
KeySystem = false
})
local MainTab = Window:CreateTab("Utilities", 4483362458)
-- STABLE BACKGROUND PROCESSING LOOP
task.spawn(function()
while task.wait(0.5) do
-- 1. Manage Hitboxes Safely
if workspace:FindFirstChild("Characters") then
for _, character in pairs(workspace.Characters:GetChildren()) do
if character.Name == "StarterCharacter" and character ~= LocalPlayer.Character then
pcall(function()
local hrp = character:FindFirstChild("HumanoidRootPart")
if hrp then
if getgenv().HitboxEnabled then
hrp.Size = Vector3.new(12, 12, 12)
hrp.Transparency = 0.6
hrp.Color = Color3.fromRGB(0, 255, 255)
hrp.Material = Enum.Material.Neon
hrp.CanCollide = false
else
hrp.Size = Vector3.new(2, 2, 1)
hrp.Transparency = 1
hrp.Material = Enum.Material.Plastic
end
end
end)
end
end
end
end
end)
-- 2. FAST RUNTIME SOUND SUPPRESSOR (Runs on frame step for instant muting)
game:GetService("RunService").Heartbeat:Connect(function()
if getgenv().SilentFootsteps and LocalPlayer.Character then
pcall(function()
-- Scan your own character model for any active step sounds the game spawns
for _, obj in pairs(LocalPlayer.Character:GetDescendants()) do
if obj:IsA("Sound") then
obj.Volume = 0
obj:Stop()
end
end
-- Scan the immediate workspace area around your character just in case they spawn at your feet
local hrp = LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
if hrp then
for _, obj in pairs(workspace:GetPartBoundsInBox(hrp.CFrame, Vector3.new(5, 5, 5))) do
local sound = obj:FindFirstChildOfClass("Sound")
if sound then
sound.Volume = 0
sound:Stop()
end
end
end
end)
end
end)
-- INTERFACE TOGGLES
MainTab:CreateToggle({
Name = "Enable Hitbox Expander",
CurrentValue = false,
Flag = "HitboxToggle",
Callback = function(Value)
getgenv().HitboxEnabled = Value
end,
})
MainTab:CreateToggle({
Name = "Silent Footsteps (Ghost Mode)",
CurrentValue = false,
Flag = "SilentToggle",
Callback = function(Value)
getgenv().SilentFootsteps = Value
end,
})
Comments
horrid script only 2 features insta banned with potass
Lmk if its good.