I tried all i could to find n error, but i couldn't. Even the output said nothing.
01 | -- Made by wookey12 :) |
02 | wait( 1 ) |
03 | local player = game.Players.LocalPlayer |
04 | local mouse = game.Players.LocalPlayer:GetMouse() |
05 |
06 | mouse.KeyDown:Connect( function (KeyDown) |
07 | if KeyDown = = 48 then |
08 | game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 30 |
09 | end |
10 | end ) |
11 |
12 | mouse.KeyUp:Connect( function (KeyUp) |
13 | if KeyUp = = 48 then |
14 | player.Character.Humanoid.WalkSpeed = 16 |
15 | end |
16 | end ) |
First of all, try to make ":Connect" into ":connect", and maybe that will help.
Second of all, use
1 | if KeyDown:byte() = = 19 then |
on those things instead of
1 | if KeyDown = = 19 then |
It seems to work for me, I used a script in a game I'm making with that sort of idea:
01 | local mouse = game.Players.LocalPlayer:GetMouse() |
02 |
03 | function 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 |