Jump to content

Sky Slate Blueberry Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate
Photo

I need help with making this script toggle-able


  • Please log in to reply
1 reply to this topic
MonkeyMuffins
  • Members
  • 1 posts
  • Last active: Oct 24 2015 04:22 AM
  • Joined: 24 Oct 2015
*space::
Loop
{
GetKeyState,state,space,P
if state = U
break
 
Send,{space}
Sleep,20
}
return
 
This is a Bunny Hopping script I've found for CS:GO.
I'd like to make it so if I click a button (probably mouse3) it will toggle the script on / off. Please help me, Thank you!


YOUCEFHam
  • Members
  • 182 posts
  • Last active: Aug 16 2016 12:53 AM
  • Joined: 14 Oct 2014

Hello Try this
 

toggle = 0

F8::
toggle := !toggle
Sleep, 250
return

#if toggle

*space::
Loop
{
	Send,{space}
	Sleep,20
}until !GetKeyState("space","P")
return

#if