NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io



--Aimbot Options
local AimbotEnabled=true
local NoKillList={Iogaann=true,WeLoveGlue=true,nevercatchfeelings=true}
local AimBotting=true
local AimAtTorso=false
local AimbotIgnoreWalls=true
local AimbotTeamCheck=false
local AimbotFriendCheck=true
local AimAhead=false--WIP. For games like Anarchy (Cannonical's).

local currchar

local uis = game:GetService("UserInputService")

function SetHatTrans(trans)
for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren())do
if v and v:IsA("Accessory")then
v.Handle.LocalTransparencyModifier = trans
end
end
end

--aimbot
do
if AimbotEnabled then
spawn(function()


print("Loading AimBot 1.0")



local cast=workspace.FindPartOnRayWithIgnoreList
local ray=Ray.new
local MAX_ITERATIONS=30
local function PiercingCast(p0,p1,ignore)
local Part
local i=0
repeat
i=i+1
local cond=(p1-p0).magnitude<999
Part,p0=cast(workspace,ray(p0,cond and p1-p0 or (p1-p0).unit*999),ignore)
if Part then
if Part.CanCollide==false or Part.Transparency==1 then
ignore[#ignore+1]=Part
Part=nil
end
elseif cond or i>MAX_ITERATIONS then
break
end
until Part
return Part,p0
end

local Camera=workspace.CurrentCamera
local Player=game.Players.LocalPlayer
local ptor=Player.Character.Torso
local canaim=true
local dist=0
game:GetService("RunService").RenderStepped:connect(function()
if canaim then
if AimBotting or AutoAimBot then
local p=game.Players:GetPlayers()
local d,t=-1
local c=Camera.CoordinateFrame
local tor
local enemyplr
local char
for i=1,#p do
local ch=p[i].Character
if p[i]~=Player
and ch:FindFirstChild("Humanoid")
and ch:FindFirstChild("Torso")
and ch.Humanoid.Health>0
and not (AimbotTeamCheck and Player.TeamColor==p[i].TeamColor or NoKillList[p[i].Name]) then
local tp=AimAtTorso and ch.Torso.Position or ch.Torso.CFrame*Vector3.new(0,1.5,0)
local HitPart=PiercingCast(c.p,tp,{Camera,Player.Character})
if not (AimbotIgnoreWalls and HitPart) or ch:IsAncestorOf(HitPart) then
local m=(tp-c.p).unit:Dot(c.lookVector)
if m==m and m>d then
d,t=m,tp
tor=ch.Torso
char=ch
enemyplr=p[i]
currchar=ch

end
end
end
end
if t then
-- local vel=(cf(tor.CFrame)):inverse()*(tor.Position+tor.Velocity)
--local offset=((Vector3.new((vel.x/10),0,math.min(math.max((vel.z/10),-1),1))))
if AimbotFriendCheck and Player:IsFriendsWith(enemyplr.UserId) then

else
if AimbotEnabled then
local mult=char.Humanoid:GetState()==Enum.HumanoidStateType.Seated and 6 or 5.25
local mult2=char.Humanoid:GetState()==Enum.HumanoidStateType.Seated and 2 or 1
local aheadoffset=((tor.Velocity)).unit*(mult)*mult2--((tor.Velocity*50)).unit*mult
--aheadoffset=AimAhead and aheadoffset or Vector3.new(0,0,0)
if AimAhead and (tor.Velocity*Vector3.new(1,0,1)).magnitude>0.1 then
Camera.CoordinateFrame=CFrame.new(Camera.Focus.p,t+aheadoffset)*CFrame.new(0,0,0.5)
else
Camera.CoordinateFrame=CFrame.new(Camera.Focus.p,t)*CFrame.new(0,0,0.5)
end
dist=((tor.CFrame.p-ptor.CFrame.p).magnitude)
end
end
end
SetHatTrans(1)
uis.MouseBehavior = "LockCenter"
else
SetHatTrans(0)
--uis.MouseBehavior = "Default"
end
end
end)

local Hint=Camera:FindFirstChild("Message") or Instance.new("Hint",Camera)

local m=Player:GetMouse()
m.Button2Down:connect(function()
AimBotting=true
print("AimBotting")
end)
m.Button2Up:connect(function()
AimBotting=false
print("Idle")
end)

m.KeyDown:connect(function(k)
if not canaim then return end
if k=="b" then
AimAtTorso=not AimAtTorso
print("Aiming for:",AimAtTorso and "Torso" or "Head")
elseif k=="n" then
AimbotIgnoreWalls=not AimbotIgnoreWalls
print("RayCastCheck:",AimbotIgnoreWalls)
elseif k=="m" then
AimbotTeamCheck=not AimbotTeamCheck
print("AimbotTeamCheck:",AimbotTeamCheck)
elseif k=="k" then
AutoAimBot=not AutoAimBot
print("AutoAimBot:",AutoAimBot)
elseif k=="h" and Player.Character:FindFirstChild("Humanoid") then
local h=Player.Character.Humanoid
h.Health=h.MaxHealth
elseif k:lower()=='p'then
canaim=false
dist=0
script:Destroy()
script.Disabled=true
elseif k:lower()=='f'then
AimbotFriendCheck=not AimbotFriendCheck
elseif k:lower()=='j'then
AimAhead=not AimAhead
elseif k:lower()=='z'then
canaim=not canaim
end
Hint.Parent=Camera
Hint.Text="Aiming part: "..(AimAtTorso and "Torso" or "Head").." RayCastCheck: "..tostring(AimbotIgnoreWalls).." AimbotTeamCheck: "..tostring(AimbotTeamCheck).." AutoAimBot: "..tostring(AutoAimBot)..' Friend Check: '..tostring(AimbotFriendCheck)..' Aim Ahead: '..tostring(AimAhead)..' Dist: '..tostring(dist)
end)

print("Loaded AimBot 1.0")

return true
end)
end
end
     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.