Logo video2dn
  • Сохранить видео с ютуба
  • Категории
    • Музыка
    • Кино и Анимация
    • Автомобили
    • Животные
    • Спорт
    • Путешествия
    • Игры
    • Люди и Блоги
    • Юмор
    • Развлечения
    • Новости и Политика
    • Howto и Стиль
    • Diy своими руками
    • Образование
    • Наука и Технологии
    • Некоммерческие Организации
  • О сайте

Скачать или смотреть Coding your ideas on Roblox Studio - Everything turns black!

  • Nobel Courses
  • 2025-03-21
  • 720
Coding your ideas on Roblox Studio - Everything turns black!
Roblox StudioGame DesignRobloxRobloxStudioRobloxScriptingLuaScriptRobloxTutorialGameDevRobloxGameDevelopmentBeginnerCodingCodingForKidsTouchScriptRobloxEffectsDarkModeRobloxScriptingTutorialRobloxBeginnersLearnToCodeGameDesignRobloxGameIdeasStudentProjectsRobloxStudioTipsSimpleScriptsRobloxDevTips
  • ok logo

Скачать Coding your ideas on Roblox Studio - Everything turns black! бесплатно в качестве 4к (2к / 1080p)

У нас вы можете скачать бесплатно Coding your ideas on Roblox Studio - Everything turns black! или посмотреть видео с ютуба в максимальном доступном качестве.

Для скачивания выберите вариант из формы ниже:

  • Информация по загрузке:

Cкачать музыку Coding your ideas on Roblox Studio - Everything turns black! бесплатно в формате MP3:

Если иконки загрузки не отобразились, ПОЖАЛУЙСТА, НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если у вас возникли трудности с загрузкой, пожалуйста, свяжитесь с нами по контактам, указанным в нижней части страницы.
Спасибо за использование сервиса video2dn.com

Описание к видео Coding your ideas on Roblox Studio - Everything turns black!

JOIN THE DISCORD:   / discord  

CODE:
local part = script.Parent
local debounce = false

local function makeEverythingBlack()
-- Change lighting
local lighting = game:GetService("Lighting")
lighting.Ambient = Color3.new(0, 0, 0)
lighting.OutdoorAmbient = Color3.new(0, 0, 0)
lighting.Brightness = 0

-- Change all parts to black
for _, obj in pairs(game.Workspace:GetDescendants()) do
if obj:IsA("BasePart") then
obj.Color = Color3.new(0, 0, 0)
obj.Material = Enum.Material.SmoothPlastic
end
end
end

local function onTouch(hit)
if debounce then return end
debounce = true

local character = hit.Parent
if character and character:FindFirstChild("Humanoid") then
makeEverythingBlack()
end
end

part.Touched:Connect(onTouch)



Learn how to make everything in your Roblox game turn black when a player touches a part — using a simple and powerful Lua script in Roblox Studio!

This idea came straight from one of my students, and in this tutorial, I show you how to bring it to life step-by-step.

🎯 What you’ll learn:
How to detect when a part is touched
How to change all part colors to black
How to adjust lighting to make the entire game go dark
💡 Perfect for horror games, dramatic scenes, secret rooms, or pranks!

📥 Copy and paste the code from the video
🧠 Beginner-friendly scripting tutorial

Don’t forget to 👍 Like, 🔔 Subscribe, and 💬 Comment your own ideas — I might turn them into the next video!

Комментарии

Информация по комментариям в разработке

Похожие видео

  • О нас
  • Контакты
  • Отказ от ответственности - Disclaimer
  • Условия использования сайта - TOS
  • Политика конфиденциальности

video2dn Copyright © 2023 - 2025

Контакты для правообладателей [email protected]