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

Change rank in group by a script? Possible?

Asked by
Aimarekin 345 Moderation Voter
6 years ago

Hi. I have been searching on the roblox wiki for a function that changes a player's rank in a group, but I couldn't find anything. I would like to make it so that a script change the player's rank with a function but found nothing about it in the wiki. Is it that you can not rank a player through a script? OPr did I missed something? Or should I use a bot to use it?

Help appreciated :3

0
It's not possible, sorry. DeceptiveCaster 3761 — 6y
0
I actually saw it at many places, like "Nova hotels" or "Theme Park Tycoon". Maybe they are made by bots? Aimarekin 345 — 6y
0
Try This If Not Than It’s Probably Impossible Also a I am not the best scripter FPSVision -14 — 6y

2 answers

Log in to vote
0
Answered by
H4X0MSYT 536 Moderation Voter
6 years ago

They use external services; such as bots. They make a request to the end point api, and that connects to roblox and executes the function. I believe RoVer used to offer a service like this.

0
Okay. I will investigate. Aimarekin 345 — 6y
Ad
Log in to vote
-1
Answered by
FPSVision -14
6 years ago

It isn’t possible but there is a script out there I think it has something to do with leaderstats anyone in the group that has a rank will get a another rank you choose in game.

Here I’ll attempt to write the script

— Add A Script
— Inside The Script Add A SurfaceGUI than add a
— TextLabel And Name It What you want Than name your
— SurfaceGUI what you want.
—Inside The Script Put This In

game.Workspace.ChildAdded:connect(function(plr)
local name = plr.Name
local playerinplayers = game.Players:FindFirstChild(plr.Name)
if playerinplayers ~= nil then
playerinplayers.CanLoadCharacterAppearance = false

plr.Humanoid.DisplayDistanceType = "None"
if name ~= "NameHere" then --Put Your Name Here
game.Lighting.NameTag.Text.Text = name
game.Lighting.NameTag:Clone().Parent = plr.Head else
game.Lighting.NameTag.Text.TextStrokeTransparency = 0
game.Lighting.NameTag.Text.Text = name
game.Lighting.Owner.Text3.Visible = true
game.Lighting.Owner:Clone().Parent = plr.Head
game.Lighting.NameTag:Clone().Parent = plr.Head

end
end
end)?

—Change Owner Up there To what you want.
— Name The SurfaceGUI = NameTag
— Name The TextLabel Owner Or What you want
0
Not what they asked for. H4X0MSYT 536 — 6y
0
Thanks, but I know how to do that. It is not what I asked for. Aimarekin 345 — 6y

Answer this question