Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why does my player keep sprinting after I delete a script?

Asked by 2 years ago
01local UserInputService = game:GetService("UserInputService")
02local btn = script.Parent
03game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
04 
05-- A sample function providing one usage of InputBegan
06local function onInputBegan(input, gameProcessed)
07    if input.KeyCode == Enum.KeyCode.LeftShift then
08        game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 26
09        btn.BackgroundColor3 = Color3.new(0.0352941, 0.972549, 0.458824)
10    end
11end
12 
13local function onInputEnded(input, gameProcessed)
14    if input.KeyCode == Enum.KeyCode.LeftShift then
15        game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
View all 27 lines...

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

2 answers

Log in to vote
1
Answered by
Xyternal 247 Moderation Voter
2 years ago

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

1local ReplicatedStorage = game:GetService("ReplicatedStorage")
2 
3local remoteEvent = ReplicatedStorage:WaitForChild("RemoteEventTest")
4 
5 
6 
7    remoteEvent:FireAllClients()

Local script

1local ReplicatedStorage = game:GetService("ReplicatedStorage")
2 
3local remoteEvent = ReplicatedStorage:WaitForChild("RemoteEventTest")
4 
5 
6remoteEvent.OnClientEvent:Connect()
0
thanks. I solved the problem right after posting. But thanks anyway HeroFigo 81 — 2y
Ad
Log in to vote
0
Answered by 2 years ago

It's a local script so it changes the walkspeed locally....

Answer this question