How to make a Group only Door | Roblox Studio (GROUP + RANK)

Published: 15 June 2024
on channel: Itz_FloppyFish
4,847
231

In todays video I show you how to make a Group Only Door in Roblox Studio. I will go over 2 different ways you can do this, we firstly go over a system that will only allow a player to enter the door if they are a member of a specific group. We will also go over a system where the door will only open if the player has a specific rank in the specific group. So... if you did want this type of system in your game make sure to watch to the end of the video to find out how!

I really enjoy making these videos for you all so I hope you enjoy them just as much as I do!
Have a lovely rest of your day!

NEW FLOPPY MERCH STORE: https://itzfloppyfish.myshopify.com/

00:00 - Introduction
00:27 - Create your GUI
1:58 - Script 1 (Group Only Door)
10:10 - Script 2 (Rank Only Door)
17:51 - Outro

Script 1 (Group Only Door):

local Player = game.Players.LocalPlayer
local GroupID = 1234567890 -- Change to the group ID which the player needs to be in.
local Door = game.Workspace:WaitForChild("YOURPART") -- Replace YOURPART to whatever your part is called which will open for the player.

local function CheckPlayer()
while true do
if Player:IsInGroup(GroupID) then
Door:Destroy()
end
wait(1) -- This is how often the system checks to see if the player is in the group.
end
end

CheckPlayer()
--------------------------------------------

Script 2 (Rank Required Group only door):
This script can be found in the pinned comments
----------------------------------
If you are a bit confused what to do, Feel free to create a ticket in my discord server and we can help you out!

NEW! Floppys Obby Game : https://www.roblox.com/games/14917960...

Floppys Simulator Game: https://www.roblox.com/games/13963457...

If you would like to support me even more, Super Thanks and becoming a Member is also another way to show your appreciation!

🌟 Floppys Discord Server:   / discord  
🌟 Floppys Roblox Game : https://www.roblox.com/games/11301003...

Roblox Studio Tutorial
Roblox Studio
Studio Tutorials


Watch video How to make a Group only Door | Roblox Studio (GROUP + RANK) online without registration, duration hours minute second in high quality. This video was added by user Itz_FloppyFish 15 June 2024, don't forget to share it with your friends and acquaintances, it has been viewed on our site 4,847 once and liked it 231 people.