HOW TO MAKE A BADGE ONLY DOOR | Roblox Studio Tutorial

Published: 07 October 2023
on channel: Itz_FloppyFish
6,934
536

In todays video I show you how to make a badge only door in Roblox Studio. I Hope you enjoyed the video, Have a lovely rest of your day! 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!

Script (LocalScript in StarterPlayerScripts) :

local BadgeID = 1234567890 -- Replace with your Gamepass ID
local BadgeDoor = game.Workspace:WaitForChild("BadgeDoor") -- Change BadgeDoor to whatever your part is called which will open

local function checkGamepass(Player)
return game:GetService("BadgeService"):UserHasBadgeAsync(Player.UserId, BadgeID)
end

local function openDoorForPlayer(player)
if checkGamepass(player) then
BadgeDoor.Transparency = 1 -- You can adjust the transparency here
BadgeDoor.CanCollide = false
end
end

while true do
openDoorForPlayer(game.Players.LocalPlayer)
wait(3) -- Wait for 3 seconds before checking again if the player has the gamepass.
end

-- Made with love by Itz_FloppyFish

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

FloppyFish Merch Store: https://itz-floppyfish.creator-spring...

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

This video is based about in-game actions, this has got nothing associated to real world events.

🌟 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 BADGE ONLY DOOR | Roblox Studio Tutorial online without registration, duration hours minute second in high quality. This video was added by user Itz_FloppyFish 07 October 2023, don't forget to share it with your friends and acquaintances, it has been viewed on our site 6,934 once and liked it 536 people.