RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make me a aimbot for arsenal and auto lock and auto amomo"
-- ScripterAI can only help with scripting as of now so here's a script for the aimbot system local Player = game:GetService("Players").LocalPlayer local Mouse = Player:GetMouse() local Character = Player.Character local Humanoid = Character:FindFirstChild("Humanoid") local function aimbot() local target = workspace:FindFirstChild("Target") if target then local targetPosition = target.Position local characterPosition = Character.Head.Position local direction = (targetPosition - characterPosition).Unit local look = CFrame.new(characterPosition, targetPosition) Humanoid:SetManualCFrame(look) Mouse.Button1Down:Connect(function() Character:Move(direction * 50) end) end end game:GetService("RunService").RenderStepped:Connect(aimbot)