print(Input.Down.F, Input.Down.LeftControl, input.down.leftcontrol, Input.Down.m0, Input.Down.Mouse1)Return: true or false if a key is down, see https://developer.roblox.com/en-us/api-reference/enum/KeyCode for KeyCode list 
Note: Also has the ability to check if a mouse button is pressed, pass m0 or mouse0 to check if the left mouse button is pressed. This is not available for keybinds
Executes on key release
Input:Bind('V', function()
    print(Input.Down.LeftControl and 'Control + V Pressed/Up' or 'V Pressed/Up')
end)Executes on key down
Input:Bind('V', function()
    print(Input.Down.LeftControl and 'Control + V Down' or 'V Down')
end)Executes while key is pressed
Input:WhilePressed('V', function(DT)
    print('V is being held. Time since last execute: ' .. DT)
end, 1)Executes once a set of specific keys is pressed
Input:KeywordBind('rejoin', function()
    game:GetService'TeleportService':TeleportToPlaceInstance(game.PlaceId, game.JobId)
end)Unbinds a keybind, doesn't work for KeywordBinds
Input:Unbind('V')All these functions are put into the global environment, meaning they can be called without 'Miscellaneous.' before them
Return: However long a function took to complete in seconds up to 20 decimal points
print(Benchmark('Test', function()
    for Index = 1, 10000 do
        workspace:GetDescendants()
    end
end))-> Task Test took 0.45830060000025696354 seconds to complete
Beep(1)
task.delay(1, Beep) -- No parameters or false will play a slow beep indicating something is turned off
Input:Bind('V', Beep)Rejoins the specific server you are in
Rejoin()Kicks you from your current server, closes roblox if Shutdown is true
Disconnect(true)This autoexec script overwrites the existing setclipboard to support mulitple parameters and automatically tostrings the provided parameters
setclipboard(workspace, 'joe')Result: Workspace joe
Prints provided parameters to console with timestamps using rconsoleprint
cprint('joe', workspace, 1, true, Locals.Character)Result: [08:31:35] joe Workspace 1 true Player 
Note: Set getgenv().RedirectPrints to true to redirect all normal print calls to cprint
Prints a CFrame into console using cprint in script format allowing for quick copy pasting of positions
cfprint(CFrame.new(19.6, 73.4, 103.9, 0.7, 0, 0.6, 0, 1, 0, 0.65, 0, 0.7))Result:
CFrame.new(19.600, 73.400, 103.900) * CFrame.Angles(math.rad(-0.00), math.rad(36.87), math.rad(-0.00))