Need help making loading screen

Hello everyone,

I have been trying to create a loading screen like Those Who Remain I have tried a few different ways to achieve this, I have tried to get the bobble work but the problem is I cant put the bobble when the camera is in a part, can’t wobble in first person or the mouse cant move.

I have tried to make the bobble into a image which bobbles but I can not get that working as well.

Help would be appreciated!

Do you want the loading screen or do you want the camera to teleport to the part? I just don’t get it, more because im russian

I need a loading screen, right now I am trying to get a image frame to wobble but I cant get it to work, I had been successful with player camera but I cant make the ImageLable work.

can you send the wobble script?

I found this somewhere on the devfourm, while I was trying to resolve my problem

local t = 1/10

local X = 10 * math.cos(t / 2)

local Y = 5 * math.sin(t)

local Z = 0

local P = UDim2.new(X, Y, Z)
local t = 1/25

local X = 0.1 * math.cos(t / 2)
local Y = 0.1 * math.sin(t)
local Z = 0
local P = UDim2.new(X, Y, Z)

the numbers are huge, try something like this

Same problem I can not get it to work.

The wobbling menu screen? With the play button? If so your script isn’t working because the menu screen in game is not an image wobbling it’s a physical model in-game with a wobbling camera. You can tell this by the depth of the characters and objects in the menu screen.

this tutorial goes over how to make the camera move w the mouse like that. it should be able to help you.