-- q scriptz :3
-- you are not allowed to make fun of my code
-- inf yield
loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
-- unnamed esp
loadstring(game:HttpGet('https://raw.githubusercontent.com/ic3w0lf22/Unnamed-ESP/master/UnnamedESP.lua'))()
-- aztup hub is $10 u can buy it at aztupscripts.xyz
-- username hider
------------------------------------------------------------------------
------------------------------------------------------------------------
getgenv().name = "iltria"
task.spawn(function()
local Plr = game.Players.LocalPlayer
for Index, Value in next, game:GetDescendants() do
if Value.ClassName == "TextLabel" then
local has = string.find(Value.Text,Plr.Name)
if has then
local str = Value.Text:gsub(Plr.Name,name)
Value.Text = str
end
Value:GetPropertyChangedSignal("Text"):Connect(function()
local str = Value.Text:gsub(Plr.Name,name)
Value.Text = str
end)
end
end
game.DescendantAdded:Connect(function(Value)
if Value.ClassName == "TextLabel" then
local has = string.find(Value.Text,Plr.Name)
Value:GetPropertyChangedSignal("Text"):Connect(function()
local str = Value.Text:gsub(Plr.Name,name)
Value.Text = str
end)
if has then
local str = Value.Text:gsub(Plr.Name,name)
Value.Text = str
end
end
end)
end)
task.spawn(function()
local Plr = game.Players.LocalPlayer
for Index, Value in next, game:GetDescendants() do
if Value.ClassName == "TextLabel" then
local has = string.find(Value.Text,Plr.DisplayName)
if has then
local str = Value.Text:gsub(Plr.DisplayName,name)
Value.Text = str
end
Value:GetPropertyChangedSignal("Text"):Connect(function()
local str = Value.Text:gsub(Plr.DisplayName,name)
Value.Text = str
end)
end
end
game.DescendantAdded:Connect(function(Value)
if Value.ClassName == "TextLabel" then
local has = string.find(Value.Text,Plr.DisplayName)
Value:GetPropertyChangedSignal("Text"):Connect(function()
local str = Value.Text:gsub(Plr.DisplayName,name)
Value.Text = str
end)
if has then
local str = Value.Text:gsub(Plr.DisplayName,name)
Value.Text = str
end
end
end)
end)
------------------------------------------------------------------------
------------------------------------------------------------------------
-- no fall damage
------------------------------------------------------------------------
------------------------------------------------------------------------
local Hook
Hook = hookmetamethod(game,"__namecall",function(self,...)
local Args = {...}
if getnamecallmethod() == "FireServer" and self.Name == "fall" then
return
end
return Hook(self,...)
end)
------------------------------------------------------------------------
------------------------------------------------------------------------
-- spectate
------------------------------------------------------------------------
------------------------------------------------------------------------
local isSpectating = false
function spectatePlayer(player)
if isSpectating then
if game.Players.LocalPlayer.Character then
isSpectating = false
workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
end
return end
isSpectating = true
if player.Character then
workspace.CurrentCamera.CameraSubject = player.Character
end
end
delay(0,function()
while wait(5) do
if not game.Players.LocalPlayer.PlayerGui:FindFirstChild("LeaderboardNew") then return end
if not game.Players.LocalPlayer.PlayerGui.LeaderboardNew:FindFirstChild("leadFrame") then return end
if not game.Players.LocalPlayer.PlayerGui.LeaderboardNew.leadFrame:FindFirstChild("ScrollingFrame") then return end
for _,v in pairs(game.Players.LocalPlayer.PlayerGui.LeaderboardNew.leadFrame.ScrollingFrame:GetChildren()) do
if v.Name ~= "UIListLayout" and game:GetService("Players"):FindFirstChild(v.Name) and not game:GetService("Players"):FindFirstChild(v.Name):FindFirstChild("QEX_WATCHINGFORSPECTATEINPUT") then
local tag = Instance.new("Folder",game:GetService("Players"):FindFirstChild(v.Name))
tag.Name = "QEX_WATCHINGFORSPECTATEINPUT"
v.InputBegan:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseButton1 then
spectatePlayer(game:GetService("Players"):FindFirstChild(v.Name))
end
end)
end
end
end
end)
------------------------------------------------------------------------
------------------------------------------------------------------------
-- show healthbars + no fog
------------------------------------------------------------------------
------------------------------------------------------------------------
task.spawn(function()
while task.wait(3) do
for _,v in pairs(workspace.Live:GetChildren()) do
if v and v:IsA("Model") and v:FindFirstChildOfClass("Humanoid") then
local vhum = v:FindFirstChildOfClass("Humanoid")
pcall(function()
vhum.HealthDisplayType = Enum.HumanoidHealthDisplayType.AlwaysOn
vhum.HealthDisplayDistance = 70
vhum.DisplayDistanceType = Enum.HumanoidDisplayDistanceType.Subject
end)
end
end
game.Players.LocalPlayer.CameraMaxZoomDistance = 1000000
game.Lighting.FogStart = 9999999
game.Lighting.FogEnd = 9999999
end
end)
------------------------------------------------------------------------
------------------------------------------------------------------------
-- mod alert
------------------------------------------------------------------------
------------------------------------------------------------------------
task.spawn(function()
local staff = {
"iltria", -- #1 enemy
"DutchMisfit",
"timothy_teakettle",
"gatronks",
"sargentsteveEr",
"Scronkly",
"LemonScented_60",
"eightsystem",
"rueghost",
"sbliz",
"bincent",
"Saelent",
"ZelInfernos",
"Harmonykills"
}
while task.wait(5) do
table.foreach(staff,function(a,b)
for _,v in pairs(game:GetService("Players"):GetChildren()) do
if v.Name == b then
game:GetService("StarterGui"):SetCore("SendNotification", {
Title = "Moderator Detected",
Text = v.Name,
Duration = 4.5
})
end
end
end)
end
end)
------------------------------------------------------------------------
------------------------------------------------------------------------