How to Make a MEET THE OWNER BADGE in Roblox Studio! (2024) - Roblox Studio Tutorial

Поделиться
HTML-код
  • Опубликовано: 10 сен 2024
  • Hello Everyone my Name is sya (sha) and Welcome to my Back to a Brand new Video!
    In This Video, I'll be Showing you Guys how to Make a Meet the Owner Badge in Roblox Studio!
    Script:
    local badgeService = game:GetService("BadgeService")
    local badgeid = 0 --put your badge id here
    local ownerId = 0 --put your account id here
    local isInGame = false
    game.Players.PlayerAdded:Connect(function(plr)
    if plr.UserId == ownerId then
    isInGame = true
    for i, plrInGame in pairs(game.Players:GetPlayers()) do
    badgeService:AwardBadge(plrInGame.UserId, badgeid)
    end
    elseif isInGame then
    badgeService:AwardBadge(plr.UserId, badgeid)
    end
    end)
    game.Players.PlayerRemoving:Connect(function(plr)
    if plr.UserId == ownerId then
    isInGame = false
    end
    end)
    -- Links --
    👤 | Profile: web.roblox.com...
    ⬜ | Group: web.roblox.com...
    🗣️ | Discord: / discord
    #roblox #robloxstudio #tutorial
    Thank you so Much for Watching and I'll see you Guys in the Next one, see ya!

Комментарии • 77

  • @syaroblox
    @syaroblox  5 месяцев назад +9

    Script:
    local badgeService = game:GetService("BadgeService")
    local badgeid = 0 --put your badge id here
    local ownerId = 0 --put your account id here
    local isInGame = false
    game.Players.PlayerAdded:Connect(function(plr)
    if plr.UserId == ownerId then
    isInGame = true
    for i, plrInGame in pairs(game.Players:GetPlayers()) do
    badgeService:AwardBadge(plrInGame.UserId, badgeid)
    end
    elseif isInGame then
    badgeService:AwardBadge(plr.UserId, badgeid)
    end
    end)
    game.Players.PlayerRemoving:Connect(function(plr)
    if plr.UserId == ownerId then
    isInGame = false
    end
    end)

  • @TheShinyBlueStarFromOhio
    @TheShinyBlueStarFromOhio Месяц назад +2

    for the avatar id just go to studio press play press players and expand it then press your username and scroll until you find something called player id then u can copy it then boom u have it that way its easier to do it

  • @TheShinyBlueStarFromOhio
    @TheShinyBlueStarFromOhio Месяц назад +2

    its a great tutorial but for the badge u can press the 3 dots then press copy asset id so u can get the id of the badge quicker and easier

  • @Infinityteams-h2e
    @Infinityteams-h2e 19 дней назад +1

    This worked so well I been trying to find something like this in a very long time for my boss/owner this is the most tipful video ever😊😊😊😊❤❤❤❤❤

    • @syaroblox
      @syaroblox  19 дней назад

      I'm glad to hear that!

  • @meowbee_
    @meowbee_ 2 месяца назад +1

    So I searched this tutorial to somehow fix my meet script to be ratelimit friendly. I figured the code, but with the cost of over complicating the script lol
    But now i just need to change player and badge id so that works, thanks for the tutorial!

  • @syaroblox
    @syaroblox  Месяц назад +2

    NOTE: Please publish your game before testing it.

  • @lightning-t2c
    @lightning-t2c 5 месяцев назад +3

    Thank you this was very helpful for my game!

    • @syaroblox
      @syaroblox  5 месяцев назад

      I'm Glad to Hear That!

    • @lightning-t2c
      @lightning-t2c 5 месяцев назад +1

      @@syaroblox No Plob!

  • @aigaf4389
    @aigaf4389 15 дней назад +1

    It Work Thank you So Much Man

  • @Goose_Swag
    @Goose_Swag 5 месяцев назад +2

    TYSM for this tut, its ganna *hopefully* make for a better game

    • @syaroblox
      @syaroblox  5 месяцев назад

      You're Welcomed!

  • @syaroblox
    @syaroblox  Месяц назад +1

    FAQ: If the badge didn't pop up for you, maybe check your Roblox profile to see if there's the badge. Roblox sometimes doesn't display the badges when you get them.

  • @Jayen211adoors
    @Jayen211adoors Месяц назад +2

    It works you are great

    • @syaroblox
      @syaroblox  Месяц назад

      I'm glad that it worked!

  • @porcupine_playz2
    @porcupine_playz2 22 дня назад +1

    ty i folow tutorial from 2023 tooked me an hour dint work this was so easy and it works ty

  • @SweatySchle
    @SweatySchle 3 месяца назад +3

    Can you add multiple owners in there? bc i tried {id1, id2, id3} but it still only works for 1 then
    Edit: nvm got it wasent that hard

  • @SparNDas
    @SparNDas 4 месяца назад +2

    Yo man I only got the badge but when my friend joined and when I joined on my alt it didn't work for them

    • @syaroblox
      @syaroblox  4 месяца назад

      Easy fix! You'll Have to be Also in the Game for Other People to get it, Note That it has to be the Same Account ID That you put Inside the Script. If you Still Have any Problems Then let me Know!

  • @RIP_CutelyCat34
    @RIP_CutelyCat34 4 месяца назад +2

    Its not work....idk how fix eror in the script....can you help me???
    Tysm for Helping!!

    • @syaroblox
      @syaroblox  4 месяца назад

      Did you Changed Anything Other Than the User and Badge ID? Everything That is Inside the Script Seems Fine to me, you can Only Change the User and Badge ID. Maybe try to Check if the User and/ Badge ID is Right. Also Check on Your Profile if the Badge is There, Sometimes When you get the Badge it Won't pop up for Some Reason. Hoped This Helped you, but if it Still Doesn't Works Don't Hesitate to Tell me!

  • @roseanndavid498
    @roseanndavid498 5 месяцев назад +2

    I'm your 300 subscriber lol

  • @JayBee123-i2r
    @JayBee123-i2r 5 месяцев назад +1

    THANKS! HELPED ME ALOT

    • @syaroblox
      @syaroblox  5 месяцев назад +1

      No Prob! Glad it Helped you!

  • @R3mpsmrs
    @R3mpsmrs 5 месяцев назад +1

    you earned a sub

    • @syaroblox
      @syaroblox  5 месяцев назад +1

      Tysm!

    • @R3mpsmrs
      @R3mpsmrs 5 месяцев назад +1

      @@syaroblox NP

  • @OperatorSiege
    @OperatorSiege 5 месяцев назад +1

    Dam this is new!

  • @cxelxn
    @cxelxn 3 месяца назад

    for some reason it's not working for me, copied and pasted into a script, only changed badgeId and ownerId, verified they were the correct ID's twice, joined myself on an alt and still nothing. badge is active and everything and the script itself looks identical to the what's on screen except owner and badge ID of course. I tried another script aswell even that one did not work for me.

    • @syaroblox
      @syaroblox  3 месяца назад

      Did you copied the long ID on your badge? also Roblox does this sometimes when badges doesn't show up when you get it inside the game, but the badge appears on your profile. I don't know if this is a trick to get it fixed but try making your game public? if this issue keeps on happening, don't hesitate to tell me.

  • @Roblox_God733
    @Roblox_God733 4 месяца назад +1

    Sometimes it wont pop up because it did not pop up for me and i had the badge

    • @syaroblox
      @syaroblox  4 месяца назад

      It Does That Sometimes. Your Script is Completely Working, Nothing is Wrong With it. So When you Check Your Profile, the Badge is Already There.

  • @user-th8ue8eb1k
    @user-th8ue8eb1k 3 месяца назад +1

    It wont work and i added everything right and didnt delete anything please help

    • @syaroblox
      @syaroblox  3 месяца назад

      Have you checked your profile? sometimes badges doesn't appear for some reason, and also did you copy the right badge and account ID? make sure it is right. if it still doesn't works don't hesitate to tell me.

    • @user-th8ue8eb1k
      @user-th8ue8eb1k 3 месяца назад +1

      @@syaroblox yess that was why tyy

    • @syaroblox
      @syaroblox  3 месяца назад

      @@user-th8ue8eb1k I'm glad that it helped!

  • @jimisvensson7469
    @jimisvensson7469 3 месяца назад

    I don't get the badge bc of Expected identifier when parsing method name, got 'local'

    • @syaroblox
      @syaroblox  3 месяца назад

      Sorry, but what do you mean by that?

  • @bullsharkdog
    @bullsharkdog 2 месяца назад

    finnaly the turtiol is rea

  • @bullsharkdog
    @bullsharkdog 2 месяца назад +1

    mine didnt work i copy and pasted everything

    • @syaroblox
      @syaroblox  2 месяца назад +1

      Did you copy and pasted the right ID's?

    • @bullsharkdog
      @bullsharkdog 2 месяца назад +1

      I did I just had to publish the game again that’s all thanks:D

    • @syaroblox
      @syaroblox  2 месяца назад +1

      @@bullsharkdog oh okay!

  • @Itz_FroggyPlayz22
    @Itz_FroggyPlayz22 Месяц назад

    For some reason it doesn’t work

  • @RealEnvyxl
    @RealEnvyxl 5 месяцев назад +2

    for a sec i thought u were itz_floppyfish 😭😭

  • @jtiefenback
    @jtiefenback 2 дня назад

    you adio voice add makes you sound like a robot no offence

  • @terckto8918
    @terckto8918 2 месяца назад

    Took me long to figure it out 💀💀💀

    • @syaroblox
      @syaroblox  2 месяца назад

      ow what part took you long?

    • @terckto8918
      @terckto8918 2 месяца назад

      @@syaroblox Creating the badge its really a bit depressing

  • @pinkaroo69420
    @pinkaroo69420 5 месяцев назад +5

    "How to Make a MEET THE OWNER BADGE" bro all you did was tell them to paste something in the description and change some variables, this aint a tutorial + they're not learning from it

    • @NebulaAccount
      @NebulaAccount 5 месяцев назад +1

      i second this

    • @syaroblox
      @syaroblox  5 месяцев назад +4

      Okay I Apologize for not Teaching the Viewers on how to do it, and You're Right About This is not a Tutorial. I Don't Understand Scripting so I Just When Ahead Copy and Paste Scripts From Other Places. I Know That Sounds Absolute Dumb and it is. I Wanted to at Least Make it Easier for People if That Makes Sense. I'm so Sorry, Its all my Fault. 🙏🏻

    • @pinkaroo69420
      @pinkaroo69420 5 месяцев назад +1

      @@syaroblox all g bro

    • @syaroblox
      @syaroblox  5 месяцев назад

      @@pinkaroo69420 Thank you for Understanding me 🙏🏻

    • @Happy_Clay_Corporation
      @Happy_Clay_Corporation 4 месяца назад +1

      Well, that's basically all I want and other people want, really, we don't want to hard tutorials, we want simple things, I think it's not the kind of video to learn programing

  • @davidhazell6136
    @davidhazell6136 Месяц назад +1

    It didn’t work

    • @syaroblox
      @syaroblox  Месяц назад

      Did you do all of the steps right?

  • @juicyfruit348
    @juicyfruit348 5 месяцев назад

    Why do you make scripting tutorials.. without knowing how to script?

    • @syaroblox
      @syaroblox  5 месяцев назад

      I Didn't Intend to Make This Video to be a Scripting Video, I Intend it to be a Fast and Simple way for People to Just Copy and Paste Right Away to Their Games. I'm so Sorry I Really Don't Know how to Script. 🙏🏻

    • @juicyfruit348
      @juicyfruit348 5 месяцев назад

      @@syaroblox Okay sorry have a good day

    • @syaroblox
      @syaroblox  5 месяцев назад

      @@juicyfruit348 Thank you! you too!

  • @user-wn4wk3gq3k
    @user-wn4wk3gq3k 18 дней назад

    Copy - paste tutorials...

    • @syaroblox
      @syaroblox  18 дней назад

      I'm really sorry about that, I really can't script. I just wanna make a quick simple to understand videos instead of long and detailed videos 🙏🏻

  • @Theeojamybahb
    @Theeojamybahb 13 дней назад +1

    THANKS SO MUCH I FINALLY GOT MY WELCOME BADGE TO WORK🥲🥲😭

  • @blueshine27
    @blueshine27 2 месяца назад

    didnt work

    • @syaroblox
      @syaroblox  2 месяца назад

      I'm sorry, did you do all of the steps correctly?