001 | Namee = script.Parent.Namee |
002 |
003 | Nameo = script.Parent.Nameo |
004 |
005 | --Characters Here: |
006 |
007 | local characters = { "_" , "q" , "w" , "e" , "r" , "t" , "y" , "u" , "i" , "o" , "p" , "a" , "s" , "d" , "f" , "g" , "h" , "j" , "k" , "l" , "z" , "x" , "c" , "v" , "b" , "n" , "m" , "Q" , "W" , "E" , "R" , "T" , "Y" , "U" , "I" , "O" , "P" , "A" , "S" , "D" , "F" , "G" , "H" , "J" , "K" , "L" , "Z" , "X" , "C" , "V" , "B" , "N" , "M" , "1" , "2" , "3" , "4" , "5" , "6" , "7" , "8" , "9" , "0" } |
008 |
009 | --Length Here: |
010 |
011 | local charLength = 1 |
012 |
013 | local cache = { } |
014 |
015 | --/CONFIGURATION-- |
016 |
017 | local Ui = script.Parent.Parent.ScrollingFrame |
018 |
019 | --You Will See Random Generated Word In Output Window |
020 |
021 | --To Start It Disable This Script And Enable |
022 |
023 | |
024 |
025 | while true do wait() |
026 |
027 | local word = "" |
028 |
029 | for i = 1 , charLength do |
030 |
031 | local randNum = math.random( 1 , #characters) |
032 |
033 | word = word .. characters [ math.random( 1 , #characters) ] .. characters [ math.random( 1 , #characters) ] .. characters [ math.random( 1 , #characters) ] .. characters [ math.random( 1 , #characters) ] |
034 |
035 | print (word) |
036 |
037 | Nameo.Text = word |
038 |
039 | wait() |
040 |
041 | word = "" |
042 |
043 | end |
044 |
045 | local Players = game:GetService( "Players" ) |
046 |
047 | local cache = { } |
048 |
049 | function GetUserIdFromUsername(name) |
050 |
051 | -- First, check if the cache contains the name |
052 |
053 | if cache [ name ] then return cache [ name ] end |
054 |
055 | -- Second, check if the user is already connected to the server |
056 |
057 | local player = Players:FindFirstChild(name) |
058 |
059 | if player then |
060 |
061 | cache [ name ] = player.UserId |
062 |
063 | return player.UserId |
064 |
065 | end |
066 |
067 | -- If all else fails, send a request |
068 |
069 | local id |
070 |
071 | pcall ( function () |
072 |
073 | id = Players:GetUserIdFromNameAsync(name) |
074 |
075 | end ) |
076 |
077 | cache [ name ] = id |
078 |
079 | return id |
080 |
081 | end |
082 |
083 | if (GetUserIdFromUsername(Nameo.Text)) = = nil then |
084 |
085 | Namee.Text = ( "Not Taken" ) |
086 |
087 | local addtolist = Instance.new( "TextLabel" ) |
088 |
089 | addtolist.Parent = Ui |
090 |
091 | addtolist.BackgroundTransparency = 1 |
092 |
093 | addtolist.Size = UDim 2. new( 5 , 0 , 5 , 0 ) |
094 |
095 | addtolist.Text = Nameo.Text |
096 |
097 | script.Parent.Image = "rbxassetid://891981050" |
098 |
099 | else |
100 |
101 | Namee.Text = (GetUserIdFromUsername(Nameo.Text)) |
102 |
103 | script.Parent.Image = "http://www.roblox.com/Thumbs/Avatar.ashx?x=200&y=200&Format=Png&userid=" ..(GetUserIdFromUsername(Nameo.Text)) |
104 |
105 | end |
106 |
107 | end |
I have tried using strings but it didn’t work, and I don’t even know if there is a way. Nameo is the value because it comes back like i said in the title, sometimes.
I added this below Nameo.Text = word and above wait()
01 | if Nameo.Text = = string.sub( 1 , 1 ) = = "_" then |
02 |
03 | Nameo.Text = "null" |
04 |
05 | end |
06 |
07 | if Nameo.Text string.sub( 4 , 4 ) = = "_" then |
08 |
09 | Nameo.Text = "null" |
10 |
11 | end |
It didn’t work…
Luckily for you, Lua provides a method for this. You can use string.gsub, the first argument is the string, the second is the thing you want to replace in the string, and the third is is what you want to replace it with.
Example:
1 | local s = "_Hello_" ; |
2 | s = string.gsub(s, "_" , "!" ); |
3 | print (s); |
The result is --> !Hello!
EDIT: An optional fourth argument also allows you to specify how many times the function is allowed to replace something.
Example:
1 | local s = "_Hello_" ; |
2 | s = string.gsub(s, "_" , "!" , 1 ); |
3 | print (s); |
The result is --> !Hello_