Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local user = game:GetService("UserInputService")
- user.InputBegan:Connect(function(what, good)
- if not good then
- if what.UserInputType == Enum.UserInputType.MouseButton2 then
- Aimbot.Enabled = false
- elseif what.KeyCode == Enum.KeyCode.LeftControl then
- Aimbot.TriggerBot = not Aimbot.TriggerBot
- end
- end
- end)
- user.InputEnded:Connect(function(what, good)
- if not good then
- if what.UserInputType == Enum.UserInputType.MouseButton2 then
- Aimbot.Enabled = true
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement