У нас вы можете посмотреть бесплатно How to make cutscene event --{200 special} или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
server:local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") -- Create / get RemoteEvent local event = ReplicatedStorage:FindFirstChild("GlobalCutscene") if not event then event = Instance.new("RemoteEvent") event.Name = "GlobalCutscene" event.Parent = ReplicatedStorage end -- Admin list local Admins = { ["keonispangit"] = true, ["KingLite67"] = true } -- Chat command trigger Players.PlayerAdded:Connect(function(player) player.Chatted:Connect(function(msg) if Admins[player.Name] and msg == "!cutscene" then event:FireAllClients() end end) end) -- Button trigger from client event.OnServerEvent:Connect(function(player) if Admins[player.Name] then event:FireAllClients() end end) client:-- SERVICES local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local player = Players.LocalPlayer local camera = workspace.CurrentCamera local cutsceneEvent = ReplicatedStorage:WaitForChild("GlobalCutscene") -- ===================== -- ADMIN LIST (MUST MATCH SERVER) -- ===================== local Admins = { ["keonispangit"] = true, ["KingLite67"] = true } -- Stop if not admin if not Admins[player.Name] then return end -- ===================== -- UI BUTTON -- ===================== local gui = Instance.new("ScreenGui") gui.Name = "CutsceneButtonGui" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") local button = Instance.new("TextButton") button.Parent = gui button.Size = UDim2.fromOffset(60, 60) button.Position = UDim2.new(1, -70, 1, -70) button.BackgroundColor3 = Color3.fromRGB(144, 238, 144) -- light green button.Text = "▶" button.TextScaled = true button.Font = Enum.Font.GothamBold button.TextColor3 = Color3.new(1,1,1) Instance.new("UICorner", button).CornerRadius = UDim.new(0, 12) local stroke = Instance.new("UIStroke", button) stroke.Color = Color3.fromRGB(60, 160, 60) stroke.Thickness = 2 -- ===================== -- CUTSCENE FUNCTION -- ===================== local function playCutscene() camera.CameraType = Enum.CameraType.Scriptable local index = 1 while true do local camPart = workspace:FindFirstChild("Camera" .. index) if not camPart then break end camera.CFrame = camPart.CFrame task.wait(3) index += 1 end camera.CameraType = Enum.CameraType.Custom end -- ===================== -- BUTTON → SERVER -- ===================== button.MouseButton1Click:Connect(function() cutsceneEvent:FireServer() end) -- ===================== -- SERVER → CLIENT -- ===================== cutsceneEvent.OnClientEvent:Connect(function() playCutscene() end)