About 478,000 results
Open links in new tab
  1. How do I create a folder using Instance.new? - Roblox

    Sep 29, 2021 · Hi there, how do you create a folder using Instance.new? I can’t seem to wrap my head around such a simple thing. I’ve tried looking on the DevHub but I still don’t understand how to create a folder specifically.

  2. How to make leaderstats in roblox studio | For beginners

    Jul 2, 2022 · 2) We need to detect if the player joins First of all, you need to detect if a player joins. We’ll do: game.Players.PlayerAdded:Connect(function(player) end) Great, now we have successfully detected if a player joins. 3) Lets make a folder inside the player. game.Players.PlayerAdded:Connect(...

  3. How do I save a Folder with datastore - Roblox

    Nov 1, 2021 · So I am making a tycoon game and I want to save the users purchases like when they buy a dropper or a conveyor belt, etc. So basically I just want to save the stuff which is inside this folder when they leave and load it back in when they claim a tycoon. this is my datastore script as of now local ds = game:GetService("DataStoreService"):GetDataStore("SaveData") local BoughtItems = game ...

  4. Picking a random object within a folder - Roblox

    Oct 15, 2019 · PickedItem) Basically, I’m trying to create a system that chooses a random item from a folder, that then places the chosen item into the map. I’ve got the randomizer done. I just don’t know how to select the chosen object from the fol...

  5. Folder Structure - Organize your game into folders for easy

    Dec 30, 2021 · 👋 Hey, 🗂 Do you want to organize your game? Well, you came to the right place. You can use this pack I made to easily structure your game and have it easy to read & access. :roblox_light: Most developers tend to skip the step of organizing their game, and later will find it much harder to find and add things because everything is messy. This is why keeping things organized is such an ...

  6. How to create a folder in Explorer tab (Roblox Studio) : r/roblox

    Jun 4, 2018 · 17 years later, Roblox still haven't added option to install on different drive (for me i need to install roblox on 2 TB (D:) drive because 100 GB (C:) drive is almost full upvotes · comments

  7. How to Parent a Character into a Folder - Roblox

    Jul 12, 2020 · This code doesn’t work, but the title explains the purpose. Players = game:GetService("Players";) Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) character.Par…

  8. How do I convert a folder containing values into a table ... - Roblox

    Mar 2, 2020 · So im trying to be more efficient with my work, and so instead of having a lot of data stores, i can just use one. The loading in seems to work fine, but i don’t really know how i would convert a folder with values in it into a table. Could someone help me? local https = game:GetService("HttpService") local ds = game:GetService("DataStoreService") local pds = ds:GetDataStore("PlayerData ...

  9. How do i make the players character be in a folder? - Roblox

    Jan 27, 2023 · Hi so im making an fps game, and i am making an gun npc that targets enemies at a certain folder, how do i do this. so everytime when a player joins their character is in a folder, instead of workspace.

  10. How can I put all players in a folder when they join to the ... - Roblox

    Mar 12, 2021 · Because of that it’s parented to workspace after that code parents it to the folder. This might work. game.Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) character.Archivable = true character.AncestryChanged:Wait() character.Parent = workspace.npc_directory end) end)

Refresh