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

Why is my shift to sprint script not making my character run?

Asked by
wookey12 174
8 years ago

I tried all i could to find n error, but i couldn't. Even the output said nothing.

01-- Made by wookey12 :)
02wait(1)
03local player = game.Players.LocalPlayer
04local mouse = game.Players.LocalPlayer:GetMouse()
05 
06mouse.KeyDown:Connect(function(KeyDown)
07    if KeyDown == 48 then
08        game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 30
09    end
10end)
11 
12mouse.KeyUp:Connect(function(KeyUp)
13    if KeyUp == 48 then
14        player.Character.Humanoid.WalkSpeed = 16
15    end
16end)
0
KeyDown is deprecated. Shawnyg 4330 — 8y

1 answer

Log in to vote
0
Answered by 8 years ago

First of all, try to make ":Connect" into ":connect", and maybe that will help.

Second of all, use

1if KeyDown:byte() == 19 then

on those things instead of

1if KeyDown == 19 then

It seems to work for me, I used a script in a game I'm making with that sort of idea:

01local mouse = game.Players.LocalPlayer:GetMouse()
02 
03function onkeyDown(key)
04    if key:byte() == 19 then
05        if script.Parent.CurrentOption.Value == "Fight" then
06            script.Parent.CurrentOption.Value = "Act"
07            script.Parent.Fight.Image = "rbxgameasset://Images/spr_fightbt_center_0"
08            script.Parent.Act.Image = "rbxgameasset://Images/spr_actbt_center_1"
09            script.Parent.Act.Heart.Visible = true
10            script.Parent.Fight.Heart.Visible = false
11        elseif script.Parent.CurrentOption.Value == "Act" then
12            script.Parent.CurrentOption.Value = "Item"
13            script.Parent.Act.Image = "rbxgameasset://Images/spr_actbt_center_0"
14            script.Parent.Item.Image = "rbxgameasset://Images/spr_itembt_1"
15            script.Parent.Item.Heart.Visible = true
View all 33 lines...
0
Please gimme some points c; TheChampOfKillers 45 — 8y
0
I refuse to give you points since you didn't exactly point him in the proper direction. KeyDown is deprecated. Shawnyg 4330 — 8y
0
Thanks! Worked like a charm! wookey12 174 — 8y
0
Well I still used it anyways... I don't know how to use the other way that well xD TheChampOfKillers 45 — 8y
0
You can use :connect, but it's deprecated. Use :Connect Troidit 253 — 8y
Ad

Answer this question