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

Why doesn't this script work if the boolvalue is true?

Asked by 6 years ago

I am trying to make this script work when a specific boolvalue is true, but the problem is, it won't detect the boolvalue. Here is the script:

01--- all this is just buttons and gui stuff ---
02local pow = game.Players.LocalPlayer:WaitForChild("PlayerGui"):WaitForChild("PowerGui2"):WaitForChild("Frame")
03local speed = pow.Select1
04local invis = pow.Select2
05-----------------------------------------------------
06local m = game.Players.LocalPlayer:GetMouse()
07db = true
08 
09if speed.Value.Value == true then
10---- the stuff below is not important because I tested it and it works ---
11    m.KeyDown:Connect(function(k)
12        if k == "q" then
13            if db == true then
14                game.ReplicatedStorage.Speedparticle:Clone().Parent = game.Players.LocalPlayer.Character:FindFirstChild("UpperTorso")
15                game.Players.LocalPlayer.Character:FindFirstChild("Humanoid").WalkSpeed = 40
View all 24 lines...
0
its important because KeyDown is deprecated. use UserInputService.InputBegan instead Gey4Jesus69 2705 — 6y
0
Deprecated doesn't mean not working. KeyDown works for most keys and UserInputService can be a bit harder for people to understand. clc02 553 — 6y
0
Terrible argument. You shouldn't be using Deprecated items. Don't teach bad practices. xPolarium 1388 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago

I've moved the speed value check to the following if statement. With this when Key Down is connected it will check if speed value is true and the right key is pressed. Hope this helps

01--- all this is just buttons and gui stuff ---
02local pow = game.Players.LocalPlayer:WaitForChild("PlayerGui"):WaitForChild("PowerGui2"):WaitForChild("Frame")
03local speed = pow.Select1
04local invis = pow.Select2
05-----------------------------------------------------
06local m = game.Players.LocalPlayer:GetMouse()
07db = true
08 
09---- the stuff below is not important because I tested it and it works ---
10m.KeyDown:Connect(function(k)
11    if speed.Value.Value == true and k == "q" then
12        if db == true then
13            game.ReplicatedStorage.Speedparticle:Clone().Parent = game.Players.LocalPlayer.Character:FindFirstChild("UpperTorso")
14            game.Players.LocalPlayer.Character:FindFirstChild("Humanoid").WalkSpeed = 40
15            db = false
View all 22 lines...
Ad

Answer this question