HOW TO MAKE A BADGE ONLY DOOR | Roblox Studio Tutorial

Аватар автора
Игры и Стратегии
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 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. Roblox Studio Tutorial Roblox Studio Studio Tutorials

0/0


0/0

0/0

0/0