require("cvar3")
local cheats = GetConVar("sv_cheats")
cheats:SetValue(1)
LocalPlayer():EmitSound("UI/buttonclick.wav", 500, 100)
function Speed()
local timescale = GetConVar("host_timescale")
timescale:SetValue(10)
end
function OffSpeed()
local timescale = GetConVar("host_timescale")
timescale:SetValue(1)
end
concommand.Add("+speedh", Speed)
concommand.Add("-speedh", OffSpeed)