Horje
shift to sprint roblox Code Example
shift to sprint roblox
-- Economic was incorrect :)
-- This is an actual working version I made myself editing Economic's.
-- I already know how to do this, anyway.
local UIS = game:GetService("UserInputService")
local Player = game.Players.LocalPlayer
local Character = script.Parent
local Humanoid = Character:WaitForChild("Humanoid")

UIS.InputBegan:Connect(function(Key)
	if Key.KeyCode == Enum.KeyCode.LeftShift or Key.KeyCode == Enum.KeyCode.RightShift then
		Humanoid.WalkSpeed = 16
	end
end)

UIS.InputEnded:Connect(function(Key)
	if Key.KeyCode == Enum.KeyCode.LeftShift or Key.KeyCode == Enum.KeyCode.RightShift then
		Humanoid.WalkSpeed = 6
	end
end)




Whatever

Related
conda activate environment not working Code Example conda activate environment not working Code Example
Liquid Turncate Code Example Liquid Turncate Code Example
barter Code Example barter Code Example
raj bet Code Example raj bet Code Example
[INFO] using 'STDIN' for parsing targets list Code Example [INFO] using 'STDIN' for parsing targets list Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8