How To Make A Clan Spinning System | Roblox Studio FULL Tutorial

Поделиться
HTML-код
  • Опубликовано: 15 янв 2025

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

  • @vuukstudios7635
    @vuukstudios7635  Год назад +1

    JOIN OUR ACADEMY AND START YOUR JOURNEY HERE: 🌟⬇
    whop.com/vuukstudios-academy/

  • @YumeKage夢影
    @YumeKage夢影 Год назад +3

    Thanks for this content, edit looks clean and the tutorial will help us a lot, keep it up 💯🔥

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

    Is there a way to get a 1% legendary clan in any game? Like a method, does my avatar have to wear something that have the characteristics of the specific clan im aiming for?, it worked 1 time so i believe it's not random

  • @MnkyDev
    @MnkyDev Год назад +2

    W vid but couldn’t you wait for the value of spins to be changed instead of waiting for child every frame?

  • @yuthtg9525
    @yuthtg9525 Год назад

    Id like to thank you for how much motivation you ve given me after i almost quit scripting , thank you very much for all of these FREE stuff u ve done for us

  • @DAILYUPLOAD135
    @DAILYUPLOAD135 Год назад +1

    Thank you for teaching me how to code

  • @phoenix7037
    @phoenix7037 Год назад +1

    Tutorial on color changing ui text?

  • @MexoOO7
    @MexoOO7 10 месяцев назад +1

    It rolls even if it is 0, Need help ASAP

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

    How to add clan perks to it?

  • @JediMasterAnakin
    @JediMasterAnakin Год назад +1

    nice! pls make a boost system

  • @abyss02
    @abyss02 Год назад +1

    can u do more videos on like vfx

    • @vuukstudios7635
      @vuukstudios7635  Год назад +2

      Full vfx course in the academy 🔥 see ya there

  • @FrederickSekyere
    @FrederickSekyere Год назад

    Can you by any chance make an in depth combat tutorial video once you get the time of course

  • @moudeen9182
    @moudeen9182 6 месяцев назад

    heyy, can you make a value of spins to be changed instead of waiting for child every frame?

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

    8:40 I can't see the datafolder, clan, spins, playergui, startergear

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

      Did you parent it? If you dont parent it to the player, it wont appear

  • @ItsjustAJFR
    @ItsjustAJFR 10 месяцев назад

    can you make this a model?

  • @DasPinguuu
    @DasPinguuu Год назад

    Yoo, can you add a skip spin button which only works if you have the gamepass???

  • @khodiramdhan
    @khodiramdhan Год назад

    Where di you learn to become a pro animator/vfx/scripter from?

    • @vuukstudios7635
      @vuukstudios7635  Год назад +1

      Had a mentor, now I teach other people at www.whop.com/vuukstudios-academy

    • @khodiramdhan
      @khodiramdhan Год назад

      @@vuukstudios7635 Nice

  • @fffff_yt9223
    @fffff_yt9223 Год назад

    If i buy the academy right now would you walk me through the basics

    • @vuukstudios7635
      @vuukstudios7635  Год назад

      Everything is explained inside the video i posted on the academy page

  • @anll8180
    @anll8180 8 месяцев назад

    how do i make kill someone to get spins?

  • @kraken35200
    @kraken35200 11 месяцев назад

    everything works but like it doesn't save, i rejoin and its a different clan with 10 spins and its published and stuff (i played it on roblox not studio for testing)

    • @feder_tion
      @feder_tion 10 месяцев назад

      data only saves if handled on server, make sure ur datastore script is functional aswell

  • @OceanOfMusic123
    @OceanOfMusic123 Год назад

    YOO I was waiting 3 week for new tutorial its bc i can't able to afford your academy 😥

  • @Cincire
    @Cincire Год назад

    Can I hire you? fOr game?

  • @BouBou-jp1mk
    @BouBou-jp1mk Год назад

    Idea : how to make your combat system mobile supported

  • @CrescentX
    @CrescentX Год назад +2

    W

  • @WallypuppyTV
    @WallypuppyTV 10 месяцев назад

    This is dumb I have been coding for hours can put model in the description because I’m getting so bored

    • @WallypuppyTV
      @WallypuppyTV 10 месяцев назад

      I think I might cry

    • @user-bn5wz1xv2p
      @user-bn5wz1xv2p 5 месяцев назад

      @@WallypuppyTV this comment is so real me too

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

      How? Its only 20 mins... How?
      Its already copy and paste by watching the tutorial
      Also real talk tho, if you dont "write" the code, you wont be able to understand it making it hard for you to update it

  • @abyss02
    @abyss02 Год назад

    ;-;

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

    3:53

  • @D.M.O.C
    @D.M.O.C 10 месяцев назад +5

    the script for the rarity
    game.Players.PlayerAdded:Connect(function(Player)
    local Character = Player.Character or Player.CharacterAdded:Wait()
    local Humanoid = Character:WaitForChild("Humanoid")

    local Races = {
    Common = 50,
    Uncommon = 30,
    Rare = 10,
    Epic = 5,
    Legandary = 1,
    }

    local sum = 0
    for _,Valeus in pairs(Races) do
    sum = sum + Valeus
    end

    local function getRandomItem()
    local RaceValeu = Random.new():NextNumber(0, sum)
    for item, valeu in pairs(Races) do
    RaceValeu = RaceValeu - valeu
    if RaceValeu < 0 then
    return item
    end
    end
    end



    local DataFolder = Instance.new('Folder', Player)
    DataFolder.Name = "DataFolder"

    local Race = Instance.new("StringValue", DataFolder)
    Race.Name = "Clan"

    local Race1 = Instance.new("NumberValue", DataFolder)
    Race1.Name = "Spins"
    Race.Value = getRandomItem()
    Race1.Value = 5


    end)

    • @ItsjustAJFR
      @ItsjustAJFR 10 месяцев назад

      ty omgg

    • @ItsjustAJFR
      @ItsjustAJFR 10 месяцев назад

      could you do one for all the scripts?

    • @D.M.O.C
      @D.M.O.C 10 месяцев назад

      Ye sure

    • @raineroblix7137
      @raineroblix7137 8 месяцев назад

      could u make this a data save