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 --- |
02 | local pow = game.Players.LocalPlayer:WaitForChild( "PlayerGui" ):WaitForChild( "PowerGui2" ):WaitForChild( "Frame" ) |
03 | local speed = pow.Select 1 |
04 | local invis = pow.Select 2 |
05 | ----------------------------------------------------- |
06 | local m = game.Players.LocalPlayer:GetMouse() |
07 | db = true |
08 |
09 | if 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 |
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 --- |
02 | local pow = game.Players.LocalPlayer:WaitForChild( "PlayerGui" ):WaitForChild( "PowerGui2" ):WaitForChild( "Frame" ) |
03 | local speed = pow.Select 1 |
04 | local invis = pow.Select 2 |
05 | ----------------------------------------------------- |
06 | local m = game.Players.LocalPlayer:GetMouse() |
07 | db = true |
08 |
09 | ---- the stuff below is not important because I tested it and it works --- |
10 | m.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 |