What can I do?
Please make your question title relevant to your question content. It should be a one-sentence summary in question form.
I know this this can only work on LocalScripts, but what can I do to make it when a player touches the part, and then presses the letter to activate the other part?
01 | local Player = game.Players.LocalPlayer |
02 | local mouse = Player:GetMouse() |
04 | script.Parent.Touched:connect( function (hit) |
05 | mouse.KeyDown:connect( function (Key) |
07 | game.Workspace.TestDoor.Transparency = 1 |