local label_space = ui.add_label("Space")
local hotkey_space = ui.add_hotkey("Space")
function staticlegs()
local entity_get_client_entity = entity_list.get_client_entity
get_local_player = entity_get_client_entity(engine.get_local_player())
local get_m_fFlags = get_local_player:get_prop("DT_CSPlayer", "m_fFlags")
if hotkey_space:get() then
get_m_fFlags:set_float(1.0)
end
end
callbacks.register("post_move", staticlegs)