Functions: Picks up an item on mouse hover

Installation guide:Copy the script from the button below.Run any Injector (We recommend KRNL Injector)Install it, insert the script and click executeEnjoy it)
Thank you for using our website
Your script:
local Mouse = game:GetService("Players").LocalPlayer:GetMouse()
local Toggled = false
-- Settings
local Keybind = "v" -- keybind to toggle
-- stuff
Mouse.KeyDown:Connect(function(Key)
if Key == Keybind then
if Toggled then
Toggled = false
else
Toggled = true
while Toggled and wait() do
keypress(0x46)
wait()
keyrelease(0x46)
wait()
end
end
end
end)

Leave a Comment