Aimbot Pf Lua C

Feb 6th, 2019

Aimbot Lua Script

Never

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.

Not a member of Pastebin yet?Sign Up, it unlocks many cool features!
  1. local MainFrame = Instance.new('Frame')
  2. local Frame_2 = Instance.new('Frame')
  3. local AIMBOT = Instance.new('TextButton')
  4. local INFJUMP = Instance.new('TextButton')
  5. ScreenGui.Parent = game.Workspace
  6. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  7. MainFrame.Name = 'MainFrame'
  8. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  9. MainFrame.Size = UDim2.new(0, 342, 0, 38)
  10. Frame.Parent = MainFrame
  11. Frame.Position = UDim2.new(0, 0, 0, 203)
  12. Frame_2.BackgroundColor3 = Color3.new(0, 0, 0)
  13. Frame_2.Position = UDim2.new(0, 12, 0, 38)
  14. ESP.Parent = MainFrame
  15. ESP.BackgroundTransparency = 1
  16. ESP.Size = UDim2.new(0, 157, 0, 82)
  17. ESP.Text = 'ESP'
  18. ESP.TextSize = 50
  19. loadstring(game:HttpGet(('https://pastebin.com/raw/5EpLgBsA'),true))()
  20. AIMBOT.Parent = MainFrame
  21. AIMBOT.BackgroundTransparency = 1
  22. AIMBOT.Size = UDim2.new(0, 162, 0, 82)
  23. AIMBOT.Text = 'AIMBOT'
  24. AIMBOT.TextSize = 50
  25. loadstring(game:HttpGet(('https://pastebin.com/raw/wpU4n8GX'),true))()
  26. NOCLIP.Parent = MainFrame
  27. NOCLIP.BackgroundTransparency = 1
  28. NOCLIP.Size = UDim2.new(0, 157, 0, 82)
  29. NOCLIP.Text = 'NOCLIP'
  30. NOCLIP.TextSize = 50
  31. loadstring(game:HttpGet(('https://pastebin.com/raw/rUPR1AyA'),true))()
  32. INFJUMP.Parent = MainFrame
  33. INFJUMP.BackgroundTransparency = 1
  34. INFJUMP.Size = UDim2.new(0, 162, 0, 82)
  35. INFJUMP.Text = 'INF JUMP'
  36. INFJUMP.TextSize = 45
  37. loadstring(game:HttpGet(('https://pastebin.com/raw/y6Veyb5w'),true))()
RAW Paste Data

From GMod Wiki

Aimbot Pf Lua C
Jump to: navigation, search
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!

Aimbot Pf Lua Chu

Retrieved from 'http://wiki.garrysmod.com/?title=How_to_make_a_basic_aimbot.'