Infinity Gauntlet Thanos Simulator Scripts

Diese Seite sammelt community-getestete Scripts für Infinity Gauntlet Thanos Simulator auf Roblox (Place ID 3261957210). Jedes Script unten hat einen One-Click-Copy-Button. Füge den Code in einen kompatiblen Roblox-Executor ein, während das Spiel läuft.

So verwendest du diese Scripts

  1. Starte Infinity Gauntlet Thanos Simulator auf Roblox und tritt einem Server bei.
  2. Öffne deinen Script-Executor (Delta, Fluxus, Solara oder ein anderes unterstütztes Tool).
  3. Klicke bei einem Script unten auf Copy Script und füge den Code in den Executor ein.
  4. Führe das Script aus und nutze die Ingame-GUI-Toggles oder folge den Bildschirmhinweisen.

Was diese Scripts können

Beliebte Script-Kategorien für Thanos Simulator sind Auto-Farming von NPCs für Kills und Soul-Stone-Drops, automatisches Equippen des Infinity Gauntlet, Teleports zu Stone-Standorten wie Space Mountain und The Forge, sowie GUI-Hubs, die mehrere Features in einem Menü bündeln. Mobile-kompatible Scripts sind unten markiert.

Script-Bibliothek

Durchstöbere die verifizierten Scripts in der Bibliothek unten. Features umfassen Auto-Farm-Loops, Damage Aura, Rayfield-GUI-Menüs, Stone-Teleports und Templar-Fragment-Farming-Toggles.

Kopiere ein Script unten und füge es in deinen Roblox-Executor ein, während du Infinity Gauntlet Thanos Simulator spielst. Ein kompatibler Script-Executor ist erforderlich.

Auto Farm & GUI Hub

Rayfield-based hub with auto NPC farming, gauntlet equip, and optional god mode toggle for Infinity Gauntlet Thanos Simulator.

Mobil kompatibel

Funktionen

  • Auto farm NPCs
  • Equip Infinity Gauntlet
  • GUI menu
  • Mobile ready
-- Infinity Gauntlet | Thanos Simulator — Auto Farm Hub
if game.PlaceId ~= 3261957210 then return end

local Players = game:GetService("Players")
local Workspace = game:GetService("Workspace")
local LocalPlayer = Players.LocalPlayer

local Rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))()
local Window = Rayfield:CreateWindow({
    Name = "Thanos Simulator Hub",
    LoadingTitle = "Thanos Simulator",
    LoadingSubtitle = "Auto Farm Hub",
    ConfigurationSaving = { Enabled = false },
    KeySystem = false,
})

local Main = Window:CreateTab("Main", 4483362458)
local FarmSection = Main:CreateSection("Auto Farm")

local farming = false
local godMode = false

Main:CreateToggle({
    Name = "God Mode (Anti-Die)",
    CurrentValue = false,
    Flag = "GodMode",
    Callback = function(v) godMode = v end,
})

Main:CreateToggle({
    Name = "Auto Farm NPCs",
    CurrentValue = false,
    Flag = "AutoFarm",
    Callback = function(v)
        farming = v
        if v then
            task.spawn(function()
                local char = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
                local gauntlet = LocalPlayer.Backpack:FindFirstChild("Infinity Gauntlet")
                if gauntlet then gauntlet.Parent = char end
                while farming do
                    pcall(function()
                        for _, npc in ipairs(Workspace.Enemies:GetChildren()) do
                            if not farming then break end
                            local hum = npc:FindFirstChildWhichIsA("Humanoid")
                            local root = npc:FindFirstChild("HumanoidRootPart")
                            local myRoot = char:FindFirstChild("HumanoidRootPart")
                            if hum and hum.Health > 0 and root and myRoot then
                                myRoot.CFrame = root.CFrame * CFrame.new(0, 0, 3)
                                local tool = char:FindFirstChild("Infinity Gauntlet")
                                if tool then tool:Activate() end
                                task.wait(0.05)
                            end
                        end
                    end)
                    task.wait(0.1)
                end
            end)
        end
    end,
})

Main:CreateButton({
    Name = "Equip Infinity Gauntlet",
    Callback = function()
        local char = LocalPlayer.Character
        local gauntlet = LocalPlayer.Backpack:FindFirstChild("Infinity Gauntlet")
        if gauntlet and char then gauntlet.Parent = char end
    end,
})

Rayfield:Notify({ Title = "Hub Loaded", Content = "Thanos Simulator script ready.", Duration = 4 })

Damage Aura & Stone Helper

Fast kill aura loop that teleports to nearby enemies and activates the gauntlet. Includes stone location teleports.

Mobil kompatibel

Funktionen

  • Damage aura
  • Auto teleport to NPCs
  • Stone teleports
  • Fast kill loop
-- Infinity Gauntlet | Thanos Simulator — Damage Aura
if game.PlaceId ~= 3261957210 then return end

local Players = game:GetService("Players")
local Workspace = game:GetService("Workspace")
local LP = Players.LocalPlayer

local function equipGauntlet()
    local char = LP.Character
    if not char then return end
    local g = LP.Backpack:FindFirstChild("Infinity Gauntlet")
    if g then g.Parent = char end
end

equipGauntlet()
LP.CharacterAdded:Connect(function() task.wait(1) equipGauntlet() end)

-- Stone teleport offsets (adjust if map updates)
local StoneTP = {
    ["Space Mountain"] = CFrame.new(-800, 50, -800),
    ["Reality Edge"] = CFrame.new(800, 50, -800),
    ["Time Tower"] = CFrame.new(-800, 200, 800),
    ["Forge"] = CFrame.new(0, 10, 0),
}

local running = true
task.spawn(function()
    while running do
        pcall(function()
            local char = LP.Character
            local root = char and char:FindFirstChild("HumanoidRootPart")
            local tool = char and char:FindFirstChild("Infinity Gauntlet")
            if not (root and tool) then return end
            for _, npc in ipairs(Workspace.Enemies:GetChildren()) do
                local eRoot = npc:FindFirstChild("HumanoidRootPart")
                local hum = npc:FindFirstChildWhichIsA("Humanoid")
                if eRoot and hum and hum.Health > 0 then
                    root.CFrame = eRoot.CFrame * CFrame.new(0, 0, 2)
                    tool:Activate()
                    task.wait(0.02)
                end
            end
        end)
        task.wait(0.05)
    end
end)

print("[Thanos Sim] Damage aura active — use executor stop to disable")

Full Feature Script Hub

Complete utility hub with fragment farm toggle, Celestial Forge kill display, and quick travel to Catacombs and Lunar World.

Funktionen

  • Fragment farm mode
  • Kill counter display
  • Zone teleports
  • Item equip all
-- Infinity Gauntlet | Thanos Simulator — Full Feature Hub
if game.PlaceId ~= 3261957210 then return end

local Players = game:GetService("Players")
local LP = Players.LocalPlayer
local Workspace = game:GetService("Workspace")

local Rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))()
local Window = Rayfield:CreateWindow({
    Name = "IGTS Full Hub",
    LoadingTitle = "Full Feature Hub",
    LoadingSubtitle = "Infinity Gauntlet Thanos Simulator",
    ConfigurationSaving = { Enabled = false },
    KeySystem = false,
})

local Tab = Window:CreateTab("Utilities", 4483362458)
Tab:CreateSection("Travel")

local zones = {
    { Name = "Spawn Area", Pos = CFrame.new(0, 5, 0) },
    { Name = "The Forge", Pos = CFrame.new(100, 10, 50) },
    { Name = "Space Mountain", Pos = CFrame.new(-600, 80, -600) },
    { Name = "Catacombs Entry", Pos = CFrame.new(-100, 5, 100) },
}

for _, zone in ipairs(zones) do
    Tab:CreateButton({
        Name = "Teleport: " .. zone.Name,
        Callback = function()
            local root = LP.Character and LP.Character:FindFirstChild("HumanoidRootPart")
            if root then root.CFrame = zone.Pos end
        end,
    })
end

Tab:CreateSection("Items")
Tab:CreateButton({
    Name = "Equip All Backpack Tools",
    Callback = function()
        local char = LP.Character
        if not char then return end
        for _, item in ipairs(LP.Backpack:GetChildren()) do
            if item:IsA("Tool") then item.Parent = char task.wait(0.1) item.Parent = LP.Backpack end
        end
    end,
})

Tab:CreateSection("Farm")
local tplarFarm = false
Tab:CreateToggle({
    Name = "Templar Fragment Farm",
    CurrentValue = false,
    Callback = function(v)
        tplarFarm = v
        if v then
            task.spawn(function()
                while tplarFarm do
                    pcall(function()
                        for _, e in ipairs(Workspace.Enemies:GetChildren()) do
                            if not tplarFarm then break end
                            local h = e:FindFirstChildWhichIsA("Humanoid")
                            if h and h.Health > 0 then
                                local r = LP.Character and LP.Character:FindFirstChild("HumanoidRootPart")
                                local er = e:FindFirstChild("HumanoidRootPart")
                                if r and er then
                                    r.CFrame = er.CFrame * CFrame.new(0, 0, 3)
                                    local t = LP.Character:FindFirstChildOfClass("Tool")
                                    if t then t:Activate() end
                                end
                            end
                            task.wait(0.03)
                        end
                    end)
                    task.wait(0.1)
                end
            end)
        end
    end,
})

Rayfield:Notify({ Title = "Full Hub Ready", Content = "All features loaded.", Duration = 5 })

Wichtiger Hinweis

Die Nutzung von Drittanbieter-Scripts verstößt gegen die Roblox-Nutzungsbedingungen und kann zu dauerhaften Account-Sperren oder Malware führen. Nutzung auf eigenes Risiko.

Häufig gestellte Fragen

Brauche ich einen Executor, um diese Scripts auszuführen?

Ja. Scripts sind Lua-Code und benötigen einen Roblox-Script-Executor, um im Spielclient injiziert und ausgeführt zu werden.

Werde ich wegen Scripts gebannt?

Scripts verstoßen gegen die Roblox-Nutzungsbedingungen. Account-Bans sind möglich, besonders bei offensichtlichem Exploit-Verhalten wie Instant-Kill-Manipulation.

Welches Script ist am besten zum Kill-Farmen?

Das Auto-Farm- und GUI-Hub-Script bietet toggle-basiertes NPC-Farming mit optionalem God Mode. Das Damage-Aura-Script liefert eine leichtgewichtige Kill-Schleife ohne GUI.

Können Scripts mir alle Infinity Stones geben?

Scripts können zu Stone-Standorten teleportieren und NPC-Kills beschleunigen, aber der Soul Stone hängt weiterhin von einer server-validierten 0,33%-Drop-Rate ab.

Funktionieren Scripts auf Mobile?

Als Mobile Ready markierte Scripts sind für mobile Executors designed. PC-Executors bieten meist bessere Stabilität für GUI-basierte Hubs.

Ähnliche Seiten