Roblox ingame Tablet | Password System | Help Needed

textBox:GetPropertyChangedSignal:Connect(function()
    local text = textBox.Text
    local endText = ''
    for i=1,string.len(text) do
wait(0.5)
        endText= endText..'Q'
    end
    textBox.Text = endText 
end)

something like that (not sure if it works)

2 Likes

Players.UsedSpxse.PlayerGui.Main-Client.Tablet.LockScreen.LocalScript:22: attempt to concatenate string with nil

2 Likes

use WaitForChild

– filling max –

2 Likes

image

2 Likes

i needed to show examples

so try “str=string.split(text)[string.len(text)-1]”
i did not test these

2 Likes

Still receiving the same error from the same part.

Do you know any other method we can do it here at popsiz?

1 Like

Would you want it so when people press enter after typing, it turns it into stars or it turns it while they are typing?

as they are typing but still show the last thing they typed

*****x

1 Like

almost got it right
image

1 Like

Could you send the script over or not?

2 Likes

still a one bug first needs to be fixed

1 Like

Yeah that sounds risky, you might be safer using a PIN like Royale Highs locker system, but you can’t 100% guarantee that it’ll be safe to do.

1 Like

I think you’re still likely to get moderated even if you set it, use a PIN or something.

1 Like

script.Parent:GetPropertyChangedSignal(“Text”):Connect(function()

local str = script.Parent.Text:sub(#script.Parent.Text, #script.Parent.Text)

script.Parent.Text = string.rep("*", #script.Parent.Text)…str

end)

it still has a bug though lol a example @intorsetorpolice1

Agreed. You could do what Emergency Response: Liberty County does and already have a prefilled “password” where you just have to click the login button.

This sounds extremely dangerous. What happens if a player loses their password? You won’t be able to provide a scalable solution in the future if your game expands in concurrent players.

1 Like

THE PASSWORD IS THE SAME FOR ALL USERS WITH ACCESS!

please stop saying about moderation unless u know for sure how it works.

Now if anyone can please, give us a solution for the text turning to dots that will be nice and it being stored.

Signed:
intorsetorpolice1 / Kieranl29
Popsiz Development Department

Moderation will probably misflag it though, it’s way safer to do a PIN or something like that

Yeah, it’s possible to forget.

Shouldn’t the solution that @Qin2007 entered be fine? It would also tackle the issue of players forgetting since they could theoretically put anything in.

Solution was found Externally Please lock this, Thanks

Signed:
intorsetorpolice1 / Kieranl29
Popsiz Development Department

Was it my code? I dont think so lol but atleast i could help i guess?