I've been searching for hours and found a few tutorials on how to do this but I think they are outdated. I've tried using PlayerModule>ControlModule but can't seem to find the line for it. I'm trying to find a current script for this.
This is quite easy. Put a Local Script into StarterGui and this code should work.
01 | local ContextActionService = game:GetService( "ContextActionService" ) |
02 | local FowardMovement = Enum.PlayerActions.CharacterForward |
03 | local BackwardMovement = Enum.PlayerActions.CharacterBackward |
04 |
05 | local function Sink() |
06 | return Enum.ContextActionResult.Sink |
07 | end |
08 |
09 | ----Sink forward movement |
10 | ContextActionService:BindAction( "SinkFowardMovement" , Sink, false ,FowardMovement) |
11 |
12 | ----Sink backward movement |
13 | ContextActionService:BindAction( "SinkBackwardMovement" ,Sink, false ,BackwardMovement) |