Coder Social home page Coder Social logo

exunys / wall-hack Goto Github PK

View Code? Open in Web Editor NEW
10.0 1.0 10.0 105 KB

ROBLOX Script - Collection of visuals / wall hacks (Tracers, ESP, Boxes (2D & 3D), Head Dots & Crosshair)

License: Creative Commons Zero v1.0 Universal

Lua 100.00%
lua roblox wallhack visuals esp tracers boxes headdots crosshair

wall-hack's Introduction

Wall Hack

Information

ℹ️This repository is discontinued. Use the new script AirHub.

This project represents a collection of visuals / wall hacks (Tracers, ESP, Boxes (2D & 3D), Head Dots & Crosshair). This script is also undetected because it uses Synapse X's Drawing Library.

Update Log

[2/3/2022]

  • Fixed Alive & Team Check
  • Optimized Source Even More
  • Replaced Crosshair with new Crosshair V2
  • Fixed some other minor bugs

License

This project is completely free and open sourced. But, that does not mean you own rights to it. Read this document for more information. You can re-use / stitch this script or any system of this project into any of your repositories, as long as you credit the developer Exunys.

Notices

  • This script will not run unless your exploit supports / includes these following functions / libraries:
    • isfolder(), makefolder() & delfolder()
    • isfile(), writefile() & delfile()
    • Drawing
    • getgenv()
    • syn.queue_on_teleport()
  • This script will store your changed settings every 10 seconds passed or upon leaving. You can also disable this feature, tutorial on how will appear later on in this document.
  • This script is indeed universal, but it might not run on games with specific character constructions (custom characters).
  • A recommended exploit to run this script on is Synapse X.

Environment

The script's environment is stored as:

getgenv().WallHack

More on how to configure the visuals below this part.

Configuration

This script includes settings which can be easily configured to your preference.

Preview Of The Settings

getgenv().WallHack.Visuals = {
    ESPSettings = {
        Enabled = true,
        TextColor = "20, 90, 255",
        TextSize = 14,
        Center = true,
        Outline = true,
        OutlineColor = "0, 0, 0",
        TextTransparency = 0.7,
        TextFont = Drawing.Fonts.Monospace, -- UI, System, Plex, Monospace
        DisplayDistance = true,
        DisplayHealth = true,
        DisplayName = true
    },

    TracersSettings = {
        Enabled = true,
        Type = 1, -- 1 - Bottom; 2 - Center; 3 - Mouse
        Transparency = 0.7,
        Thickness = 1,
        Color = "50, 120, 255"
    },

    BoxSettings = {
        Enabled = true,
        Type = 1; -- 1 - 3D; 2 - 2D;
        Color = "50, 120, 255",
        Transparency = 0.7,
        Thickness = 1,
        Filled = false, -- For 2D
        Increase = 1
    },

    HeadDotSettings = {
        Enabled = true,
        Color = "50, 120, 255",
        Transparency = 0.5,
        Thickness = 1,
        Filled = true,
        Sides = 30,
        Size = 2
    }
}

getgenv().WallHack.Crosshair = {
  CrosshairSettings = {
    Enabled = true,
    Type = 1, -- 1 - Mouse; 2 - Center
    Size = 12,
    Thickness = 1,
    Color = "0, 255, 0",
    Transparency = 1,
    GapSize = 5,
    CenterDot = false,
    CenterDotColor = "0, 255, 0",
    CenterDotSize = 1,
    CenterDotTransparency = 1,
    CenterDotFilled = true
  },

  Parts = {
    LeftLine = getgenv().WallHack.Crosshair.CrosshairSettings.Parts.LeftLine,
    RightLine = getgenv().WallHack.Crosshair.CrosshairSettings.Parts.RightLine,
    TopLine = getgenv().WallHack.Crosshair.CrosshairSettings.Parts.TopLine,
    BottomLine = getgenv().WallHack.Crosshair.CrosshairSettings.Parts.BottomLine,
    CenterDot = getgenv().WallHack.Crosshair.CrosshairSettings.CenterDot
  }
}

getgenv().WallHack.Settings = {
    SendNotifications = true,
    SaveSettings = true, -- Re-execute upon changing
    ReloadOnTeleport = true,
    Enabled = true,
    TeamCheck = false,
    AliveCheck = true
}

Graphic View (Horizontal Tree Diagram)

image

  • You can also find the JSON format (which is the way they get stored) here.
  • The Lua format of the settings / the factory reset script can be found here. (The Main script must be ran in the background before executing this script)

By reading the visual representation of the configuration part of the environment table, it should be pretty easy to configure the script afterwards. Here are some examples:

Script Examples

The following script will disable the visuals temporarily:

getgenv().WallHack.Settings.Enabled = false

You can also change the color of some type of visual, say, tracers:

getgenv().WallHack.Visuals.TracersSettings.Color = "50, 255, 70" -- The colors must be fed as strings in RGB format. [(R)ed (0 - 255); (G)reen (0 - 255); (B)lue (0 - 255)]

The script only accepts RGB configurations in strings as colors, if you input anything else, the script will break and not execute. Read below on how to fix this.

You can also disable some visual incase you don't find it useful / don't need it:

getgenv().WallHack.Visuals.ESPSettings.Enabled = false

The options are endless, you can configure the visuals in any way you desire.

Read about the input types and more information about the drawing library in use for the visuals (to learn how to configure them) here.

Fixes

If the script is not running upon execution, try a few of the solutions below:

Solutions

  • There is possibly a configuration that is unacceptable at most cases. Execute this script and restart your game for changes to take effect.
  • Open your exploit's root folder, find a folder named workspace and look for a folder named Exunys Developer. Once you find it, delete this folder and restart your game.

If none of these solutions work, check if your exploit is supported (read the Notices part). If the script still doesn't work, contact Exunys & report the problem you are experiencing in detail.

Check if your exploit is supported here.

Functions

This script includes built-in functions to control the Wall Hack. The functions can be accessed by indexing Functions in the Environment. Example:

getgenv().WallHack.Functions

Their purposes

  • Functions:Exit()
    • Exits (unexecutes) the script and leaves no traces back.
  • Functions:Restart()
    • Restarts the script, good for incase the script starts lagging.
  • Functions:ResetSettings()
    • Factory resets the settings and wipes the previous ones that were saved to the workspace.
  • Exit
getgenv().WallHack.Functions:Exit()
  • Restart
getgenv().WallHack.Functions:Restart()
  • Reset Settings
getgenv().WallHack.Functions:ResetSettings()

Previews

Untitled

Untitled2

Settings for the picture above:

getgenv().WallHack.Visuals.ESPSettings.Enabled = false
getgenv().WallHack.Visuals.TracersSettings.Type = 3
getgenv().WallHack.Visuals.BoxSettings.Type = 2
getgenv().WallHack.Visuals.HeadDotSettings.Color = "255, 50, 50"
getgenv().WallHack.Visuals.BoxSettings.Color = "100, 255, 100"
getgenv().WallHack.Visuals.TracersSettings.Color = "150, 40, 60"

Untitled3

Settings for the picture above:

getgenv().WallHack.Visuals.ESPSettings.DisplayName = false
getgenv().WallHack.Visuals.ESPSettings.DisplayHealth = false
getgenv().WallHack.Visuals.ESPSettings.TextColor = "255, 50, 255"
getgenv().WallHack.Visuals.ESPSettings.Outline = false
getgenv().WallHack.Visuals.TracersSettings.Enabled = false
getgenv().WallHack.Visuals.BoxSettings.Type = 2
getgenv().WallHack.Visuals.HeadDotSettings.Color = "200, 50, 200"
getgenv().WallHack.Visuals.BoxSettings.Color = "200, 50, 200"
a1f78fbb225f69b4de7d60f8b71b560d.mp4

The video above presents the Environment.Functions:ResetSettings() function. Read the Functions part for more.

getgenv().WallHack.Functions:ResetSettings()
d1726f8c6a4d87c6a0142505bd59f798.mp4

The video above presents the Environment.Functions:Exit() function. Read the Functions part for more.

getgenv().WallHack.Functions:Exit()

Script

Load the script by copying it from here or by executing the code below.

--// Script

loadstring(game:HttpGet("https://raw.githubusercontent.com/Exunys/Wall-Hack/main/Resources/Scripts/Main.lua"))()

--// Variables

local Environment = getgenv().WallHack

--// Script / Global Settings

Environment.Settings.Enabled = true
Environment.Settings.TeamCheck = false
Environment.Settings.AliveCheck = true

--// Visuals Settings

Environment.Visuals.ESPSettings.Enabled = true
Environment.Visuals.TracersSettings.Enabled = true
Environment.Visuals.BoxSettings.Enabled = true
Environment.Visuals.HeadDotSettings.Enabled = true

--// Crosshair

Environment.Crosshair.CrosshairSettings.Enabled = true

Contact Information

wall-hack's People

Contributors

exunys avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.