How to create a Loading Screen | Roblox Studio (FULL GUIDE + CUSTOMIZABLE)

แชร์
ฝัง
  • เผยแพร่เมื่อ 19 ต.ค. 2024

ความคิดเห็น • 179

  • @Itz_FloppyFish
    @Itz_FloppyFish  4 หลายเดือนก่อน +29

    I hope you all enjoyed! Here is script 4:
    local ContentProvider = game:GetService("ContentProvider")
    local MainScreenGui = script.Parent
    local MainFrame = MainScreenGui:WaitForChild("MainLoadingScreen") -- Your main first frame
    local TweenService = game:GetService("TweenService")
    local MainMenu = script.Parent.Parent.ScreenGui.Frame -- Main Menu Screen
    repeat wait() until game:IsLoaded()
    local GameAssets = game:GetDescendants()
    local TotalGameAssets = #GameAssets
    local LoadBar = MainFrame:WaitForChild("BackgroundBar"):WaitForChild("MovingBar") -- Change the names accordingly.
    LoadBar.Size = UDim2.new(0, 0, 1, 0)
    local function updateLoadingText(progress)
    MainFrame:WaitForChild("ProgressText").Text = string.format("Assets Loading: %d/%d", progress, TotalGameAssets)
    end
    MainFrame:WaitForChild("ProgressText").Text = "Assets Loading: 1/" .. TotalGameAssets
    wait(0.5) -- You can delete everything from line 16-21 if you dont want the assets loading text.
    for i, assetToLoad in ipairs(GameAssets) do
    ContentProvider:PreloadAsync({assetToLoad})
    updateLoadingText(i)
    LoadBar.Size = UDim2.new(i / TotalGameAssets, 0, 1, 0)
    end
    local FadeInTween = TweenService:Create(MainScreenGui.Fade, TweenInfo.new(0.5, Enum.EasingStyle.Linear, Enum.EasingDirection.Out), {BackgroundTransparency = 0})
    FadeInTween:Play()
    FadeInTween.Completed:Wait()
    wait(0.5)
    MainFrame.Visible = false
    MainMenu.Visible = true
    local FadeOutTween = TweenService:Create(MainScreenGui.Fade, TweenInfo.new(0.5, Enum.EasingStyle.Linear, Enum.EasingDirection.Out), {BackgroundTransparency = 1})
    FadeOutTween:Play()
    FadeOutTween.Completed:Wait()-- You can delete from line 26-35 if you dont want a smooth blur once it has finished loading.

    • @ghabachiyeh
      @ghabachiyeh 4 หลายเดือนก่อน +3

      Thanks floppy I’m gonna add the loading screen from your tutorial to my game! 🎉

    • @Ericdrifts
      @Ericdrifts 4 หลายเดือนก่อน +2

      You forgot to pin this lol

    • @SahabiAkber
      @SahabiAkber 2 หลายเดือนก่อน

      Can you help me with this?
      Fade is not a valid member of ScreenGui "Players.(PLAYER USER).PlayerGui.Loading"
      it doesnt know what fade is

    • @Chloe_Unicorn.VR9686
      @Chloe_Unicorn.VR9686 หลายเดือนก่อน

      When I did it it didn’t load and and fade is not gone

    • @Sub2FloppaPls-Minecraft-x6r
      @Sub2FloppaPls-Minecraft-x6r 16 วันที่ผ่านมา

      thanks

  • @FroggieSSS132
    @FroggieSSS132 หลายเดือนก่อน

    This guy thought of everything. My jaw literally dropped when he thought to mention the hints, because I thought I had to figure that out on my own. Nice job, I'm subscribing!

  • @SidneyYTube
    @SidneyYTube 4 หลายเดือนก่อน +9

    dont you just love how he leaves the scripts in the video. best youtuber ever.

  • @ReflexMetal
    @ReflexMetal 4 หลายเดือนก่อน +14

    You know it's a good day when floppy uploads

    • @ghabachiyeh
      @ghabachiyeh 4 หลายเดือนก่อน +4

      Yep it’s true!

    • @officalnupmum
      @officalnupmum 2 หลายเดือนก่อน +1

      I Love His Skillz
      I Love His Videos
      His Videos Help A Lot!!

    • @Nugwee123
      @Nugwee123 2 หลายเดือนก่อน

      Yes

  • @DraggyBloxYT
    @DraggyBloxYT 4 หลายเดือนก่อน +21

    WHERE WERE YOU FLOPPY😭😭I NEEDED THIS TURTORIAL SO LONG AGO

    • @CEVESLeg
      @CEVESLeg 4 หลายเดือนก่อน +2

      same to you i am watin for 2 mounth this video

    • @ExplorerKillerOfficial
      @ExplorerKillerOfficial 4 หลายเดือนก่อน +1

      @@CEVESLeg while you waited, you could've just found a video of it, it also works

    • @ManoManiaRBLX
      @ManoManiaRBLX 4 หลายเดือนก่อน

      SAME

  • @NoanYams12
    @NoanYams12 25 วันที่ผ่านมา

    Bro is the best tutorial creator he even leaves the scripts in the description. W

  • @matthew9127_
    @matthew9127_ 4 หลายเดือนก่อน +1

    BROTHA U LEGEND I WAS LITERALLY SCOUTING THE INTERNET FOR A TUTORIAL

  • @НевелинВачков
    @НевелинВачков 4 หลายเดือนก่อน +2

    Wow i was trying to find this type of tutorial. I ddidnt know how to make a shop gamepass button after the loading screen is over, but i saw this and i was happy. Thanks floppy fish!

    • @Itz_FloppyFish
      @Itz_FloppyFish  4 หลายเดือนก่อน +3

      Thanks so much for the support!

  • @kierantav
    @kierantav หลายเดือนก่อน +3

    not a single one of ur tuts have worked🔥

    • @zdxrky5495
      @zdxrky5495 14 วันที่ผ่านมา

      There working just do it right🔥

  • @ghabachiyeh
    @ghabachiyeh 4 หลายเดือนก่อน +1

    FINALLY I CAN ADD A LOADING SCREEN IN MY GAME! THANKS FLOPPY!

  • @Jordanco1112
    @Jordanco1112 3 หลายเดือนก่อน +1

    Floppy such a lifesaver ❤❤❤

  • @chefwithrollingpin
    @chefwithrollingpin 2 หลายเดือนก่อน

    TYSM!! I’m so happy now :)
    this actually helped sm lol and it’s rlly easy to do! Btw, u JUST earned a new follower!!! Again, tysmmm

  • @ghabachiyeh
    @ghabachiyeh 4 หลายเดือนก่อน +1

    also floppy I put all notifications to your channel so I don’t miss your live!

  • @UncleTazTaszung
    @UncleTazTaszung 4 หลายเดือนก่อน +3

    So good mate!

  • @RW___01
    @RW___01 4 หลายเดือนก่อน +1

    I like how its customizable because then its not like everyones who watched this video is the same

  • @Sebthegamer_blox
    @Sebthegamer_blox 8 วันที่ผ่านมา

    the best youtuber in the world!

  • @vNoahlol
    @vNoahlol 4 หลายเดือนก่อน +2

    I NEEDED THIS THANKS FLOPPY

  • @ghabachiyeh
    @ghabachiyeh 4 หลายเดือนก่อน +4

    Floppy I added the loading screen and listened to every single step you said and the loading screen in my game works perfectly! And I found out my game got over 15k assets 💀

    • @Itz_FloppyFish
      @Itz_FloppyFish  4 หลายเดือนก่อน +3

      Oops lol yes, its crazy how many assets some games have, but roblox counts every single asset, even if its small, ranging from images to uicorners.

  • @RealIdeaEye
    @RealIdeaEye 4 หลายเดือนก่อน

    you know you HAVE to develop when floppy uploads : )

  • @kdsandy4557
    @kdsandy4557 3 หลายเดือนก่อน

    Great video this really helped me create my first game

  • @Imagine858
    @Imagine858 4 หลายเดือนก่อน +1

    yoo i just have a question pls what app do you use to edit your videos?

  • @EnemyVsEnemy
    @EnemyVsEnemy 4 หลายเดือนก่อน +1

    Thanks For Helping Me!

  • @daydogfamily
    @daydogfamily 4 หลายเดือนก่อน +2

    OMG THIS IS SO COOL

  • @Lukeyos10
    @Lukeyos10 4 หลายเดือนก่อน +1

    I need this thx floppy:)

    • @Lukeyos10
      @Lukeyos10 4 หลายเดือนก่อน

      Ikr

  • @idaFUSCO-gi8dt
    @idaFUSCO-gi8dt 4 หลายเดือนก่อน +1

    Good Video. You helped me a lot with my game. Thank you so much for the scripts! At the end made with love by floppy make me cry😭 thats so good. Thank you for your time

  • @benekthecat7394
    @benekthecat7394 หลายเดือนก่อน +1

    Good tutorial but how do i make the loading screen, ScreenGUI disappear upon it's loaded and display a different ScreenGui?

  • @rostopi-scripting1304
    @rostopi-scripting1304 4 หลายเดือนก่อน

    I've been trying to create a fake loading screen for a really long time now, and it was using hundreds of lines of code (because for example "script.Parent.Text = "1% loaded"
    wait(1)
    script.Parent.Text = "2% loaded" " etc.) and it somehow didn't work properly even though it made sense and there were no errors.
    EDIT: I bet I'm the only one who copy and pastes the "--Made with love by Floppy" bit

  • @MiT_Moony
    @MiT_Moony 4 หลายเดือนก่อน +1

    Thanks so much bro !! but can you make an round system / intermission
    tutorial thanks so much tho

  • @Ani_mm2-qo9mm
    @Ani_mm2-qo9mm 4 หลายเดือนก่อน

    i love your tutorials

  • @AllanWoodley-Milburn
    @AllanWoodley-Milburn หลายเดือนก่อน

    YOUR SO HELPFUL

  • @FFAfootballforall13
    @FFAfootballforall13 4 หลายเดือนก่อน +1

    When are you doing your next stream?

  • @bhopvac4658
    @bhopvac4658 2 หลายเดือนก่อน

    Thank you so much Floppy

  • @PurplixGaming
    @PurplixGaming 2 หลายเดือนก่อน +1

    why when I follow every loading screen tutorial all of them just stop at the end and don't complete

  • @Maxgamers425
    @Maxgamers425 13 วันที่ผ่านมา +2

    It did not work

  • @Kaylee_youtub
    @Kaylee_youtub 4 หลายเดือนก่อน +4

    Pin this so people can know GUYS THE SCRIPT IS IN THE DESCRIPTION!!! BELOW THE VID!!! ok that's all👍🏾

  • @bottlebed878
    @bottlebed878 หลายเดือนก่อน

    ty! im getting it so far! not done but hope i get it!

  • @COOL123ONBS
    @COOL123ONBS 4 หลายเดือนก่อน +1

    Good Video, I am now a huge fan of you, I am wondering how to create clan system in Roblox Studio, It would be really useful to my game if you could help me. Thank you keep up the great stuff

  • @石田文正
    @石田文正 4 หลายเดือนก่อน +1

    How can I purchase items with the points displayed on the scoreboard by stepping on blocks?
    i need your help!

  • @aceylifr
    @aceylifr 2 หลายเดือนก่อน +4

    Hey, the first script doesn't seem to work for me. Can you please help? :D

    • @LOZEEEYOUTUBE
      @LOZEEEYOUTUBE 2 หลายเดือนก่อน

      same

    • @Silvers_Luffy
      @Silvers_Luffy 2 วันที่ผ่านมา

      same for me, did u find the solution???

  • @Compkid_vr354
    @Compkid_vr354 4 หลายเดือนก่อน

    Love ur vids! Thx sooo much!

  • @greensummerparc
    @greensummerparc 4 หลายเดือนก่อน

    hey just so you know i subsribed to you but i have a question if you have a main menu do you add another gui?

  • @MobDudeEdits
    @MobDudeEdits 4 หลายเดือนก่อน +2

    Floppy can u make a video how to make a battleground game full video pls

  • @Jordanco1112
    @Jordanco1112 2 หลายเดือนก่อน +1

    my loading screen isn`t working but i did all the steps what do i do???

  • @НевелинВачков
    @НевелинВачков 4 หลายเดือนก่อน +1

    Floppy fish sorry for the disturbing but when I use the real loading screen script it goes to like 14k out of 18k and stops and doesnt move more. Is the problem only with me or no? Please help!

  • @QuackAndJay
    @QuackAndJay 4 หลายเดือนก่อน +1

    W VIDEO 🔥🔥🔥🔥

  • @misterdocuk
    @misterdocuk 4 หลายเดือนก่อน

    Hi, is there a tutorial where you can show us how to make a working button that lights up a screen/part? Would love to see it

  • @RiseOfMappings
    @RiseOfMappings 4 หลายเดือนก่อน +2

    Suggestion:How to make a chat tag selection

    • @RiseOfMappings
      @RiseOfMappings 4 หลายเดือนก่อน

      Pls

    • @RiseOfMappings
      @RiseOfMappings 4 หลายเดือนก่อน

      Chat tag with equip and unequip

    • @RiseOfMappings
      @RiseOfMappings 4 หลายเดือนก่อน

      Chat tag not overheadui

  • @hamza_progamers10
    @hamza_progamers10 3 หลายเดือนก่อน

    deserves a sub

  • @Ani_mm2-qo9mm
    @Ani_mm2-qo9mm 4 หลายเดือนก่อน

    floppyz the best

  • @Koziplayz
    @Koziplayz 12 วันที่ผ่านมา

    i have a problem. when i play test the game it dosent cover the full frame even tho the size is set to: 1.0, 1.0. what do i do

  • @MelonStudios-i4n
    @MelonStudios-i4n 4 หลายเดือนก่อน +8

    the loading screen start loading when u die

    • @ima_monkeh
      @ima_monkeh 4 หลายเดือนก่อน +9

      On the screen gui make sure reset on spawn is unchecked

  • @wickerladygaming6137
    @wickerladygaming6137 หลายเดือนก่อน

    I followed the video and everything works fine! HOWEVER when I test it it randomly freezes at certain 'asset numbers' and i either have to skip or rest ... is that normal?

  • @angus80w
    @angus80w 4 หลายเดือนก่อน +1

    Hey I've got a question, how do I make a camera that tracks a certain part when it moves? It'd be great to know, thanks.

  • @Rodericknicolaas
    @Rodericknicolaas 3 หลายเดือนก่อน

    nah bro you Earned a Sub

  • @ZonyGamesYT
    @ZonyGamesYT 4 หลายเดือนก่อน +3

    how to make red team and blue team game :)

  • @Ang3licxLara
    @Ang3licxLara 2 หลายเดือนก่อน

    i dont know why mine isnt working i copied and pasted ur code and the percentage isnt going up and the moving bar isnt moving but the skip button code works pls help

  • @Max66_yt
    @Max66_yt 4 หลายเดือนก่อน

    Remember to put in a scale element into the MainLoadingScreen fot mobile!

  • @SHOWIESTWIG
    @SHOWIESTWIG 4 หลายเดือนก่อน

    hey i really wanted to know if u could make a video on how to make for example, a gun shop, where the weapons are displayed on a counter along woth the price of the item right under the weapon, then make it to where it takes ingame cash to buy the weapon

  • @RiseOfMappings
    @RiseOfMappings 4 หลายเดือนก่อน +1

    7th day of asking how to make chat tag selection

  • @king_games_ontop5760
    @king_games_ontop5760 4 หลายเดือนก่อน +1

    Yo I use your scripts sometimes for my games. Also we met in liberty (the game at the start I was king_games and was on the phone with you when you were in jail.

  • @em4o516
    @em4o516 2 หลายเดือนก่อน

    Yo why when i reset my character or die the loading screen appears again starts loading

  • @TW4Y0U
    @TW4Y0U 3 หลายเดือนก่อน

    when i press skip the fade is just staying there and not going away can u help?

  • @AntiSepticon
    @AntiSepticon หลายเดือนก่อน

    Day 1 of asking how do i combine/group the Main Menu tutorial and this Loading screen tutorial

  • @Motosebb
    @Motosebb หลายเดือนก่อน

    the bar isn’t moving and the % isn’t going up. copied the script and changed the names too. any ideas?

  • @Fmrfanster
    @Fmrfanster 4 หลายเดือนก่อน +1

    That Neat I Suppose

  • @Benandtom-y
    @Benandtom-y 4 หลายเดือนก่อน +1

    Can you pls make a gui rebirth system with leaderstats pls

  • @jess5661
    @jess5661 3 หลายเดือนก่อน

    I have joined the discord however it says I don’t have access to create a ticket. I followed thjs tutorial and it works perfectly however i don’t know how to either get rid of the menu at the end (without the loading screen not working) or make my own menu with the loading screen still working.

  • @greensummerparc
    @greensummerparc 4 หลายเดือนก่อน

    uh is there something i messed up? because the second frame is not appearing when i put in the mainloadingscreen but does if i put it in the loading

  • @RiseOfMappings
    @RiseOfMappings 4 หลายเดือนก่อน +1

    6th day of asking How to make a chat tag selection

  • @MiT_Moony
    @MiT_Moony 4 หลายเดือนก่อน +1

    and its not loading and working

  • @ghabachiyeh
    @ghabachiyeh 4 หลายเดือนก่อน +1

    NICE

  • @RiseOfMappings
    @RiseOfMappings 4 หลายเดือนก่อน +1

    5th day of asking how to make a chat tag selection

  • @borooroorroor
    @borooroorroor 4 หลายเดือนก่อน

    how can u permanently get an item in ur inventory whenever u join if u click a button

  • @bestgamesgood8506
    @bestgamesgood8506 3 หลายเดือนก่อน

    Notes: When you dont want use fade it might won't work with script (that happens to me)

  • @I_ForgotYT
    @I_ForgotYT 4 หลายเดือนก่อน

    Please make a badge accessible teleporter GUI I can’t figure out how to do that

  • @ravenshowcoolguy
    @ravenshowcoolguy 4 หลายเดือนก่อน

    Can you make a tutorial of a part that’s able to give a free limited

  • @BloxZoom
    @BloxZoom 4 หลายเดือนก่อน +1

    THX!

  • @JipelistiqYTofficial
    @JipelistiqYTofficial 4 หลายเดือนก่อน +2

    Huh the bar doenst move

    • @darianazay
      @darianazay 3 หลายเดือนก่อน

      same

    • @PokeyJokey1
      @PokeyJokey1 23 วันที่ผ่านมา

      @@darianazay Try putting your 'Moving Bar GUI' into your 'Background Bar GUI'. That's what I did wrong. :)

    • @PokeyJokey1
      @PokeyJokey1 23 วันที่ผ่านมา

      Try putting your 'Moving Bar GUI' into your 'Background Bar GUI'. That's what I did wrong. :D

  • @TheRandomLuckyBlock
    @TheRandomLuckyBlock 4 หลายเดือนก่อน +2

    Yessss

  • @TheSquadsStudio12
    @TheSquadsStudio12 4 หลายเดือนก่อน

    now how to build things in roblox studio when the gui is blocking?

  • @RiseOfMappings
    @RiseOfMappings 4 หลายเดือนก่อน +1

    4th day of asking chat tag selection

  • @RiseOfMappings
    @RiseOfMappings 4 หลายเดือนก่อน +1

    3rd day of asking how to make chat tag selection

  • @Rodericknicolaas
    @Rodericknicolaas 3 หลายเดือนก่อน

    At 8:19 im not Adding skip Button bc i have a First person and its long waiting to move so no skip button
    for me

  • @Fizziepop
    @Fizziepop 3 หลายเดือนก่อน

    Thank you! (You forgot to pin the 4th script comment, btw)

  • @roblox_master3778
    @roblox_master3778 4 หลายเดือนก่อน

    Hi Floppy Can you make a home gui like in Brookhaven I make a Game and No one has such good tutorials as you ❤

  • @LenaBanaszak-sc3ph
    @LenaBanaszak-sc3ph 3 หลายเดือนก่อน

    Didn't worked :{ i was doing this 2 times and still didn't work! Maybe i do something wrong?

  • @effkjveoaip
    @effkjveoaip 4 หลายเดือนก่อน

    why do this when you can just put a blank screen wait until game.Loaded fires (unless its alreadty loaded) wait 5 secounds to seem like the game has overly amount of assets then stop sqhowing the blank screen No need to preload

  • @edrianencalanoo-rs5vu
    @edrianencalanoo-rs5vu 4 หลายเดือนก่อน +1

    i love ur videos can u do a flag tool

  • @GDA17752
    @GDA17752 4 หลายเดือนก่อน

    Should do is show us how to make level up badges

  • @Ijsblok_
    @Ijsblok_ 3 หลายเดือนก่อน

    i get something of third party when i test

  • @darianazay
    @darianazay 3 หลายเดือนก่อน

    idk why but my bar just dosent move up

  • @davdavid3233
    @davdavid3233 7 วันที่ผ่านมา

    i added image is it normal?

  • @Maukie
    @Maukie 4 หลายเดือนก่อน +2

    WHERE IS THE REAL SCRIPT ITS NOT IN THE PINNED COMMENT

    • @Itz_FloppyFish
      @Itz_FloppyFish  4 หลายเดือนก่อน

      Sorry, It should be there now!

  • @SMB2574M_SingaporeTransport
    @SMB2574M_SingaporeTransport 4 หลายเดือนก่อน +2

    Thanks for uploading for this! You deserve +20 Subs and pls pin 📌 this😢

  • @Mizuki._.editsz
    @Mizuki._.editsz หลายเดือนก่อน

    it doesnt work for me even tho i folled every step

  • @Bloxy_Cola_Cat
    @Bloxy_Cola_Cat 12 วันที่ผ่านมา

    How do you copy it!???

  • @Johnnyjones23
    @Johnnyjones23 4 หลายเดือนก่อน

    Bro floppy how do duplicate the frame? You didn’t show us how to duplicate

    • @darianazay
      @darianazay 3 หลายเดือนก่อน

      press shift + ctrl + v

  • @ranger2137
    @ranger2137 3 หลายเดือนก่อน

    How to scale it?

  • @lifeoflarrando6471
    @lifeoflarrando6471 3 หลายเดือนก่อน

    can someone help my moving bar wont move

  • @Rodericknicolaas
    @Rodericknicolaas 3 หลายเดือนก่อน

    i don't get that explanation on 11:52