I just wanted to know if there is a way to put a skill into a text box then let the players put the text box as a letter and when they press the letter they pick it activate the skill. If there is can you please help me.
There is a way, we would do this by checking the text boxes text and if its the key set to the skill then the skill will run.
--text box stuff up here-- --we are going to assume the text boxes variable is t-- function Skill() print'yay' end if t.Text == "/" then plr = game.Players.LocalPlayer mouse = plr:GetMouse() mouse.KeyDown:connect(function(a) if a:lower() == t.Text then Skill() end end)