Hey there. So i’m in the current situation of making my admin panel, although there has been problems which i have ran into and fixed. To get what i want, i have a login page where you have to enter a roblox password inside of a table - only given to admins, now as most sites have a login system where you can enter your password and it is in asterisk.
Is there any possible way to change text when you enter a letter into a text box to change directly to a * and make the password still work? This may be not possible but i’d still like to ask.
This is possible but not alone. If you replace the text with asterisks every time, you will only read asterisks when you attempt to read the text. Try searching the DevForum, there have been topics made about it if I recall correctly. You should be able to find all the answers you seek there.
local passval = script.Parent.Parent.TEXBOXTEXT.Text
script.Parent.MouseButton1Click:Connect(function()(
local player = game.Players.LocalPlayer
game.ReplicatedStorage:FireServer(player, passval)
end)