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

How do I Make only a member on my group with the rank see a block? [closed]

Asked by 5 years ago

Hello , I would Like to know who can script me a way that if you are on my group and your rank id is 70 and Up then you see a Block but when not You dont see the Block. Who can Help?

0
ScriptingHelpers isn't a site to request scripts. Avigant 2374 — 5y
0
you need to read the rules of the site dude. Is_Hunter 152 — 5y

Closed as Not Constructive by Avigant, DeceptiveCaster, and DeveloperSolo

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
0
Answered by 5 years ago

Use a script and then get the following code, get FE enabled

local groupId = GroupIdHere

game.Players.PlayerAdded:Connect(function(plr)
    if plr:GetRankInGroup(groupId) >= 70 then
        script.Parent:Destroy() -- Script.Parent if the script is inside the part
    end
end)
0
That would remove it for every player if at least one player with lower rank joins Amiaa16 3227 — 5y
0
So all ranks Higher can see it and Lower cant see it ? Dinoboshoff1 -17 — 5y
Ad