
// Created by Sparkington @ mpgh.net \\
LocalPlayer():ChatPrint("Reggins Script Initialized")
print("Bhop script loaded sucessfully!")
hook.Add("Think", "hop", function()
if LocalPlayer():IsOnGround() then
if LocalPlayer():IsOnGround() then
RunConsoleCommand("+jump")
HasJumped = 1
else
RunConsoleCommand("-jump")
HasJumped = 0
end
if (input.IsKeyDown( KEY_SPACE ) ) then
concommand.Add("bhop_toggle", function()
if bhop then
bhop = !bhop
LocalPlayer():ChatPrint("Off")
else
bhop = !bhop
LocalPlayer():ChatPrint("On")
end
end)
