01 | local UserInputService = game:GetService( "UserInputService" ) |
02 | local btn = script.Parent |
03 | game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16 |
04 |
05 | -- A sample function providing one usage of InputBegan |
06 | local function onInputBegan(input, gameProcessed) |
07 | if input.KeyCode = = Enum.KeyCode.LeftShift then |
08 | game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 26 |
09 | btn.BackgroundColor 3 = Color 3. new( 0.0352941 , 0.972549 , 0.458824 ) |
10 | end |
11 | end |
12 |
13 | local function onInputEnded(input, gameProcessed) |
14 | if input.KeyCode = = Enum.KeyCode.LeftShift then |
15 | game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16 |
I made a little sprinting script that get's inserted in the clients during a round. And get's deleted when round ends. AFTER I delete it I set the speed of the players to 16 again but it doesn't work
If you want your local script to work for everyone, you will have to use a Remote Event, and then call it from a serverscript. For say, if you insert a Remote Event in Replicated Storage, your code will look something like this.
ServerScript
1 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
2 |
3 | local remoteEvent = ReplicatedStorage:WaitForChild( "RemoteEventTest" ) |
4 |
5 |
6 |
7 | remoteEvent:FireAllClients() |
Local script
1 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
2 |
3 | local remoteEvent = ReplicatedStorage:WaitForChild( "RemoteEventTest" ) |
4 |
5 |
6 | remoteEvent.OnClientEvent:Connect() |