Windowsdriverkit On Discord
Windowsdriverkit On Discord
getgenv().Aimbot = {
Status = true,
Keybind = 'C',
Hitpart = 'HumanoidRootPart',
['Prediction'] = {
X = 0.165,
Y = 0.1,
},
}
if getgenv().AimbotRan then
return
else
getgenv().AimbotRan = true
end
-- make it reexecutable to update settings
RunService.RenderStepped:Connect(function()
if not Player then
return
end
if not Aimbot.Status then
return
end
local Hitpart = Player.Character:FindFirstChild(Aimbot.Hitpart)
if not Hitpart then
return
end
Camera.CFrame = CFrame.new(Camera.CFrame.Position, Hitpart.Position +
Hitpart.Velocity * Vector3.new(Aimbot.Prediction.X, Aimbot.Prediction.Y,
Aimbot.Prediction.X))
end)