Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Rank and Username gui?

Asked by
kjduck 0
4 years ago

Hello all,

I have made a group rank gui and I would like the user's name along with it, above the rank text. How exactly can I do that?

0
I hope it helped! iivSnooxy 248 — 4y
0
please accept if helped! iivSnooxy 248 — 4y

1 answer

Log in to vote
0
Answered by
iivSnooxy 248 Moderation Voter
4 years ago

Well first add a “Script” in the “Workspace” Then print this

01local commands = {}
02 
03function Create(ClassName)
04 return function(Properties)
05  local Obj = Instance.new(ClassName)
06  for i,v in pairs(Properties) do
07   if type(i) == 'number' then
08    v.Parent = Obj
09   else
10    Obj[i] = v
11   end
12  end
13  return Obj
14 end
15end
View all 94 lines...

I hope this helped please accept if it did!

0
@iivSnooxy Hello, I recently contacted you on scripting helpers about the Rank and username gui. I am trying to change the colors of the gui's. How can I do that? I go into line 40 and line 53 to change them and they don't work. kjduck 0 — 4y
0
Ohhhh.. before the numbers but “fromRGB” iivSnooxy 248 — 4y
0
On line 40 iivSnooxy 248 — 4y
Ad

Answer this question