2xEXP Secret Hatsu Hunter X Anomaly script

Photo of author
Published by

The 2xEXP Secret Hatsu Hunter X Anomaly script for Roblox is a powerful tool that enhances your gaming experience by boosting your in-game progress. This script is particularly designed for players who wish to level up faster and enjoy additional features seamlessly.

Benefits of 2xEXP Secret Hatsu Hunter X Anomaly Script

Using this script provides several advantages, significantly enhancing your gameplay. Some of the key benefits include:

  • Faster Progression: Earn double the experience points (EXP), allowing you to level up at twice the speed.
  • Enhanced Gameplay: Access secret Hatsu abilities that give you an edge over other players.
  • Time Efficiency: Spend less time grinding and more time enjoying the advanced stages of the game.

Features that make this 2xEXP Secret Hatsu Hunter X Anomaly script so powerful

With its many strong features, the 2xEXP Secret Hatsu Hunters X Anomaly script enhances and streamlines your gaming experience. Here are a few of the primary attributes:

  • Auto Pushup: Automatically perform pushups to increase your character’s strength and stamina without manual effort.
  • Auto Clan Roll: Automatically roll for clans, saving you time and effort in finding the best clan for your character.
  • Auto Potential Roll: Automatically roll for potential, ensuring your character gets the best possible attributes.
  • Give Money: Easily give money to your character to buy necessary items and upgrades.

Finally, for any serious player wishing to improve their gaming experience, the 2xEXP Secrets Hatsu Hunter X Anomaly script is a need. You may take advantage of more effective and captivating gameplay thanks to its automated capabilities, enhanced experience gain, and other potent tools. With the 2xEXP Secret Hatsu Hunters X Anomaly script, you may now realize the full potential of your game!

Code:

--[[
game:GetService("ReplicatedStorage").RerollEvents.NenColorReroll:FireServer()
game:GetService("ReplicatedStorage").RerollEvents.HatsuReroll:FireServer()
]]
--[[
]]
--// REPO
local repo = 'https://raw.githubusercontent.com/violin-suzutsuki/LinoriaLib/main/'
--// REPO DEFINES
local lib = loadstring(game:HttpGet(repo .. 'Library.lua'))()
local themeManager = loadstring(game:HttpGet(repo .. 'addons/ThemeManager.lua'))()
local saveManager = loadstring(game:HttpGet(repo .. 'addons/SaveManager.lua'))()
--// WINDOW DEFINE
local window = lib:CreateWindow({
    Title = "Eclipse | Hunter X Anomaly",
    Center = true,
    AutoShow = true,
    TabPadding = 8,
    MenuFadeTime = 0.2
})
--// TAB DEFINES
local tabs = {
    main = window:AddTab('Main'),
    farming = window:AddTab('Farming'),
    rolling = window:AddTab('Rolling'),
    uiSettings = window:AddTab("UI Settings")
}
--// VARIABLES
local Players = game:GetService("Players")
local localPlayer = Players.LocalPlayer
local character = localPlayer.Character
local lastSpinTime = 0
--// FUNCTIONS
function extractClan(inputString)
    local namePart = string.match(inputString, "^(.+),")
    if not namePart then
        return nil, "Invalid format. Expected format: 'Name , Age'"
    end
    namePart = string.gsub(namePart, "^%s*(.-)%s*$", "%1")
    return string.match(namePart, "%S+$"), nil
end
function createSafeZone()
    local safeZone = Instance.new("Part", workspace)
    safeZone.Name = "safeZone"
    safeZone.Anchored = true
    safeZone.CanCollide = true
end
--// BOX DEFINES
local mainBox = tabs.main:AddLeftGroupbox('Main')
local farmingPushups = tabs.farming:AddLeftGroupbox('Pushups')
local rollingClan = tabs.rolling:AddLeftGroupbox('Clan')
local rollingPotential = tabs.rolling:AddRightGroupbox('Potential')
local rollingMoney = tabs.rolling:AddLeftGroupbox('Money')
--// MAIN DEFINES
--[[
mainBox:AddButton({
    Text = "Goto Safezone",
    Func = function()
        createSafeZone()
    end
})
]]
--// PUSHUPS DEFINES
farmingPushups:AddToggle('farmPushups', {
    Text = "Do Pushups",
    Default = false,
    Callback = function(Value)
    end
})
farmingPushups:AddButton({
    Text = "Do Pushup",
    Func = function(Value)
        local key = game:GetService("Players").LocalPlayer.PlayerGui.PushupsGui.Pushups.Button.Text
        game:GetService("Players").LocalPlayer:FindFirstChild("PlayerGui"):FindFirstChild("PushupsGui"):FindFirstChild("Pushups"):WaitForChild("RemoteEvent"):FireServer(Enum.KeyCode[key])
    end
})
--// CLAN DEFINES
rollingClan:AddToggle('clanRoll', {
    Text = "Roll Clan",
    Default = false,
    Callback = function(Value)
    end
})
rollingClan:AddDropdown('chosenClan', {
    Values = { 'Freecss', 'Zoldyck', 'Lucilfer', 'Netero', 'Kurta', 'Kreuger' },
    Default = 1,
    Multi = false,
    Text = "Clan to spin for",
    Callback = function(Value)
    end
})
--// POTENTIAL DEFINES
rollingPotential:AddToggle('potentialRoll', {
    Text = "Roll Potential",
    Default = false,
    Callback = function(Value)
    end
})
rollingPotential:AddSlider('potentialValue', {
    Text = "Potential to roll for",
    Default = 0,
    Min = 0,
    Max = 100,
    Rounding = 0,
    Compact = false,
    Callback = function(Value)
    end
})
--// MONEY SHIT
rollingMoney:AddButton({
    Text = "Give Money",
    Func = function()
        game:GetService("ReplicatedStorage").RerollEvents.RandomMoney:FireServer()
    end
})
--// SETTINGS DEFINE
local MenuGroup = tabs.uiSettings:AddLeftGroupbox('Menu')
MenuGroup:AddButton('Unload', function() lib:Unload() end)
MenuGroup:AddLabel('Menu bind'):AddKeyPicker('MenuKeybind', { Default = 'End', NoUI = true, Text = 'Menu keybind' })
lib.ToggleKeybind = Options.MenuKeybind
themeManager:SetLibrary(lib)
saveManager:SetLibrary(lib)
saveManager:IgnoreThemeSettings()
saveManager:SetIgnoreIndexes({ 'MenuKeybind' })
themeManager:SetFolder('Eclipse')
saveManager:SetFolder('Eclipse/HunterXAnomaly')
saveManager:BuildConfigSection(tabs.uiSettings)
themeManager:ApplyToTab(tabs.uiSettings)
local CreditsGroup = tabs.uiSettings:AddRightGroupbox('Credits')
CreditsGroup:AddLabel("Created by Kokuen")
CreditsGroup:AddLabel("UI by Linoria")
saveManager:LoadAutoloadConfig()
local toggleConnections = game:GetService('RunService').RenderStepped:Connect(function()
    if Toggles.farmPushups.Value then
        local key = game:GetService("Players").LocalPlayer.PlayerGui.PushupsGui.Pushups.Button.Text
        if key ~= "..." then
            game:GetService("Players").LocalPlayer:FindFirstChild("PlayerGui"):FindFirstChild("PushupsGui"):FindFirstChild("Pushups"):WaitForChild("RemoteEvent"):FireServer(Enum.KeyCode[key])
        end
    end
    if Toggles.clanRoll.Value then
        local clan = extractClan(game:GetService("Players").LocalPlayer.PlayerGui.MainGUI.Main.NameAge.Text)
        local currentTime = tick()
        if clan ~= Options.chosenClan.Value then
            if currentTime - lastSpinTime >= 0.2 then
                lastSpinTime = currentTime
                game:GetService("ReplicatedStorage").RerollEvents.ClanReroll:FireServer()
            end
        end
    end
    if Toggles.potentialRoll.Value then
        local potential = game:GetService("Players").LocalPlayer.PlayerGui.StatsViewer.StatsViewer.NaturalPotential.Text
        local currentTime = tick()
        if tonumber(potential) ~= Options.potentialValue.Value then
            if currentTime - lastSpinTime >= 0.2 then
                lastSpinTime = currentTime
                game:GetService("ReplicatedStorage").RerollEvents.PotReroll:FireServer()
            end
        end
    end
end)
lib:OnUnload(function()
    toggleConnections:Disconnect()
    print('Unloaded.')
    lib.Unloaded = true
end)

Copying and Using the Script

  • Access the Script: Click the button above to access the script.
  • Copying the Code: Select and copy the entire script code.
  • Applying the Script: Use a script executor of your choice to implement the script in the game.
Click to rate this script!
[Total: 0 Average: 0]

Leave a Comment