Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do you make a play screen like dungeon quest? [closed]

Asked by 4 years ago

I want to make a play screen when people join, the loading screen is hovering over the map. If you don't understand me, its like the dungeon quest one. Thanks.

0
I would recommend a cut scene plugin Eric_pokemon 133 — 4y
0
Ok thanks!! TheKingOfDaMemes 24 — 4y

Closed as Not Constructive by Nguyenlegiahung, ScuffedAI, User#32819, Spjureeedd, moo1210, and zblox164

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
0
Answered by 4 years ago
Edited 4 years ago

This is very simple. Insert a part in the workspace and lets call this part Camera so name it Camera. Insert a screengui in the StarterGui then insert a local script in screengui.

local script in screen gui

local player = game.Players.LocalPlayer

local character = player.Character

local camera = workspace.CurrentCamera

repeat wait()
    camera.CameraType = Enum.CameraType.Scriptable
until camera.CameraType == Enum.CameraType.Scriptable--lets you script the camera

camera.CFrame = workspace.Camera.CFrame
local blur = Instance.new("BlurEffect",camera)-- gives a nice blur effect

then add a button in the screen gui

local script in button

script.Parent.MouseButton1Click:Connect(function()--if click function happens
    script.parent.parent.Enabled = false --functions
    workspace.CurrentCamera.CameraType = Enum.CameraType.Custom
    workspace.CurrentCamera.Blur.Enabled = false
end)

or just use a cutscene plugin because that's easier

0
I used plugin thanks! TheKingOfDaMemes 24 — 4y
Ad