hacker6999 Posted June 5, 2023 Posted June 5, 2023 So I want to make seekbar/slider that will perform multiple hacks like the speed seek bar in mod menus
hacker6999 Posted June 6, 2023 Author Posted June 6, 2023 10 hours ago, HEROGAMEOfficial said: Then t = gg.prompt({"Speed: [1;2]"}, {1,2}, {"number"}) if t == nil then alert("") else if t == 1 then gg.alert("speed 1") end if t == 2 then gg.alert("speed 2") end
MonkeySAN Posted June 7, 2023 Posted June 7, 2023 t = gg.prompt({"Speed: [1;2]"}, {nil}, {"number"}) if t == nil then gg.alert("Canceled") elseif tonumber(t[1]) == 1 then gg.alert("speed 1") elseif tonumber(t[1]) == 2 then gg.alert("speed 2") end
hacker6999 Posted June 7, 2023 Author Posted June 7, 2023 4 hours ago, MonkeySAN said: t = gg.prompt({"Speed: [1;2]"}, {nil}, {"number"}) if t == nil then gg.alert("Canceled") elseif tonumber(t[1]) == 1 then gg.alert("speed 1") elseif tonumber(t[1]) == 2 then gg.alert("speed 2") end Thats nice but how do we turn it off like if I on speed 2 and then on speed 3 so I want 2 to automatically get off
Question
hacker6999
So I want to make seekbar/slider that will perform multiple hacks like the speed seek bar in mod menus
7 answers to this question
Recommended Posts
Archived
This topic is now archived and is closed to further replies.