in my game i am trying to make if a player is on one part then if they press a key a function will be triggered after multiple testing i have not succeeded, so i have two questions can you put a if inside a if statement (this is the way i have been trying to use) and if yes/no how can i fix it
this is the code i have been using i removed the if statement inside the if statement i was using because i thought it wasn't necessary if you want it please ask.
debounce = false
script.Parent.Touched:connect(function(hit)
if not debounce then debounce = true if(hit.Parent:FindFirstChild("Humanoid")~=nil)then local player = game.Players:GetPlayerFromCharacter(hit.Parent) local sound = script.Parent.Sound:Clone() sound.Parent = player.PlayerGui sound:Play() wait(5) local player = game.Players.LocalPlayer local mouse = player:GetMouse() mouse.KeyDown:connect(function(key) if key == "e" then print("diditwork") end end) end debounce = false end
end)
Yes, you can add an if statement inside one. I'll give you a quick example:
if 2+2==4 then if 1+1==2 then print("all was correct") end end
https://www.google.com/url?sa=t&source=web&rct=j&url=https://www.youtube.com/watch%3Fv%3DvujSeb6X2bE&ved=2ahUKEwiIsc2ZvL_qAhUQX30KHTfPD1EQwqsBMAF6BAgLEAg&usg=AOvVaw00Sd2wEo4HBy53-R3w5dMo
Roblox | Hotkey / Key Pressed Event | Scripting Tutorial ( video link above )
https://www.google.com/url?sa=t&source=web&rct=j&url=https://www.youtube.com/watch%3Fv%3DvujSeb6X2bE&ved=2ahUKEwiIsc2ZvL_qAhUQX30KHTfPD1EQwqsBMAF6BAgLEAg&usg=AOvVaw00Sd2wEo4HBy53-R3w5dMo
Key Press Detection (Press E) - UserInputService - Advanced Roblox Scripting #2