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
Смотрите видео How to make a Group only Door | Roblox Studio (GROUP + RANK) онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь Itz_FloppyFish 15 Июнь 2024, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 4,847 раз и оно понравилось 231 людям.