Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- example:
- local movements = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 } -- diffrent movement types
- local function move1( )
- RunConsoleCommand( "+forward" )
- LocalPlayer():ConCommand( "act cheer" )
- timer.Simple( .5, function( )
- RunConsoleCommand( "-forward" )
- end )
- end
- local function move2( )
- RunConsoleCommand( "+left" )
- RunConsoleCommand( "+back" )
- LocalPlayer():ConCommand( "act laugh" )
- timer.Simple(.5, function()
- RunConsoleCommand( "-left" )
- RunConsoleCommand( "-back" )
- end )
- end
- local function move3( )
- RunConsoleCommand( "+back" )
- LocalPlayer():ConCommand( "act muscle" )
- timer.Simple( .5, function( )
- RunConsoleCommand( "-back" )
- end )
- end
- local function move4( )
- RunConsoleCommand( "+right" )
- RunConsoleCommand( "+forward" )
- LocalPlayer():ConCommand( "act robot" )
- timer.Simple( .5, function( )
- RunConsoleCommand( "-right" )
- RunConsoleCommand( "-forward" )
- end )
- end
- local function move5( )
- RunConsoleCommand( "+moveright" )
- LocalPlayer():ConCommand( "act zombie" )
- timer.Simple( .5, function( )
- RunConsoleCommand( "-moveright" )
- end )
- end
- local function move6( )
- RunConsoleCommand( "+back" )
- LocalPlayer():ConCommand( "act robot" )
- timer.Simple( .5, function( )
- RunConsoleCommand( "-back" )
- end )
- end
- local function move7( )
- RunConsoleCommand( "+right" )
- RunConsoleCommand( "+moveleft" )
- timer.Simple( .5, function( )
- RunConsoleCommand( "-right" )
- RunConsoleCommand( "-moveleft" )
- LocalPlayer():ConCommand( "act dance" )
- end )
- end
- local function move8( )
- RunConsoleCommand( "+jump" )
- RunConsoleCommand( "+duck" )
- timer.Simple( .5, function( )
- RunConsoleCommand( "-jump" )
- RunConsoleCommand( "-duck" )
- LocalPlayer():ConCommand( "act agree" )
- end )
- end
- local function move9( )
- RunConsoleCommand( "+attack" )
- LocalPlayer():ConCommand( "act becon" )
- timer.Simple( .5, function( )
- RunConsoleCommand( "-attack" )
- end )
- end
- local function move10( )
- RunConsoleCommand( "+zoom" )
- LocalPlayer():ConCommand( "act disagree" )
- timer.Simple( .5, function( )
- RunConsoleCommand( "-zoom" )
- end )
- end
Advertisement
Add Comment
Please, Sign In to add comment