About 506,000 results
Open links in new tab
  1. Single Part asset create call failed - Studio Bugs - Roblox

    Mar 29, 2025 · I get it in the old asset manager with team create off and the beta features all off as well I believe this has to do with the roblox servers not the Studio Version or Asset Manager itself NEW …

  2. Call of Chivalry Info - Bulletin Board - Developer Forum | Roblox

    Mar 6, 2024 · Call of Chivalry Info Board ANNOUNCEMENT: We will be experimenting with a new hit detection method next update. It will still not fix your bad internet. However, it may improve hit reg …

  3. How to properly use pcall () - Scripting Support - Roblox

    Dec 13, 2023 · The pcall() function stands for “protected call.” It allows you to call a function in a protected mode, meaning it catches errors that occur during the function execution. Returning …

  4. How to call the same function inside a function? - Roblox

    Jan 2, 2023 · I want a function that can call itself inside of it. I’ve tried a few things and nothing seems to work, it just returns nil on the output each time. Heres an example: local hello = function () print …

  5. Is it possible to call functions from other scripts? - Roblox

    May 2, 2024 · just what the title says. is it possible to call functions from other scripts? is there any way to do it? no matter how difficult or easy is it possible? I know this is probably really simple but i am …

  6. Attempt to call a nil value - Scripting Support - Roblox

    Nov 29, 2020 · For your OnServerEvent function. You need to remove those two brackets like so: remoteEvent.OnServerEvent:Connect(ChangeTime) Also, when you print time, It would print your …

  7. The future of immersive communication on Roblox

    [Update] November 20, 2023 [Update] November 17, 2023 [Update] November 16, 2023 Hello Creators, Today, we are excited to launch Roblox Connect and calling APIs for creators! We previewed this …

  8. Calling Module Scripts' Functions - Scripting Support - Roblox

    Jul 17, 2023 · Two Questions. Do ModuleScripts need to have a table? For example, you would put local MyFunctions = {} function printf() print’ran script’ end And on require, you’d require and call to the …

  9. Getting error: Info: single part asset create call failed HTTP ... - Roblox

    Nov 24, 2024 · Info: single part asset create call failed HTTP StatusCode: 500, Message: I have tried to restart studio, uploading diffrently and trying in a diffrent experience and i still have the same issue.

  10. Call a function from a server script from another server script - Roblox

    May 8, 2024 · local function yes() print ("No") end ClickDetector.MouseClick:Connect(yes) Then in another server script, I want to call function “yes” (while also sending 3 parameters as well) How can …