Admin Panel Problems

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.

1 Like

Do you need asterisk? The only person that will see the password is who is typing it in.

1 Like

This concerns me.

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.

1 Like

Yes, although it would be nice to have.

1 Like

Okay, thanks and it’s not a roblox password i mean its just a made up one although thanks for the assistance.

2 Likes

Something may work maybe, add a value to the gui and make a remote event to change the value to the password and make the text *.

Something like this in a localscript.

            local passval = script.Parent.Parent.TEXBOXTEXT.Text
    script.Parent.MouseButton1Click:Connect(function()(
local player = game.Players.LocalPlayer
    game.ReplicatedStorage:FireServer(player, passval)
    end)