Roblox devforum

/r/Roblox

2010.04.10 05:55 /r/Roblox

A community for Roblox, the free game building platform. This community is unofficial and is not endorsed, monitored, or run by Roblox staff.
[link]


2020.07.02 23:28 Strongjohnf DevForum

Hello we're the Roblox DevForum Community
[link]


2019.08.20 16:57 marclapin TheMayhemSyndicate

Welcome to TMS, we unite as brothers in arms and cause chaos to big groups and militaries all across Roblox. Using high tech weapons and alien technology we bend the armies to our will. Glory to the syndicate.
[link]


2023.03.16 03:44 ProBatFileUser12 Error in dark dex

Why does this thing show up when I try to save a game in dark dex and when I open it this pops up:
Sorry, this place could not be loaded. Details: "BaseWrap must be parented to a MeshPart."
If you continue to encounter this error, please report it on the Developer Forum.
Incident ID: 312570834208985387
submitted by ProBatFileUser12 to SynapseX [link] [comments]


2023.03.09 08:51 justgames12 Banned for testing/uploading my shirts?

So I found this method on *the official devforum* that I could test my shirt by inserting the image into the shirt template category in an avatar rig. Turns out it got me banned for a day? Im fortunate enough that I don't have free time to play until tomorrow(meaning I can get on roblox the moment Im unbanned), but how did this happen? I never put anything harmful in the file or the content in the file, just some child friendly merch. Another question about uploading it, I was able to upload the previous version of the shirt to roblox, but after 24 hours it hasn't been checked by the moderation bots, meaning I still can't wear it. Can I still wear the shirt I've uploaded without premium as I haven't seen much context from other websites. Any help for any of my concerns would be appreciated!
Reason:
https://preview.redd.it/xh27r1115oma1.png?width=1917&format=png&auto=webp&s=656f5184385acaa4b4f57cf5d5e97462a75203d8
The File and the file name(nothing bad):
https://preview.redd.it/rqw3rh175oma1.png?width=363&format=png&auto=webp&s=50f14c45219266999a7104de9314b80a5ebec6a3
submitted by justgames12 to RobloxDevelopers [link] [comments]


2023.03.03 19:53 Itsjack55 Kreekcraft explain yourself

Kreekcraft explain yourself submitted by Itsjack55 to bloxymemes [link] [comments]


2023.03.02 20:12 Accomplished-Storm39 Now live:

Improvements to Model Level of Detail (LOD). This upgrade involves increasing the Model LOD resolution and capturing the model’s shape and color more accurately, resulting in improved quality. Learn more + how to enable: https://devforum.roblox.com/t/improvements-to-model-level-of-detail-
submitted by Accomplished-Storm39 to TheBloxyNews [link] [comments]


2023.02.27 00:11 Actual-Peanut-3991 how to change values inside a module script.

making a script for https://www.roblox.com/games/9009381767/Something-about-zombies-idk and decided to make a tutorial for editing modules.
-- [[ module editing 101 ]] --
I only tested this on synapse but it probably works for everything else other then jjsploit.
to get started you need to know how require works.
require() is used for different things. Infecting games, requiring another modules source, and what we are doing is changing values inside a module. (you can also just observe devforums)
so basically all you need to do is find where the module value is. (path) you can use dex and right click > copy path. put "require(path).Whateverurchanging = 2" or "require(path).Whateverurchanging = true"
people on v3rmillion make it over complicated for no fucking reason.
submitted by Actual-Peanut-3991 to robloxhackers [link] [comments]


2023.02.24 07:26 def_Python waba waba bmp image renderer (original rendering code made by https://devforum.roblox.com/u/blokav, i just modified it to do the stuff i want and work a little bit better)

waba waba bmp image renderer (original rendering code made by https://devforum.roblox.comblokav, i just modified it to do the stuff i want and work a little bit better) submitted by def_Python to roblox [link] [comments]


2023.02.22 20:58 ThisIsMyUseranme No matter what i do it for some reason it doesnt detect mouse.Button1Down:Connect(function()

-- I am using a prebuilt placement module. Link is here: https://devforum.roblox.com/t/how-to-use-placement-service/698753
-- Defining locals V
local players = game:GetService("Players")
local player = players.LocalPlayer
local count = game.ReplicatedStorage.Counts.ConveyorCount.Value -- Where the item count is located
local replicatedStorage = game:GetService("ReplicatedStorage")
local mouse = player:GetMouse()
local remote = replicatedStorage.remotes:WaitForChild("requestPlacement")
local button = script.Parent
local placementService = require(replicatedStorage.modules:WaitForChild("PlacementService")) -- The placement module is located
-- Defining controls and where the item model is located V
local placementInfo = placementService.new(
2, replicatedStorage.models, Enum.KeyCode.R, Enum.KeyCode.Q, Enum.KeyCode.T, Enum.KeyCode.G, Enum.KeyCode.ButtonR1, Enum.KeyCode.ButtonX, Enum.KeyCode.DPadUp, Enum.KeyCode.DPadDown 
)
-- Begins placement preview V
button.MouseButton1Click:Connect(function()
print("detectedButton") if count >= 1 then -- Checks if the player has enough of the item in inventory before starting preview placementInfo:activate("ConveyorMk1", workspace.base.itemHolder, workspace.base, false, false, true) end 
end)
-- Places the object V
mouse.Button1Down:Connect(function() -- ISSUE HERE
print("detectedPlace") if count >= 1 then -- Checks if the player has enough of the item in inventory count -= 1 -- Subtracts 1 of the item from inventory print("subtracted") placementInfo:requestPlacement(remote) -- Asks the module to begin the placement end 
end)
submitted by ThisIsMyUseranme to robloxgamedev [link] [comments]


2023.02.21 10:05 Infamous_You8875 hey guys i just need to k ow did they make a new monster

hey guys i just need to k ow did they make a new monster submitted by Infamous_You8875 to u/Infamous_You8875 [link] [comments]


2023.02.19 03:00 Jailbreak_Chiron Anyone here knows how to post on Roblox DevForum? Im a newbie on DevForum so idk if the website allows you post stuff unless you have red enough posts or topics.

submitted by Jailbreak_Chiron to robloxgamedev [link] [comments]


2023.02.09 22:55 LostnTransit Click Spawnpoint

  1. I would like to achieve a script that sets your Spawnpoint at a X, Y, Z coordinate when a part is clicked.
So far, I’ve looked on the Devforum and found nothing (please note I am not a coder) other than the Roblox Mouse Click Detect. I’m wondering if I would be able to use the script in the default spawnpoint, if there even is one.
Thank you for reading this, and any help is appreciated. Have a good day!
submitted by LostnTransit to roblox [link] [comments]


2023.02.09 17:35 Scary_Ad601 Devforum

how i can Post On Roblox Devforum ):
submitted by Scary_Ad601 to u/Scary_Ad601 [link] [comments]


2023.02.03 06:36 Strawberrypepperyt What would happen if bloxburg became free(don’t look at the other pic)

What would happen if bloxburg became free(don’t look at the other pic) submitted by Strawberrypepperyt to roblox [link] [comments]


2023.02.01 05:11 StreamEdgeM69 Wow. Bloxburg is almost 10 years old. I have grown so much.

Wow. Bloxburg is almost 10 years old. I have grown so much. submitted by StreamEdgeM69 to roblox [link] [comments]


2023.01.31 10:47 Price__Matters The Time Roblox takes to Respond to UGC Applications?

I just submitted my UGC application and wanted to know how long Roblox takes to respond. From what I've heard, it can range up to 5 months.
https://devforum.roblox.com/t/how-long-does-it-take-for-roblox-to-respond-to-a-ugc-application/2047126/1
Going by this Devforum post, a review wave happened 2 weeks ago. If any UGC creators here could post their timeframes of when they uploaded their application to when it was accepted or declined, we might be able to find a timeframe of how frequently these review waves occur.
submitted by Price__Matters to RobloxHelp [link] [comments]


2023.01.27 22:06 Last_Tie_1983 Camera help

I wrote this code wich is supposed to play an animation when the player hatches an egg but when I buy the egg the camera freezes and doesn't move. Any help?
submitted by Last_Tie_1983 to robloxgamedev [link] [comments]


2023.01.24 23:13 Deraxile revert to old studio icons

hi yall, ik that this is kinda late, but, if some of yall are tired with the new icons, u can change them back; i've made a thread about it on the devforum (unsure what flair) https://devforum.roblox.com/t/experienced-pc-user-skill-required-how-to-revert-to-the-old-roblox-studio-icons-working-as-jan-24-2023/2071973
submitted by Deraxile to robloxgamedev [link] [comments]


2023.01.24 01:51 BlizzardBlades Saveinstance Corrupting

Whenever I do Saveinstance() And Execute it saves the game as normal but when I go to open the .rbxl file it says
"Sorry, this place could not be loaded. Details: "Serializer::checkHeaderForXML can't read header"
If you continue to encounter this error, please report it on the Developer Forum.
Incident ID: 4186772925361298037"
I know it cannot be just one game as it happens in every game, and it used to work
submitted by BlizzardBlades to Krnl [link] [comments]


2023.01.21 12:21 jonnnuti powering human population

powering human population submitted by jonnnuti to bloxymemes [link] [comments]


2023.01.21 01:33 Rezokar_ Thoughts on Named/Non-Positional parameter admin system?

About a year ago I decided to learn a bit of powershell. In there, commands are not positional based, but rather by name. Recently I had an idea to recreate that in Roblox. I do not, however, want to make an entire system if people think it is too complicated. I tried asking on devforum, but it got removed so here I am. I made a barebone version, which can be shown below
https://reddit.com/link/10he18f/video/qzkur0x9kada1/player
What are your thoughts on a system like this? Would it get adopted well, or would it be wasting my effort?
submitted by Rezokar_ to robloxgamedev [link] [comments]


2023.01.21 00:28 CauliflowerNo5056 Bro How

Bro How submitted by CauliflowerNo5056 to bloxymemes [link] [comments]


2023.01.19 04:25 Pickle_Jars ROBLOX Client Launching Bug


Anyone having a bug where your ROBLOX client takes a long time to launch?
Mine will launch in task manager, but not actually show up on my task bar until 5-10 minutes later...
I've tried reinstalling, clearing temp files, clearing registry keys, restarting.... nothing fixes it. I've only seen 1 other person with this bug in the devforum: Devforum Post Link
I want to see if anyone else is having this issue and if they found a solution to it. I'm out of ideas on how I could possibly fix this issue unless its an issue on ROBLOX's end then I can't do anything about it ;/
submitted by Pickle_Jars to robloxgamedev [link] [comments]


2023.01.12 07:49 gocommitepic Something I created a while ago and it got a lot of attention. A bit ago I open-sourced it but I forgot to share it here, so without further ado: https://devforum.roblox.com/t/nofreefall-module-create-a-similar-effect-to-going-beyond-the-boundaries-from-mario-galaxy/2050779

Something I created a while ago and it got a lot of attention. A bit ago I open-sourced it but I forgot to share it here, so without further ado: https://devforum.roblox.com/t/nofreefall-module-create-a-similar-effect-to-going-beyond-the-boundaries-from-mario-galaxy/2050779 submitted by gocommitepic to roblox [link] [comments]