Categories > Exploiting > Scripts >
[RELEASE] Untitled Attack On Titan Gui
Posted
Features:
- Infinite gas
- Prevent blades from breaking
- Titan kill aura
- Cut limbs aura
- Utility(walkspeed, jumppower)
local library = loadstring(game:HttpGet("https://pastebin.com/raw/CkyR8ePz", true))()
local Gui = library:CreateWindow('Titan Game')
-- Variables
local Plr = game:GetService("Players").LocalPlayer
local Dmg = game:GetService("ReplicatedStorage").DamageEvent
local Cut = game:GetService("ReplicatedStorage").CutLimbsEvent
-- Functions
local function IsNear(Part)
if (Part.Position - Plr.Character:FindFirstChild("HumanoidRootPart").Position).Magnitude <= 75 then
return true
end
end
Gui:Section("Made by Anasusxz")
-- Inf gas and no blade break
Gui:Button('Infinite Gas and Blades', function()
local Old
Old = hookmetamethod(game, "__namecall", function(self,...)
if getnamecallmethod() == "FireServer" and not checkcaller() then
if tostring(self) == "BladeDurEvent" or tostring(self) == "GasDepleteEvent" then
return nil
end
end
return Old(self, ...)
end)
end)
Gui:Toggle("Kill Aura", {flag = "KillAura"})
-- kill aura
spawn(
function()
while task.wait() do
if Gui.flags.KillAura then
for i, v in next, workspace:GetChildren() do
if
v.Name == "Titan" and v:FindFirstChild("NapeHitbox") and v:FindFirstChild("Humanoid") and
Plr.Character ~= nil and
Plr.Character:FindFirstChild("HumanoidRootPart")
then
if IsNear(v.NapeHitbox) == true and v:FindFirstChild("Humanoid").Health ~= 0 then
local args = {
[2] = v:FindFirstChild("Humanoid"),
[3] = "&@&*&@&",
[4] = v
}
Dmg:FireServer(unpack(args))
end
end
end
end
end
end
)
Gui:Toggle("Cut limbs aura", {flag = "Detitanize"})
--Destroys limbs
spawn(
function()
while task.wait() do
if Gui.flags.Detitanize then
for i, v in next, workspace:GetChildren() do
if
v.Name == "Titan" and v:FindFirstChild("NapeHitbox") and v:FindFirstChild("Humanoid") and
Plr.Character ~= nil and
Plr.Character:FindFirstChild("HumanoidRootPart")
then
if IsNear(v.NapeHitbox) == true and v:FindFirstChild("Humanoid").Health ~= 0 then
Cut:FireServer("Left Arm", v, "&@&*&@&")
Cut:FireServer("Right Arm", v, "&@&*&@&", "Right Shoulder")
Cut:FireServer("Left Arm", v, "&@&*&@&", "Left Shoulder")
Dmg:FireServer("Blind", v:FindFirstChild("Humanoid"), "&@&*&@&", v)
end
end
end
end
end
end
)
Replied
'Github user, Joined 17 minutes ago'
Bro? You're a Lua developer and not have Github? 🤔
Cancel
Post
I'm not lazy, I'm just highly motivated to do nothing. #I💚Dogs.
Replied
idk i never loadstring my things so i wanted to try something new i guess
Cancel
Post
Replied
Holy crap, This script is op Thanks for making it lol.
Cancel
Post
i lost my flesh
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post