Aimbot Pf Lua C
Aimbot Lua Script
Here is the 3rd version for the roblox hack! A simple roblox script, took 3 days to make, if you wanna copy some of my work, Please credit me! GitHub Gist: instantly share code, notes, and snippets.
- local MainFrame = Instance.new('Frame')
- local Frame_2 = Instance.new('Frame')
- local AIMBOT = Instance.new('TextButton')
- local INFJUMP = Instance.new('TextButton')
- ScreenGui.Parent = game.Workspace
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- MainFrame.Name = 'MainFrame'
- MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
- MainFrame.Size = UDim2.new(0, 342, 0, 38)
- Frame.Parent = MainFrame
- Frame.Position = UDim2.new(0, 0, 0, 203)
- Frame_2.BackgroundColor3 = Color3.new(0, 0, 0)
- Frame_2.Position = UDim2.new(0, 12, 0, 38)
- ESP.Parent = MainFrame
- ESP.BackgroundTransparency = 1
- ESP.Size = UDim2.new(0, 157, 0, 82)
- ESP.Text = 'ESP'
- ESP.TextSize = 50
- loadstring(game:HttpGet(('https://pastebin.com/raw/5EpLgBsA'),true))()
- AIMBOT.Parent = MainFrame
- AIMBOT.BackgroundTransparency = 1
- AIMBOT.Size = UDim2.new(0, 162, 0, 82)
- AIMBOT.Text = 'AIMBOT'
- AIMBOT.TextSize = 50
- loadstring(game:HttpGet(('https://pastebin.com/raw/wpU4n8GX'),true))()
- NOCLIP.Parent = MainFrame
- NOCLIP.BackgroundTransparency = 1
- NOCLIP.Size = UDim2.new(0, 157, 0, 82)
- NOCLIP.Text = 'NOCLIP'
- NOCLIP.TextSize = 50
- loadstring(game:HttpGet(('https://pastebin.com/raw/rUPR1AyA'),true))()
- INFJUMP.Parent = MainFrame
- INFJUMP.BackgroundTransparency = 1
- INFJUMP.Size = UDim2.new(0, 162, 0, 82)
- INFJUMP.Text = 'INF JUMP'
- INFJUMP.TextSize = 45
- loadstring(game:HttpGet(('https://pastebin.com/raw/y6Veyb5w'),true))()
From GMod Wiki

How to make a basic Aimbot. |
Description: | This tutorial will show you how to make a basic aimbot. For educational purposes only. |
Original Author: | Shen |
Created: | September 26, 2010 |
I remind you this tutorial is only for educational purposes. |
For this tutorial you need a brain, some lua knowledge and some maths.
Creating the .lua file
I'd recommend you to create the lua file in garrysmod/lua folder instead of garrysmod/lua/autorun/client because it is possible that you can type mistakes, and in that case you have to restart GMod. Name your script 'aimbot.lua'Let's start coding, shall we?
Okay so we just created the function but it is not completed, we just added some basics needed for the aimbot to function correctly.'trace' basically gets where the player is aiming and 'traceRes' uses 'trace' to draw a line from the player to infinity or a wall.
If in any case the player aims at something at isn't the map, the script will save it as 'target' and checks next is 'target' is a player, if that is the case, the script gets the head of the player, its position and angle and sets the user's view at the head of the target.Finally, we add the hook which will spam the aimbot function until it finds something.
Testing
So now, you just created your first aimbot, but you need to run it. You may want to create a multiplayer game, open the console (~) and type 'bot' to add a bot. Next, type in 'lua_openscript_cl aimbot.lua'. I precise you can also rename the script but you also have to change 'aimbot' into the new name.And, finally, aim at the bot and you will automatically snap!
Other
You may also change the bone setting 'ValveBiped.Bip01_Head1' to another bone like..
Also, make sure you write the bones correctly because Garry's Mod crashes when a bone doesn't exists when it's called.
Here is the whole script if you are the lazy kind.
Enjoy!