I TESTED 100 UPDATE SECRETS (Brookhaven)

Поділитися
Вставка
  • Опубліковано 6 січ 2025

КОМЕНТАРІ • 73

  • @AnthonyMerrill-s9b
    @AnthonyMerrill-s9b Місяць тому +2

    Please be friends with me

  • @RemirCanlas
    @RemirCanlas Місяць тому +1

    I hope there's a Halloween 🎃 I I'm going to love it pls nando make that pls im going to love in pls nando plsplspls

  • @milestherandomeditor
    @milestherandomeditor Місяць тому +1

    HOW ARE YOU BREAKING STUFF WITH THE HAMMER

  • @thamarapriyadarshani-o2q
    @thamarapriyadarshani-o2q Місяць тому +1

    Thanks for interdoucing

  • @peterdinosaur
    @peterdinosaur Місяць тому +1

    I love your video Nanndo - Roblox Movies ❤ lets get Angelazz 200k subscribers.❤❤❤

  • @SamuelAsherPaule
    @SamuelAsherPaule Місяць тому +1

    There's a coffin inside of the grocery store on top of the storage room of the grocery store there's a grave there and i is zoom it is mr brookhaven grade

  • @nottplays115onroblox6
    @nottplays115onroblox6 Місяць тому +5

    Cool video
    You Did Good

    • @Daley-w9y
      @Daley-w9y Місяць тому

      Beeping beeping
      Beep beep
      Beep
      Bee
      Be
      B

  • @MarioRuiz-xl2re
    @MarioRuiz-xl2re Місяць тому +1

    I😢want😢😢the😢😢old😢😢one😢😢back

  • @Jobroblogs
    @Jobroblogs Місяць тому +1

    I like the new look of the grocery store!🎉

  • @Preppyfan-z3s
    @Preppyfan-z3s Місяць тому +2

    I’m your new biggest fan of all time I love your videos and your content 😊

  • @PipinPrasetyono
    @PipinPrasetyono Місяць тому +1

    I like you😊

  • @kalpanasalunke9886
    @kalpanasalunke9886 Місяць тому +1

    It seems like you're asking for a "Brookhaven Map" script or a map concept for use in Roblox, but Roblox doesn't have an easy way to directly create a "map" without the use of Roblox Studio for building. Since I can’t build in Roblox Studio directly, I’ll help you by outlining how you could create a fun Brookhaven-inspired map or setting that you could build in Roblox Studio.
    Here’s a simple guide for creating a map inspired by Brookhaven, along with basic scripting ideas for interactivity. You could then use this as a foundation to build your own game!
    ---
    Brookhaven Map Concept for Roblox Studio
    1. Create the Basic Layout
    Residential Areas: Start by adding houses and neighborhoods. Place houses around the map like in Brookhaven, ensuring that each house has a front yard, driveway, and a backyard.
    Public Spaces: Add parks, playgrounds, and public places such as:
    Brookhaven Park: A large area with trees, benches, a small lake, and a walking path.
    Brookhaven Mall: A multi-level mall with stores like a clothing shop, electronics store, and more.
    Brookhaven School: A school area with classrooms, playgrounds, and a sports field.
    Brookhaven Police Station: A building for roleplaying as officers and getting arrested, with a garage to house police vehicles.
    Brookhaven Hospital: A medical center where people can roleplay as doctors or patients.
    2. Add Vehicles
    Cars and Bikes: You can use vehicles that players can drive around the map. In Roblox Studio, you can create simple cars or import free models from the Roblox library.
    Buses and Trucks: Add some larger vehicles for transportation, like a bus or delivery trucks to make the world feel more alive.
    3. Interactive Objects
    You can add interactive elements in your map that allow players to roleplay. For example:
    Doors that open and close when players interact with them.
    Lights that can be toggled on/off, perfect for night-time roleplay.
    Computers and Phones: Players can roleplay using them.
    Garage Doors that open when a player enters a car.
    4. Scripting for Basic Interactivity in Roblox Studio
    Here’s a simple Lua script for interactive doors, like the ones in Brookhaven homes:
    Script for an Interactive Door (Place this inside a Part that you want to act as a door):
    -- Script to toggle door open/close
    local door = script.Parent
    local doorOpen = false
    -- Function to toggle the door
    local function toggleDoor()
    if doorOpen then
    -- Close door (example: moving the door part to a closed position)
    door.CFrame = door.CFrame * CFrame.new(0, 0, 5)
    else
    -- Open door (example: moving the door part to an open position)
    door.CFrame = door.CFrame * CFrame.new(0, 0, -5)
    end
    doorOpen = not doorOpen
    end
    -- Detect click event
    door.Touched:Connect(function(hit)
    if hit.Parent:FindFirstChild("Humanoid") then
    toggleDoor() -- Toggle the door whenever a player touches it
    end
    end)
    This script makes the door move when touched by a player.
    You can adjust the CFrame.new(0, 0, 5) or CFrame.new(0, 0, -5) values to move the door further or closer, depending on your desired "open" and "close" positions.
    5. Day/Night Cycle Script
    A day/night cycle script can create a realistic world where the time changes as players interact with the map.
    -- Script for Day/Night Cycle (place in **ServerScriptService**)
    local lighting = game:GetService("Lighting")
    -- Set up cycle times (in seconds)
    local dayLength = 60 -- One minute for a full day cycle
    while true do
    -- Start Daytime
    lighting.TimeOfDay = "14:00:00" -- Afternoon (2 PM)
    lighting.Brightness = 2 -- Brightness of the day
    wait(dayLength / 2) -- Wait for half of the day (morning to evening)
    -- Start Nighttime
    lighting.TimeOfDay = "00:00:00" -- Midnight
    lighting.Brightness = 0.2 -- Dim light for night
    wait(dayLength / 2) -- Wait for half of the night (evening to morning)
    end
    This script changes the time of day every 30 seconds in the game, simulating a 24-hour cycle (you can adjust the time length by modifying dayLength).
    6. Customizable Shops and Stores
    You can create stores or shops where players can "purchase" items. Here's a basic idea for a store:
    Create a Store GUI: A simple GUI that opens when players click on a store sign, allowing them to select items.
    Add Currency: You could have an in-game currency that players use to buy items (like food, clothes, or even accessories for their avatar).
    ---
    Building the Map in Roblox Studio
    If you're new to Roblox Studio, here’s a basic guide to get started:
    1. Open Roblox Studio.
    2. Create a New Place.
    3. Build the Town: Use the “Parts” tool to place roads, houses, and shops. You can also search for Brookhaven-inspired models in the Roblox Toolbox (look for houses, parks, or vehicles).
    4. Set Up Lighting: Use the Lighting service to control the time of day, brightness, and effects.
    5. Scripts and Interactivity: Write and place scripts for things like interactive doors, day/night cycles, and vehicles.
    ---
    Conclusion
    This is just a starting point to help you create a Brookhaven-inspired map in Roblox Studio. Once you have the basic structure, you can start adding more detail, like custom vehicles, houses, and interactive areas. Scripting in Roblox Studio will also allow you to make the environment feel alive and interactive!
    If you're new to Roblox Studio, you can find many tutorials online that teach you how to build and script. Best of luck building your Brookhaven-inspired world!

  • @Ibrahim_7100
    @Ibrahim_7100 Місяць тому +11

    Nanndo is so much better than these other Brookhaven you tubers like O1G who is just so weird and starts waffling abt random stuff

  • @Buddyplaz
    @Buddyplaz Місяць тому +3

    Hi

  • @Pitbull2216
    @Pitbull2216 Місяць тому +1

    new update im go to playy

  • @HarkaThapa-i2f
    @HarkaThapa-i2f Місяць тому +2

    Canon hey Nana, I think you should do the most most weirdest secrets
    When you never did

  • @ShamelleArroyo
    @ShamelleArroyo Місяць тому +1

    6:40 nanndo i think the mirror is broken click the like button on this comment if you agree with me❤

  • @peteremperor
    @peteremperor 18 днів тому

    Your content always adds so much value. 🙌 Thank you for sharing your expertise and making this topic easier to understand.

  • @lyndzydallego8271
    @lyndzydallego8271 Місяць тому +2

    7h early

  • @TBNBATTLES
    @TBNBATTLES Місяць тому +1

    Hi Nanndo

  • @Peterhaven2024
    @Peterhaven2024 4 години тому

    Thank you for this amazing guide! Your clear explanations make learning a pleasure. I can’t wait to see what you create next! 🌟🎉

  • @kareemacdal2145
    @kareemacdal2145 Місяць тому

    I like the Latest more
    Avatar

  • @KakoaGaming
    @KakoaGaming Місяць тому +2

    I was the 59th like

    • @Buddyplaz
      @Buddyplaz Місяць тому +1

      I was the 68 like

  • @kalpanasalunke9886
    @kalpanasalunke9886 Місяць тому

    -- Variables
    local floor = game.Workspace.Floor -- The part that represents the floor (you can change this to whatever part you're using)
    local lavaColor = Color3.fromRGB(255, 0, 0) -- Lava color (red)
    local timeUntilLava = 30 -- Time in seconds until the floor becomes lava
    local damageTime = 5 -- Time in seconds for lava damage interval
    local lavaHeight = 0.5 -- Height of the lava part (adjust for your needs)
    -- Function to create lava
    local function turnFloorToLava()
    -- Change the floor to lava color
    floor.BrickColor = BrickColor.new(lavaColor)
    -- Make the floor kill players who touch it
    local lavaPart = Instance.new("Part")
    lavaPart.Size = Vector3.new(floor.Size.X, lavaHeight, floor.Size.Z)
    lavaPart.Position = floor.Position - Vector3.new(0, floor.Size.Y/2 + lavaHeight/2, 0)
    lavaPart.Anchored = true
    lavaPart.CanCollide = true
    lavaPart.BrickColor = BrickColor.new(lavaColor)
    lavaPart.Material = Enum.Material.Neon
    lavaPart.Parent = game.Workspace
    -- Detect if players touch the lava
    lavaPart.Touched:Connect(function(hit)
    local character = hit.Parent
    local humanoid = character:FindFirstChildOfClass("Humanoid")
    if humanoid then
    humanoid:TakeDamage(10) -- Apply damage to the player when they touch the lava
    end
    end)
    -- Set the lava part to disappear after a while (Optional)
    wait(damageTime)
    lavaPart:Destroy()
    end
    -- Function to reset the game after lava is active
    local function resetFloor()
    -- Wait until the lava time ends
    wait(timeUntilLava)
    -- Turn the floor into lava
    turnFloorToLava()
    -- Reset the floor to normal after some time (Optional)
    wait(timeUntilLava)
    floor.BrickColor = BrickColor.new("Bright blue") -- Or reset to the original floor color
    end
    -- Start the game
    while true do
    resetFloor()
    end

  • @Preppyfan-z3s
    @Preppyfan-z3s Місяць тому

    I subscribe and Like your video

  • @lorrainelynch6119
    @lorrainelynch6119 Місяць тому

    Yes

  • @lyraheiresseyo1204
    @lyraheiresseyo1204 Місяць тому

    ME TOO😊

  • @isaiahpgaming
    @isaiahpgaming Місяць тому

    im a og Brookhaven player but i forgot alot of OG things :(

  • @dayanaayala2961
    @dayanaayala2961 Місяць тому

    hi 🎉 I just wanted to let you know that I am not going to be able to make it to the meeting tomorrow morning to see if I can get a hold

  • @yaganababaabba5934
    @yaganababaabba5934 Місяць тому +4

    Please friend me ❤

  • @Juice_wrld_fan12
    @Juice_wrld_fan12 Місяць тому

    Is there an update tomrrow bc its friday tomrrow

  • @Daley-w9y
    @Daley-w9y Місяць тому

    New Car

  • @jessicajazminmorenomendez1392
    @jessicajazminmorenomendez1392 Місяць тому +1

    I did

  • @moanastacey1752
    @moanastacey1752 Місяць тому

    I have your account which time should we play?

  • @Fort_labs
    @Fort_labs Місяць тому

    I liked your face reveal

  • @shazzz69
    @shazzz69 Місяць тому

    Can you do a face reveal?

  • @adriennel8235
    @adriennel8235 Місяць тому

    Doritos😢😢😢

  • @Sonicito18
    @Sonicito18 Місяць тому +3

    I’m a UA-camr

  • @CEW2-y8w
    @CEW2-y8w Місяць тому

    Sup

  • @Daley-w9y
    @Daley-w9y Місяць тому

    🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈

  • @DaichaDelpe
    @DaichaDelpe Місяць тому +1

    Gikgg

  • @kalpanasalunke9886
    @kalpanasalunke9886 Місяць тому

    See this all script and make brookhaven as floor is lava

  • @smithajogunoori6610
    @smithajogunoori6610 Місяць тому

    i know

  • @Thisistheway59
    @Thisistheway59 Місяць тому +1

    The video only has 38 likes

  • @moanastacey1752
    @moanastacey1752 Місяць тому

    You’re killing me. Let’s play right now. I’m really begging, begging begging you go.

  • @Aurora-s6h
    @Aurora-s6h Місяць тому

    mx3

  • @masondalgarno511
    @masondalgarno511 Місяць тому

    Mmjjmmyuiio per tweet 🐣 😂😂😂😂😂😂😂😂

  • @schoolisbad1961
    @schoolisbad1961 Місяць тому

    ⬛🟥

  • @moanastacey1752
    @moanastacey1752 Місяць тому

    Let’s play right now please stop making videos and play with me or you can make videos, but I mean the videos let’s do some life, hacks and secrets

  • @pykuionut1966
    @pykuionut1966 Місяць тому

    no

  • @chrstinazavala5485
    @chrstinazavala5485 Місяць тому

    Nando
    Add me in Roblox I’m trying to add you

  • @KristjanIceland
    @KristjanIceland Місяць тому

    can you frend my my username is fornite aktutaktu20

  • @moanastacey1752
    @moanastacey1752 Місяць тому

    I have your account which time should we play?