Agile98 Posted Saturday at 04:22 PM Posted Saturday at 04:22 PM (edited) I want Script for seting game speed 1 times for 15 seconds then game speed 5 times for 6 minutes and make loop to to change speed 1 and 5 indefinitely Edited Saturday at 04:23 PM by Agile98 correction
0 CmP Posted 7 hours ago Posted 7 hours ago Not very clear description, see yourself whether the following does what you want: local function setSpeedForSeconds(speed, seconds) gg.setSpeed(speed) gg.sleep(seconds * 1000) end while true do setSpeedForSeconds(1, 15) setSpeedForSeconds(5, 360) end
Question
Agile98
I want Script for seting game speed 1 times for 15 seconds
then
game speed 5 times for 6 minutes
and make loop to to change speed 1 and 5 indefinitely
Edited by Agile98correction
1 answer to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now