We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fe53de commit daabb5aCopy full SHA for daabb5a
1 file changed
MainModule/Client/UI/Default/Profile.luau
@@ -9,7 +9,7 @@ return function(data, env)
9
if env then
10
setfenv(1, env)
11
end
12
-
+
13
local client = client
14
local service = client.Service
15
@@ -97,11 +97,14 @@ return function(data, env)
97
Size = UDim2.new(1, -135, 0, 30);
98
Position = UDim2.new(0, 130, 0, (30*(i-1))+5);
99
TextXAlignment = "Left";
100
- }):Add("TextLabel", {
+ }):Add("TextBox", {
101
Text = v[2];
102
BackgroundTransparency = 1;
103
Size = UDim2.new(0, 120, 1, 0);
104
Position = UDim2.new(1, -130, 0, 0);
105
+ TextEditable = false;
106
+ ClearTextOnFocus = false;
107
+ Selectable = true;
108
TextXAlignment = "Right";
109
})
110
0 commit comments