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

Will this script even work, and whats the problem with it?

Asked by 4 years ago

I tried to make a running script ,but when i tried to test it it says "attempt to index local 'Player' (a nil value) on the line 2".

local Player = game.Players.LocalPlayer
local Character = Player.Character
local Human = game.Players.LocalPlayer.Character

game:GetService("UserInputService").InputBegan:connect(function(input, gameprocesed)
    if input.KeyDown == Enum.KeyCode.LeftShift then
       for i = 1,16 do 
            Human:WaitForChild("Humanoid").WalkSpeed = 30
        end
    end
end)

game:GetService("UserInputService").Input.Ended:connect(function(input, gameprocesed)
    if input.KeyDown == Enum.KeyCode.LeftShift then
        for i = 1,16 do
            Human:WaitForChild("Humanoid").WalkSpeed = 16
        end
    end
end)
0
is this a serverscript? Elixcore 1337 — 4y
0
no its a normal script, should i set it to localscript? TheAkiSa 7 — 4y
0
Set it to a LocalScript. Also, you shouldn't be using "for i" in this script. sngnn 274 — 4y

1 answer

Log in to vote
-1
Answered by 4 years ago

Set it as a local script and put it in StarterCharacterScripts, this is your problem. Nobody can use it without it being a startercharacterscripts. DM me if this doesn't work, Aurlius #1780 If that does not work, DM me from the ScriptingHelpers discord by looking up @Aurlius. Thanks.

Ad

Answer this question