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.
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!
i have a problem i yust tried to make a loading screen i followd the video and it does't work (the loadingbar ist loading and the % isnt going up ) and the frame that needs to covver the hole screen is leaving a 1/4 of the screen not covvert (it only does't covver if you play) can you help me? I am in your Discord group but i can't sent any thing
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
He puts spaces on the text label "Progess Text" make sure you delete that space for it to work. Make sure to do it for the hint texts as well. Hope this helps!
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!
If a script isn’t working, check that the names of the objects in your game exactly match the names in the script. Even a small difference, like an extra space or capitalization, can cause the script to stop working. Adjust the names in the script to match your objects, or rename your objects to match the script’s references.
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
did not actually know u can tween ui. also i thought you would use replicatedfirst since it loads first before anything else. im still trying to make a loading screen using replicated first i just dont know how to change the text, i still have alot to learn. i just assumed it loads stufffirst
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 💀
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
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!
The Fake loading Script Is Not Working For Some Reason To Me. When I Press Play, it just shows the screen, but nothing happens. I Just Don't get it. Can You Please Help me?
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.
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
Floppy for some reason it didnt quite work everything is frozen and i followed the instructions. It says "Too many requests" on the output.. can you help?
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?
Go to the screengui of the loading screen and then open properties and there should be a checkbox called "Resetonspawn", just disable it and it won't open again
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
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
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.
Thanks floppy I’m gonna add the loading screen from your tutorial to my game! 🎉
You forgot to pin this lol
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
When I did it it didn’t load and and fade is not gone
thanks
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!
i have a problem i yust tried to make a loading screen i followd the video and it does't work (the loadingbar ist loading and the % isnt going up ) and the frame that needs to covver the hole screen is leaving a 1/4 of the screen not covvert (it only does't covver if you play) can you help me? I am in your Discord group but i can't sent any thing
You know it's a good day when floppy uploads
Yep it’s true!
I Love His Skillz
I Love His Videos
His Videos Help A Lot!!
Yes
dont you just love how he leaves the scripts in the video. best youtuber ever.
@@xojstar yoo fr
ikr
Fr
It's why I like watching his tutorials instead others
@
WHERE WERE YOU FLOPPY😭😭I NEEDED THIS TURTORIAL SO LONG AGO
same to you i am watin for 2 mounth this video
@@CEVESLeg while you waited, you could've just found a video of it, it also works
SAME
Bro is the best tutorial creator he even leaves the scripts in the description. W
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
same!
same
same
same
He puts spaces on the text label "Progess Text" make sure you delete that space for it to work. Make sure to do it for the hint texts as well. Hope this helps!
Floppy it’s not working for me
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!
Thanks so much for the support!
I like how its customizable because then its not like everyones who watched this video is the same
Bald video
What a bald donation
very very bald
@@Itz_FloppyFishman u got the 79k robux (joke)
wow !
2 baldos fighting
not a single one of ur tuts have worked🔥
There working just do it right🔥
blud just watch the video
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
Subscribed! Wonderful and usefull thing ty
BROTHA U LEGEND I WAS LITERALLY SCOUTING THE INTERNET FOR A TUTORIAL
FINALLY I CAN ADD A LOADING SCREEN IN MY GAME! THANKS FLOPPY!
If a script isn’t working, check that the names of the objects in your game exactly match the names in the script. Even a small difference, like an extra space or capitalization, can cause the script to stop working. Adjust the names in the script to match your objects, or rename your objects to match the script’s references.
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
When ever I press skip the fade doesn't disapear so there is just a black sqaure on the screen... please help me
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
I did
@@Mr_TaurusGuy I've always felt like the only one
lol
It didn't work for me can anyone help me when i played it the loading screen didn't load
yoo i just have a question pls what app do you use to edit your videos?
Thank you very much it worked flawlessly so i am eternally grateful for that
I NEEDED THIS THANKS FLOPPY
So good mate!
also floppy I put all notifications to your channel so I don’t miss your live!
Floppy such a lifesaver ❤❤❤
you know you HAVE to develop when floppy uploads : )
why when I follow every loading screen tutorial all of them just stop at the end and don't complete
Hey, the first script doesn't seem to work for me. Can you please help? :D
same
same for me, did u find the solution???
@@Silvers_Luffyfor me too
Pin this so people can know GUYS THE SCRIPT IS IN THE DESCRIPTION!!! BELOW THE VID!!! ok that's all👍🏾
did not actually know u can tween ui. also i thought you would use replicatedfirst since it loads first before anything else. im still trying to make a loading screen using replicated first i just dont know how to change the text, i still have alot to learn. i just assumed it loads stufffirst
Great video this really helped me create my first game
the best youtuber in the world!
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
Thanks For Helping Me!
I need this thx floppy:)
Ikr
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 💀
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.
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?
OMG THIS IS SO COOL
Great tutorial tyvm for sharing.
1k vid liker 🎉🎉🎉
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
floppy is always here when i need him your the G floppy
i love your tutorials
When are you doing your next stream?
Suggestion:How to make a chat tag selection
Pls
Chat tag with equip and unequip
Chat tag not overheadui
Remember to put in a scale element into the MainLoadingScreen fot mobile!
How can I purchase items with the points displayed on the scoreboard by stepping on blocks?
i need your help!
Floppy can u make a video how to make a battleground game full video pls
Thanks so much bro !! but can you make an round system / intermission
tutorial thanks so much tho
Good tutorial but how do i make the loading screen, ScreenGUI disappear upon it's loaded and display a different ScreenGui?
7th day of asking how to make chat tag selection
Love ur vids! Thx sooo much!
6th day of asking How to make a chat tag selection
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!
Thank you so much Floppy
Huh the bar doenst move
same
@@darianazay Try putting your 'Moving Bar GUI' into your 'Background Bar GUI'. That's what I did wrong. :)
Try putting your 'Moving Bar GUI' into your 'Background Bar GUI'. That's what I did wrong. :D
menu doesnt cover up the whole screen
in your screengui turn on ignoreguiinset
go to screengui properties and enabled IgnoreGuilnset
5th day of asking how to make a chat tag selection
how to make red team and blue team game :)
get a free model of one
ty! im getting it so far! not done but hope i get it!
and its not loading and working
Notes: When you dont want use fade it might won't work with script (that happens to me)
YOUR SO HELPFUL
W VIDEO 🔥🔥🔥🔥
The Fake loading Script Is Not Working For Some Reason To Me. When I Press Play, it just shows the screen, but nothing happens. I Just Don't get it. Can You Please Help me?
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
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.
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
how do you get the thing off of your screen in studios
4th day of asking chat tag selection
floppyz the best
it’s not working for me 21:15… like it’s not moving or something NOTHING pls someone help me fix it i rlly want to make my own game
Can you pls make a gui rebirth system with leaderstats pls
Pls
3rd day of asking how to make chat tag selection
Yo why when i reset my character or die the loading screen appears again starts loading
the loading screen start loading when u die
@ima_monkeh tyvm i couldn't figure it out
@ima_monkeh thanks man I was stuck on this for ages
@Sharky-1vrhowee
Floppy for some reason it didnt quite work everything is frozen and i followed the instructions. It says "Too many requests" on the output.. can you help?
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?
how can u permanently get an item in ur inventory whenever u join if u click a button
deserves a sub
the bar isn’t moving and the % isn’t going up. copied the script and changed the names too. any ideas?
it doesnt work for me even tho i folled every step
my loading screen isn`t working but i did all the steps what do i do???
How do you stop it from the loading screen appearing if you die?
click on loading gui or whatever you named it in the properties tab un check ResetOnSpawn
nah bro you Earned a Sub
when i press skip the fade is just staying there and not going away can u help?
i love ur videos can u do a flag tool
why it dont work for me i tried everything ive been trying so many diferent things ive been at it 5 days
Thanks for uploading for this! You deserve +20 Subs and pls pin 📌 this😢
I have ran into a little issue, when I die the loading screen re-appears, how do I fix that?
Go to the screengui of the loading screen and then open properties and there should be a checkbox called "Resetonspawn", just disable it and it won't open again
@MoonWasHere13 Thank you!
WHERE IS THE REAL SCRIPT ITS NOT IN THE PINNED COMMENT
Sorry, It should be there now!
IT DIDINT WORK😭😭😭😭😭😭😭😭😭😭😭
Same
I KNOW
now how to build things in roblox studio when the gui is blocking?
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
this literally makes it so no one can join my game 🤣its stuck at 5/12978 what do i do
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
idk why but my bar just dosent move up