Line of code which does nothing is ignored by breakpoints

If a line of code does nothing (and isn’t the last line of code in the function) then breakpoints for it do nothing.
image
If the line of code is the last line of the function then it will work correctly.
Example:
image

if false then print(1) end
if true then else print(2) end
while false do print(3) end
repeat do break end print(4) until false
do end

Expected behavior: The breakpoint works just like if the code did something.

3 Likes

The following is speculation:

This could be happening due to how the Luau bytecode compiler builds Luau code to Luau bytecode. Luau isn’t actually run in its text form; instead, just before execution, a program quickly converts the Luau code into simplified instructions that are easy and quick for the interpreter (program that actually executes the code) to understand.

To make the output bytecode smaller and execute quicker, the compiler introduces a series of optimizations to the code. I’m betting one of these compiler optimizations is to remove all unreachable code. The logic goes, “if the code is never reachable, why execute it?” However, when debugging, because the compiler removes these unreachable or constant lines, the debugger has no associated bytecode entry to “link” to. The result is that the breakpoint is skipped.

Of course, this is speculation, but if the above reasoning is the case, then it might actually be intended behavior.

3 Likes

Hello. We’ve been unable to repro this issue. Are you using any plugins and Beta Features while this occurs? Thanks!

This issue still happens without any beta features enabled.

We’d like to look into this issue. Can you please upload a log file of a Studio session during which the issue has occurred? Thanks!

  • On Windows, type %LOCALAPPDATA%\Roblox\logs into the file explorer address bar and then sort the folder by date modified. Logs should have the format log_XXXXX followed by additional naming. All logs with the same XXXXX value are from the same Studio session.
  • On macOS, logs are in the directory ~/Library/Logs/Roblox . In the Finder, click the Go menu, select Go to Folder , type in that directory, and confirm.

(can’t upload .log files)
0.469.0.418830_20210312T200240Z_Studio_68923_last.log

2021-03-12T20:02:40.062Z,0.062279,18f4,6 [FLog::Output] RobloxGitHash: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
2021-03-12T20:02:40.063Z,0.063279,18f4,6 [FLog::Output] 

Command line:
C:\Users\luigi\AppData\Local\Roblox\Versions\version-cbab144c78a844dd\RobloxStudioBeta.exe -task EditPlace -placeId 95206881 -universeId 28220420


2021-03-12T20:02:40.063Z,0.063279,18f4,6 [FLog::Output] RobloxChannel has been set to production
2021-03-12T20:02:40.063Z,0.063279,18f4,6 [FLog::Output] Finding AppSettings.xml
2021-03-12T20:02:40.063Z,0.063279,18f4,6 [FLog::Output] Opening AppSettings.xml
2021-03-12T20:02:40.064Z,0.064279,18f4,6 [FLog::Output] Parsing AppSettings.xml
2021-03-12T20:02:40.064Z,0.064279,18f4,6 [FLog::Output] Looking for 'Settings' element in AppSettings.xml
2021-03-12T20:02:40.064Z,0.064279,18f4,6 [FLog::Output] Looking for 'ContentFolder' element in AppSettings.xml
2021-03-12T20:02:40.064Z,0.064279,18f4,6 [FLog::Output] Looking for 'BaseUrl' element in AppSettings.xml
2021-03-12T20:02:40.064Z,0.064279,18f4,6 [FLog::Output] BaseUrl loaded from 'AppSettings.Xml'
2021-03-12T20:02:40.064Z,0.064279,18f4,6 [FLog::Output] Looking for 'IsScriptAssetUploadEnabled' element in AppSettings.xml
2021-03-12T20:02:40.064Z,0.064279,18f4,6 [FLog::Output] Looking for 'IsAnimationAssetUploadEnabled' element in AppSettings.xml
2021-03-12T20:02:40.064Z,0.064279,18f4,6 [FLog::Output] Looking for 'IsImageModelAssetUploadEnabled' element in AppSettings.xml
2021-03-12T20:02:40.064Z,0.064279,18f4,6 [FLog::Output] Looking for 'CrashMenu' element in AppSettings.xml
2021-03-12T20:02:40.065Z,0.065279,18f4,6 [FLog::Output] BaseUrl: https://www.roblox.com
2021-03-12T20:02:40.065Z,0.065279,18f4,6 [FLog::Output] fetchClientSettingDataViaHttps
2021-03-12T20:02:40.311Z,0.311347,18f4,6 [FLog::Error] Dynamic initializer test result: SUCCESS
2021-03-12T20:02:40.323Z,0.323354,18f4,6 [FLog::Output] TaskSchedulerMk2::applyAsyncTaskThreadCount( 4 ) <req: 0 active: 0>
2021-03-12T20:02:40.325Z,0.325355,18f4,6 [FLog::Output] CrashReporter Start
2021-03-12T20:02:40.325Z,0.325355,3478,6 [FLog::Output] WatcherThread Started
2021-03-12T20:02:40.325Z,0.325355,18f4,6 [FLog::Output] The crash upload percentage is 100
2021-03-12T20:02:40.451Z,0.451890,18f4,6 [FLog::Output] Studio Version: "0.469.0.418830"
2021-03-12T20:02:40.466Z,0.466959,18f4,6 [FLog::Output] SQUIRREL: "ROBLOX_STUDIO_EXTENSION="
2021-03-12T20:02:40.466Z,0.466959,18f4,6 [FLog::Output] SQUIRREL: computed="extensions\qt\SQUIshRobloxReflectionExtensionLibrary.dll"
2021-03-12T20:02:40.466Z,0.466959,18f4,6 [FLog::Output] SQUIRREL: extensionPath="extensions\qt\SQUIshRobloxReflectionExtensionLibrary.dll"
2021-03-12T20:02:40.476Z,0.476000,18f4,6 [FLog::Output] TaskSchedulerMk2::applyAsyncTaskThreadCount( 4 ) <req: 4 active: 4>
2021-03-12T20:02:40.476Z,0.476000,18f4,6 [FLog::Error] preferredLocale.name() = en_US
2021-03-12T20:02:40.476Z,0.476000,18f4,6 [FLog::Error] systemLocale.name() = en_US
2021-03-12T20:02:40.582Z,0.582001,18f4,6 [FLog::Output] Studio D3D9 GPU: NVIDIA GeForce GTX 1070
2021-03-12T20:02:40.583Z,0.583002,18f4,6 [FLog::Output] Studio D3D9 GPU: Vendor 10de Device 1b81
2021-03-12T20:02:40.583Z,0.583002,18f4,6 [FLog::Output] Studio D3D9 Driver: nvldumdx.dll 26.21.14.4614
2021-03-12T20:02:40.587Z,0.587006,18f4,6 [FLog::Output] ESGamePerfMonitor GPU: Vendor 000010de Device 00001b81
2021-03-12T20:02:40.587Z,0.587006,18f4,6 [FLog::Output] ESGamePerfMonitor GPU: SubSys 85a01043 Revision 000000a1
2021-03-12T20:02:40.587Z,0.587006,18f4,6 [FLog::Output] ESGamePerfMonitor GPU: DedicatedVidMem 8480882688 DedicatedSysMem 0 SharedSystemMemory 8564971520
2021-03-12T20:02:40.587Z,0.587006,18f4,6 [FLog::Output] Info: RobloxMainWindow::RobloxMainWindow - start
2021-03-12T20:02:40.627Z,0.627042,18f4,6 [FLog::Output] Info: RPC:Constructor Started server - RBX_STUDIO_9224
2021-03-12T20:02:40.628Z,0.628043,18f4,6 [FLog::Output] StudioABTests using browserTrackerId 65690310653
2021-03-12T20:02:40.864Z,0.864230,18f4,6 [FLog::LocalStorage] LocalStorage loading from path: C:\Users\luigi\AppData\Local\Roblox\LocalStorage\appStorage.json
2021-03-12T20:02:40.870Z,0.870225,18f4,6 [FLog::AuthenticationHelper] AuthenticationHelper::authenticateUserAsync
2021-03-12T20:02:40.870Z,0.870225,18f4,6 [FLog::LoginManager] LoginManager::DEPRECATED_onAuthenticationChanged(1)
2021-03-12T20:02:40.874Z,0.874221,0e58,6 [FLog::LocalStorage] LocalStorage loading data: {"DisplayName":"Halalaluyafail3","WebLogin":"0","AppConfiguration":"{\"GUAC:-1:app-policy\":\"{\\\"ChatConversationHeaderGroupDetails\\\":true,\\\"ChatHeaderSearch\\\":true,\\\"ChatHeaderCreateChatGroup\\\":true,\\\"ChatHeaderHomeButton\\\":false,\\\"ChatHeaderNotifications\\\":true,\\\"ChatPlayTogether\\\":true,\\\"ChatShareGameToChatFromChat\\\":true,\\\"ChatTapConversationThumbnail\\\":true,\\\"GamesDropDownList\\\":true,\\\"GameDetailsMorePage\\\":true,\\\"GameDetailsSubtitle\\\":true,\\\"GameInfoList\\\":true,\\\"GameInfoListDeveloper\\\":true,\\\"GamePlaysAndRatings\\\":true,\\\"Notifications\\\":true,\\\"RecommendedGames\\\":true,\\\"SearchBar\\\":true,\\\"MorePageType\\\":\\\"More\\\",\\\"AboutPageType\\\":\\\"About\\\",\\\"FriendFinder\\\":true,\\\"SocialLinks\\\":true,\\\"SocialGroupLinks\\\":true,\\\"SiteMessageBanner\\\":true,\\\"UseWidthBasedFormFactorRule\\\":false,\\\"UseHomePageWithAvatarAndPanel\\\":fal
2021-03-12T20:02:40.978Z,0.978377,18f4,6 [FLog::Output] setAssetFolder C:/Users/luigi/AppData/Local/Roblox/Versions/version-cbab144c78a844dd/content
2021-03-12T20:02:40.979Z,0.979378,18f4,6 [FLog::Output] setExtraAssetFolder C:/Users\luigi\AppData\Local\Roblox\Versions\version-cbab144c78a844dd\ExtraContent
2021-03-12T20:02:40.980Z,0.980379,18f4,6 [FLog::Output] TaskSchedulerMk2::applyAsyncTaskThreadCount( 4 ) <req: 4 active: 4>
2021-03-12T20:02:40.980Z,0.980379,18f4,6 [FLog::Output] Reflection::load C:/Users/luigi/AppData/Local/Roblox/Versions/version-cbab144c78a844dd\ReflectionMetadata.xml
2021-03-12T20:02:41.850Z,1.850151,18f4,6 [FLog::UpdateUIManager] Setting up status bar (000001EE5C559390)
2021-03-12T20:02:42.100Z,2.100367,18f4,6 [FLog::Graphics] D3D11 Adapter: NVIDIA GeForce GTX 1070
2021-03-12T20:02:42.100Z,2.100367,18f4,6 [FLog::Graphics] D3D11 Adapter: Vendor 10de Device 1b81 VRAM 8088 RAM 8168
2021-03-12T20:02:42.100Z,2.100367,18f4,6 [channel] Caps: ThreadSafe 0 Framebuffer 1 FpFramebuffer 1 Shaders 1 Compute 1 Instancing 1 ConstBuffers 1
2021-03-12T20:02:42.100Z,2.100367,18f4,6 [channel] Caps: Framebuffer: MRT 8 MSAA 8 Stencil 1
2021-03-12T20:02:42.100Z,2.100367,18f4,6 [channel] Caps: Framebuffer: Depth16 1 Depth24 1 DepthFloat 1 DepthClamp 1
2021-03-12T20:02:42.100Z,2.100367,18f4,6 [channel] Caps: Border Color 1
2021-03-12T20:02:42.100Z,2.100367,18f4,6 [channel] Caps: Texture: RGB10A2 1 RG11B10F 1
2021-03-12T20:02:42.100Z,2.100367,18f4,6 [channel] Caps: Texture: DXT 1 PVR 0 ETC1 0 ETC2 0 Half 1
2021-03-12T20:02:42.100Z,2.100367,18f4,6 [channel] Caps: Texture: 3D 1 Array 1 Depth 1 MSAA 1 MSAAFP16 0
2021-03-12T20:02:42.100Z,2.100367,18f4,6 [channel] Caps: Texture: NPOT 1 PartialMips 1 CubeMipGen 1 CubeFramebuffer 1
2021-03-12T20:02:42.100Z,2.100367,18f4,6 [channel] Caps: Texture: Size 16384 Units 16
2021-03-12T20:02:42.100Z,2.100367,18f4,6 [channel] Caps: ConstantBufferSize 65536
2021-03-12T20:02:42.100Z,2.100367,18f4,6 [channel] Caps: 32bIdx 1 Memoryless 0
2021-03-12T20:02:42.100Z,2.100367,18f4,6 [channel] Caps: ColorBGR 0 HalfPixelOffset 0 RTFlip 0 MinusOneToOneDepth 0
2021-03-12T20:02:42.123Z,2.123383,18f4,6 [FLog::Graphics] Video memory size: 2147483648
2021-03-12T20:02:42.147Z,2.147400,18f4,6 [FLog::Graphics] Loaded 476 shaders from pack d3d11 variant default (3003652 bytes)
2021-03-12T20:02:42.147Z,2.147400,18f4,6 [FLog::Graphics] Compiled 476 shaders in 23 ms
2021-03-12T20:02:42.176Z,2.176477,18f4,6 [FLog::Output] Info: 		RenderScheduler::RenderScheduler - start
2021-03-12T20:02:42.176Z,2.176477,18f4,6 [FLog::Output] Info: 			Marshaller
2021-03-12T20:02:42.176Z,2.176477,18f4,6 [FLog::Output] Info: 			RenderJobCyclic
2021-03-12T20:02:42.465Z,2.465206,18f4,6 [FLog::Output] Info: 			BindToWorkspace
2021-03-12T20:02:42.510Z,2.510775,18f4,6 [FLog::Output] Info: 			ConfigureStats
2021-03-12T20:02:42.510Z,2.510775,18f4,6 [FLog::Output] Info: 			RenderJobCyclic
2021-03-12T20:02:42.512Z,2.512757,18f4,6 [FLog::Output] Info: RobloxMainWindow::showNativeLoginPageWidgets
2021-03-12T20:02:42.518Z,2.518700,18f4,6 [FLog::StudioTimingLog] ======== Studio Startup Times =======
2021-03-12T20:02:42.518Z,2.518700,18f4,6 [FLog::StudioTimingLog] FastFlagsLoadTime  : 0.3886 sec
2021-03-12T20:02:42.518Z,2.518700,18f4,6 [FLog::StudioTimingLog] Authenticated : NO
2021-03-12T20:02:42.518Z,2.518700,18f4,6 [FLog::StudioTimingLog] LoginPageOpenTime  : 2.4684 sec
2021-03-12T20:02:42.544Z,2.544457,18f4,6 [FLog::Output] Info: RobloxMainWindow::RobloxMainWindow - end
2021-03-12T20:02:42.906Z,2.906802,18f4,6 [FLog::LoginManager] LoginManager::loginSuccess
2021-03-12T20:02:42.940Z,2.940836,18f4,6 [FLog::Output] Loading plugins for gst 'StudioGameStateType_RobloxPlugin'
2021-03-12T20:02:42.940Z,2.940836,18f4,6 [FLog::Output] Loading standalone plugins for gst 'StudioGameStateType_RobloxPlugin'
2021-03-12T20:02:42.949Z,2.949851,18f4,6 [FLog::Output] Plugin load time 'sabuiltin_CollisionGroupsEditor.rbxm': 8.014216
2021-03-12T20:02:42.982Z,2.982885,18f4,6 [FLog::Output] Plugin load time 'sabuiltin_ErrorReporter.rbxm': 33.034353
2021-03-12T20:02:43.046Z,3.046952,18f4,6 [FLog::Output] Plugin load time 'sabuiltin_PluginManagement.rbxm': 64.066624
2021-03-12T20:02:43.141Z,3.141019,18f4,6 [FLog::Output] Plugin load time 'sabuiltin_TransformDragger.rbxm': 94.067294
2021-03-12T20:02:43.141Z,3.141019,18f4,6 [FLog::Output] Finished loading standalone plugins for gst 'StudioGameStateType_RobloxPlugin' Total time: 199.182487
2021-03-12T20:02:43.141Z,3.141019,18f4,6 [FLog::Output] All plugins loaded for gst 'StudioGameStateType_RobloxPlugin'. Total time: 200.183464
2021-03-12T20:02:43.141Z,3.141019,18f4,6 [FLog::Output] Loading plugins for gst 'StudioGameStateType_UserPlugin'
2021-03-12T20:02:43.141Z,3.141019,18f4,6 [FLog::Output] Loading local user plugins for gst 'StudioGameStateType_UserPlugin'
2021-03-12T20:02:43.142Z,3.142020,18f4,6 [FLog::Output] Finished loading local user plugins for gst 'StudioGameStateType_UserPlugin' Total time: 0.000000
2021-03-12T20:02:43.142Z,3.142020,18f4,6 [FLog::Output] All plugins loaded for gst 'StudioGameStateType_UserPlugin'. Total time: 1.000881
2021-03-12T20:02:43.142Z,3.142020,18f4,6 [FLog::Output] StudioABTests using UserId with hash TcvJQq/aVT0CoPukePDltA==
2021-03-12T20:02:43.260Z,3.260266,18f4,6 [FLog::Output] Info: RobloxMainWindow::createAndShowIDEDoc with task EditPlace
2021-03-12T20:02:43.384Z,3.384173,18f4,6 [FLog::AuthenticationHelper] AuthenticationHelper::waitForHttpAuthentication()
2021-03-12T20:02:43.561Z,3.561431,18f4,6 [FLog::Output] Info: RobloxIDEDoc::open - start (placeId: 95206881)
2021-03-12T20:02:43.561Z,3.561431,18f4,6 [FLog::UpdateUIManager] (DEPRECATED) Showing progress for long process(000001EE5C559390): Opening Place
2021-03-12T20:02:43.562Z,3.562432,18f4,6 [FLog::UpdateUIManager] Pausing status bar update (000001EE5C559390)
2021-03-12T20:02:43.567Z,3.567436,18f4,6 [FLog::AuthenticationHelper] AuthenticationHelper::waitForHttpAuthentication()
2021-03-12T20:02:43.629Z,3.629493,18f4,6 [FLog::Output] Info: 	Locking DataModel
2021-03-12T20:02:43.629Z,3.629493,18f4,6 [FLog::UpdateUIManager] (DEPRECATED) Updating progress for long process (000001EE5C559390)
2021-03-12T20:02:43.639Z,3.639502,18f4,6 [FLog::Output] Info: 	Initializing Ogre
2021-03-12T20:02:43.643Z,3.643505,18f4,6 [FLog::Output] Info: 	Initializing View
2021-03-12T20:02:43.643Z,3.643505,18f4,6 [FLog::UpdateUIManager] (DEPRECATED) Updating progress for long process (000001EE5C559390)
2021-03-12T20:02:43.648Z,3.648510,18f4,6 [FLog::Output] Info: 	Initializing Explorer
2021-03-12T20:02:43.648Z,3.648510,18f4,6 [FLog::Output] Info: 		RobloxViewStudio::RobloxViewStudio - start
2021-03-12T20:02:43.648Z,3.648510,18f4,6 [FLog::Output] Info: 			Marshaller
2021-03-12T20:02:43.648Z,3.648510,18f4,6 [FLog::Output] Info: 			BindToWorkspace
2021-03-12T20:02:43.648Z,3.648510,18f4,6 [FLog::Output] Info: 		RobloxView::RobloxView - end
2021-03-12T20:02:43.651Z,3.651493,18f4,6 [FLog::Output] Info: 			BindToWorkspace
2021-03-12T20:02:43.734Z,3.734553,18f4,6 [FLog::Output] Info: 			ConfigureStats
2021-03-12T20:02:43.735Z,3.735554,18f4,6 [FLog::Output] Info: 			RenderJobCyclic
2021-03-12T20:02:43.743Z,3.743559,18f4,6 [FLog::UpdateUIManager] (DEPRECATED) Updating progress for long process (000001EE5C559390)
2021-03-12T20:02:43.744Z,3.744560,18f4,6 [FLog::Output] Info: 	Loading File : 
2021-03-12T20:02:43.744Z,3.744560,18f4,6 [FLog::AuthenticationHelper] AuthenticationHelper::waitForHttpAuthentication()
2021-03-12T20:02:43.744Z,3.744560,18f4,6 [FLog::AuthenticationHelper] AuthenticationHelper::waitForHttpAuthentication()
2021-03-12T20:02:43.801Z,3.801631,18f4,6 [FLog::UpdateUIManager] (DEPRECATED) Updating progress for long process (000001EE5C559390)
2021-03-12T20:02:43.802Z,3.802633,18f4,6 [FLog::AuthenticationHelper] AuthenticationHelper::waitForHttpAuthentication()
2021-03-12T20:02:43.901Z,3.901721,18f4,6 [FLog::UpdateUIManager] (DEPRECATED) Updating progress for long process (000001EE5C559390)
2021-03-12T20:02:43.903Z,3.903723,18f4,6 [FLog::UpdateUIManager] (DEPRECATED) Updating progress for long process (000001EE5C559390)
2021-03-12T20:02:43.903Z,3.903723,18f4,6 [FLog::Output] Info: 	Open Success
2021-03-12T20:02:43.903Z,3.903723,18f4,6 [FLog::UpdateUIManager] Resuming status bar update (000001EE5C559390)
2021-03-12T20:02:43.904Z,3.904724,1150,6 [FLog::AuthenticationHelper] AuthenticationHelper::waitForHttpAuthentication()
2021-03-12T20:02:44.002Z,4.002797,1150,6 [FLog::AuthenticationHelper] AuthenticationHelper::waitForHttpAuthentication()
2021-03-12T20:02:44.046Z,4.046832,18f4,6 [FLog::Output] Info: RobloxIDEDoc::openPlaceSessionConfigWithStream - end
2021-03-12T20:02:44.046Z,4.046832,18f4,6 [FLog::UpdateUIManager] (DEPRECATED) Hiding progress for long process (000001EE5C559390)
2021-03-12T20:02:44.064Z,4.064872,18f4,6 [FLog::Output] Info: RobloxIDEDoc::activate - start
2021-03-12T20:02:44.066Z,4.066874,18f4,6 [FLog::Output] Info: RobloxMainWindow::showTabWidgets
2021-03-12T20:02:44.189Z,4.190000,18f4,6 [FLog::AuthenticationHelper] AuthenticationHelper::waitForHttpAuthentication()
2021-03-12T20:02:44.258Z,4.258046,0e58,6 [FLog::AuthenticationHelper] AuthenticationHelper::waitForHttpAuthentication()
2021-03-12T20:02:44.260Z,4.260047,0e58,6 [FLog::AuthenticationHelper] AuthenticationHelper::waitForHttpAuthentication()
2021-03-12T20:02:44.260Z,4.260047,0e58,6 [FLog::Output] Info: DataModel Loading https://assetdelivery.roblox.com/v1/asset/?id=95206881
2021-03-12T20:02:44.522Z,4.522161,18f4,6 [FLog::AuthenticationHelper] AuthenticationHelper::waitForHttpAuthentication()
2021-03-12T20:02:44.525Z,4.525164,18f4,6 [FLog::Output] Loading plugins for gst 'StudioGameStateType_Edit'
2021-03-12T20:02:44.525Z,4.525164,18f4,6 [FLog::Output] Loading standalone plugins for gst 'StudioGameStateType_Edit'
2021-03-12T20:02:44.533Z,4.533172,18f4,6 [FLog::Output] Plugin load time 'sabuiltin_CollisionGroupsEditor.rbxm': 7.007469
2021-03-12T20:02:44.550Z,4.550300,18f4,6 [FLog::Output] Plugin load time 'sabuiltin_ErrorReporter.rbxm': 16.126915
2021-03-12T20:02:44.572Z,4.572130,18f4,6 [FLog::Output] Plugin load time 'sabuiltin_PluginManagement.rbxm': 21.829346
2021-03-12T20:02:44.574Z,4.574114,18f4,6 [FLog::Output] Plugin load time 'sabuiltin_TransformDragger.rbxm': 1.984486
2021-03-12T20:02:44.574Z,4.574114,18f4,6 [FLog::Output] Finished loading standalone plugins for gst 'StudioGameStateType_Edit' Total time: 48.950350
2021-03-12T20:02:44.574Z,4.574114,18f4,6 [FLog::Output] Loading asset builtin plugins for gst 'StudioGameStateType_Edit'
2021-03-12T20:02:44.597Z,4.597928,18f4,6 [FLog::Output] Plugin load time 'builtin_AlignmentTool.rbxm': 20.837103
2021-03-12T20:02:44.680Z,4.680757,18f4,6 [FLog::Output] Plugin load time 'builtin_AnimationClipEditor.rbxm': 81.836394
2021-03-12T20:02:44.872Z,4.872106,18f4,6 [FLog::Output] Plugin load time 'builtin_AssetConfiguration.rbxm': 190.346214
2021-03-12T20:02:44.895Z,4.895006,18f4,6 [FLog::Output] Plugin load time 'builtin_AssetManager.rbxm': 21.903948
2021-03-12T20:02:44.899Z,4.899984,18f4,6 [FLog::Output] Plugin load time 'builtin_AvatarImporter.rbxm': 3.982536
2021-03-12T20:02:44.910Z,4.910936,18f4,6 [FLog::Output] Plugin load time 'builtin_ConvertToPackage.rbxm': 10.951974
2021-03-12T20:02:44.945Z,4.945783,18f4,6 [FLog::Output] Plugin load time 'builtin_DebugVisualizerUI.rbxm': 34.847190
2021-03-12T20:02:44.969Z,4.969073,18f4,6 [FLog::Output] Plugin load time 'builtin_DeveloperInspector.rbxm': 23.290179
2021-03-12T20:02:44.988Z,4.988212,18f4,6 [FLog::Output] Plugin load time 'builtin_DeveloperStorybook.rbxm': 18.131094
2021-03-12T20:02:45.061Z,5.061043,18f4,6 [FLog::Output] Plugin load time 'builtin_DraftsWidget.rbxm': 71.823966
2021-03-12T20:02:45.078Z,5.078060,18f4,6 [FLog::Output] Plugin load time 'builtin_ErrorReporterBuiltIn.rbxm': 17.016541
2021-03-12T20:02:45.143Z,5.143123,18f4,6 [FLog::Output] Plugin load time 'builtin_EventEmulator.rbxm': 65.063245
2021-03-12T20:02:45.163Z,5.163117,18f4,6 [FLog::Output] Plugin load time 'builtin_FrameworkCompanion.rbxm': 18.993175
2021-03-12T20:02:45.224Z,5.224163,18f4,6 [FLog::Output] Plugin load time 'builtin_GameSettings.rbxm': 61.045689
2021-03-12T20:02:45.354Z,5.354673,18f4,6 [FLog::Output] Plugin load time 'builtin_LocalizationTools.rbxm': 129.509555
2021-03-12T20:02:45.452Z,5.452649,18f4,6 [FLog::Output] Plugin load time 'builtin_MoveDragger.rbxm': 96.972816
2021-03-12T20:02:45.473Z,5.473647,18f4,6 [FLog::Output] Plugin load time 'builtin_PivotEditor.rbxm': 20.998404
2021-03-12T20:02:45.494Z,5.494646,18f4,6 [FLog::Output] Plugin load time 'builtin_PlayerEmulator.rbxm': 20.998404
2021-03-12T20:02:45.595Z,5.595652,18f4,6 [FLog::Output] Plugin load time 'builtin_PublishPlaceAs.rbxm': 100.006416
2021-03-12T20:02:45.636Z,5.636653,18f4,6 [FLog::Output] Plugin load time 'builtin_RigBuilder.rbxm': 40.000800
2021-03-12T20:02:45.643Z,5.643653,18f4,6 [FLog::Output] Plugin load time 'builtin_RotateDragger.rbxm': 7.000140
2021-03-12T20:02:45.663Z,5.663755,18f4,6 [FLog::Output] Plugin load time 'builtin_ScaleDragger.rbxm': 19.101726
2021-03-12T20:02:45.683Z,5.683773,18f4,6 [FLog::Output] Plugin load time 'builtin_SelectDragger.rbxm': 20.018180
2021-03-12T20:02:45.709Z,5.709796,18f4,6 [FLog::Output] Plugin load time 'builtin_TerrainToolsV2.rbxm': 25.022725
2021-03-12T20:02:45.833Z,5.833893,18f4,6 [FLog::Output] Plugin load time 'builtin_TestHarness.rbxm': 123.095983
2021-03-12T20:02:45.902Z,5.902005,18f4,6 [FLog::Output] Plugin load time 'builtin_Toolbox.rbxm': 68.111748
2021-03-12T20:02:46.076Z,6.076407,18f4,6 [FLog::Output] Plugin load time 'builtin_UIEditor.rbxm': 173.400512
2021-03-12T20:02:46.088Z,6.088444,18f4,6 [FLog::Output] Plugin load time 'builtin_ViewSelector.rbxm': 12.037284
2021-03-12T20:02:46.088Z,6.088444,18f4,6 [FLog::Output] Finished loading assset builtin plugins for gst 'StudioGameStateType_Edit' Total time: 1514.330091
2021-03-12T20:02:46.088Z,6.088444,18f4,6 [FLog::Output] Loading loose Lua scripts for gst 'StudioGameStateType_Edit'
2021-03-12T20:02:46.092Z,6.092457,18f4,6 [FLog::Output] Plugin load time 'user_pattern.lua': 2.006214
2021-03-12T20:02:46.094Z,6.094463,18f4,6 [FLog::Output] Plugin load time 'user_Script.lua': 1.003107
2021-03-12T20:02:46.100Z,6.100482,18f4,6 [FLog::Output] Plugin load time 'user_testing.lua': 5.015535
2021-03-12T20:02:46.100Z,6.100482,18f4,6 [FLog::Output] Finished loading loose Lua scripts for gst 'StudioGameStateType_Edit' Total time: 12.037284
2021-03-12T20:02:46.100Z,6.100482,18f4,6 [FLog::Output] Loading local user plugins for gst 'StudioGameStateType_Edit'
2021-03-12T20:02:46.100Z,6.100482,18f4,6 [FLog::Output] Finished loading local user plugins for gst 'StudioGameStateType_Edit' Total time: 0.000000
2021-03-12T20:02:46.100Z,6.100482,18f4,6 [FLog::Output] Loading user cloud plugins for gst 'StudioGameStateType_Edit'
2021-03-12T20:02:46.100Z,6.100482,18f4,6 [FLog::Output] Finished loading user cloud plugins for gst 'StudioGameStateType_Edit' Total time: 0.000000
2021-03-12T20:02:46.100Z,6.100482,18f4,6 [FLog::Output] All plugins loaded for gst 'StudioGameStateType_Edit'. Total time: 1575.317725
2021-03-12T20:02:46.103Z,6.103491,18f4,6 [FLog::Graphics] Future is bright shadows
2021-03-12T20:04:04.532Z,84.532692,18f4,6 [FLog::Output] Info: RobloxScriptDoc::open - start
2021-03-12T20:04:04.537Z,84.537697,18f4,6 [FLog::Output] Info: RobloxScriptDoc::activate - start
2021-03-12T20:04:09.182Z,89.182304,18f4,6 [FLog::Output] Info: RobloxIDEDoc::activate - start
2021-03-12T20:04:10.874Z,90.874329,18f4,6 [FLog::Output] Info: RobloxIDEDoc::loadPlayDataModel - start
2021-03-12T20:04:10.878Z,90.878326,18f4,6 [FLog::UpdateUIManager] Start waiting for long process(000001EE5C559390): Auto-Saving
2021-03-12T20:04:10.889Z,90.889336,2060,6 [FLog::StudioLocalSaveMD5HashOutput] Place saved locally to C:/Users/luigi/OneDrive/Documents/ROBLOX/AutoSaves/Place_AutoRecovery_4_AutoRecovery_Hp9224.rbxl with hash d75d717406748c2f8b7b212eec075cf2
2021-03-12T20:04:10.899Z,90.899345,18f4,6 [FLog::UpdateUIManager] Done waiting for long process: Auto-Saving
2021-03-12T20:04:10.907Z,90.907349,18f4,6 [FLog::Output] Baseplate auto-recovery file was created
2021-03-12T20:04:10.907Z,90.907349,18f4,6 [FLog::Output] Info: RobloxIDEDoc::saveAs - end
2021-03-12T20:04:10.907Z,90.907349,18f4,6 [FLog::UpdateUIManager] Pausing status bar update (000001EE5C559390)
2021-03-12T20:04:10.914Z,90.914352,18f4,6 [FLog::UpdateUIManager] (DEPRECATED) Showing progress for long process(000001EE5C559390): Play Game
2021-03-12T20:04:10.916Z,90.916351,18f4,6 [FLog::UpdateUIManager] (DEPRECATED) Updating progress for long process (000001EE5C559390)
2021-03-12T20:04:11.013Z,91.013481,18f4,6 [FLog::Output] Info: 			BindToWorkspace
2021-03-12T20:04:11.021Z,91.021492,18f4,6 [FLog::Output] Info: 			ConfigureStats
2021-03-12T20:04:11.021Z,91.021492,18f4,6 [FLog::Output] Info: 			RenderJobCyclic
2021-03-12T20:04:11.053Z,91.053505,18f4,6 [FLog::Output] Info: 		RobloxViewStudio::RobloxViewStudio - start
2021-03-12T20:04:11.053Z,91.053505,18f4,6 [FLog::Output] Info: 			Marshaller
2021-03-12T20:04:11.053Z,91.053505,18f4,6 [FLog::Output] Info: 			BindToWorkspace
2021-03-12T20:04:11.053Z,91.053505,18f4,6 [FLog::Output] Info: 		RobloxView::RobloxView - end
2021-03-12T20:04:11.053Z,91.053505,18f4,6 [FLog::Output] Info: 			BindToWorkspace
2021-03-12T20:04:11.065Z,91.065521,18f4,6 [FLog::Output] Info: 			ConfigureStats
2021-03-12T20:04:11.065Z,91.065521,18f4,6 [FLog::Output] Info: 			RenderJobCyclic
2021-03-12T20:04:11.080Z,91.080528,18f4,6 [FLog::Output] Info: RobloxIDEDoc::activate - start
2021-03-12T20:04:11.081Z,91.081535,18f4,6 [FLog::UpdateUIManager] (DEPRECATED) Updating progress for long process (000001EE5C559390)
2021-03-12T20:04:11.097Z,91.097549,18f4,6 [FLog::UpdateUIManager] (DEPRECATED) Updating progress for long process (000001EE5C559390)
2021-03-12T20:04:11.100Z,91.100548,18f4,7 [FLog::Network] NetworkServer:Create
2021-03-12T20:04:11.120Z,91.120567,18f4,7 [FLog::Network] NetworkServer:Start
2021-03-12T20:04:11.123Z,91.123573,18f4,6 [DFLog::NetworkDetailed] CreateBoundSocket() port=0, blockingSocket=1, forceHostAddress=(null), sleepOn10048=100, socketFamily=0
2021-03-12T20:04:11.123Z,91.123573,18f4,7 [FLog::Network] setsockopt SO_LINGER failed : errno=10042, errString=An unknown, invalid, or unsupported option or level was specified in a getsockopt or setsockopt call
2021-03-12T20:04:11.123Z,91.123573,18f4,7 [FLog::Network] binding socket on in6addr_any:0

2021-03-12T20:04:11.158Z,91.158669,18f4,6 [FLog::Output] Started network server ::1|62401
2021-03-12T20:04:11.165Z,91.165680,18f4,7 [FLog::Network] Time taken to initialize schema = 2.677400 ms
2021-03-12T20:04:11.167Z,91.167679,18f4,6 [FLog::UpdateUIManager] (DEPRECATED) Updating progress for long process (000001EE5C559390)
2021-03-12T20:04:11.167Z,91.167679,18f4,6 [FLog::UpdateUIManager] (DEPRECATED) Hiding progress for long process (000001EE5C559390)
2021-03-12T20:04:11.167Z,91.167679,18f4,6 [FLog::UpdateUIManager] Resuming status bar update (000001EE5C559390)
2021-03-12T20:04:11.216Z,91.216759,18f4,6 [FLog::StudioTimingLog] ======== Studio Play Testing Times =======
2021-03-12T20:04:11.217Z,91.217758,18f4,6 [FLog::StudioTimingLog] LoadPlaySoloDataModelsTime : 0.1042 sec
2021-03-12T20:04:11.217Z,91.217758,18f4,6 [FLog::StudioTimingLog] PlaySoloStartTotalTime     : 0.3434 sec
2021-03-12T20:04:11.280Z,91.280647,18f4,6 [FLog::Output] Loading plugins for gst 'StudioGameStateType_PlayServer'
2021-03-12T20:04:11.281Z,91.281647,18f4,6 [FLog::Output] Loading standalone plugins for gst 'StudioGameStateType_PlayServer'
2021-03-12T20:04:11.289Z,91.289642,18f4,6 [FLog::Output] Plugin load time 'sabuiltin_CollisionGroupsEditor.rbxm': 7.999352
2021-03-12T20:04:11.306Z,91.306641,18f4,6 [FLog::Output] Plugin load time 'sabuiltin_ErrorReporter.rbxm': 15.998704
2021-03-12T20:04:11.329Z,91.329643,18f4,6 [FLog::Output] Plugin load time 'sabuiltin_PluginManagement.rbxm': 21.998218
2021-03-12T20:04:11.331Z,91.331642,18f4,6 [FLog::Output] Plugin load time 'sabuiltin_TransformDragger.rbxm': 1.999838
2021-03-12T20:04:11.331Z,91.331642,18f4,6 [FLog::Output] Finished loading standalone plugins for gst 'StudioGameStateType_PlayServer' Total time: 49.995950
2021-03-12T20:04:11.331Z,91.331642,18f4,6 [FLog::Output] Loading asset builtin plugins for gst 'StudioGameStateType_PlayServer'
2021-03-12T20:04:11.354Z,91.354652,18f4,6 [FLog::Output] Plugin load time 'builtin_AlignmentTool.rbxm': 20.012345
2021-03-12T20:04:11.439Z,91.439659,18f4,6 [FLog::Output] Plugin load time 'builtin_AnimationClipEditor.rbxm': 85.004420
2021-03-12T20:04:11.634Z,91.634598,18f4,6 [FLog::Output] Plugin load time 'builtin_AssetConfiguration.rbxm': 193.938923
2021-03-12T20:04:11.658Z,91.658760,18f4,6 [FLog::Output] Plugin load time 'builtin_AssetManager.rbxm': 23.161759
2021-03-12T20:04:11.662Z,91.662758,18f4,6 [FLog::Output] Plugin load time 'builtin_AvatarImporter.rbxm': 3.003039
2021-03-12T20:04:11.673Z,91.673775,18f4,6 [FLog::Output] Plugin load time 'builtin_ConvertToPackage.rbxm': 10.010130
2021-03-12T20:04:11.708Z,91.708809,18f4,6 [FLog::Output] Plugin load time 'builtin_DebugVisualizerUI.rbxm': 35.035455
2021-03-12T20:04:11.729Z,91.729828,18f4,6 [FLog::Output] Plugin load time 'builtin_DeveloperInspector.rbxm': 20.020260
2021-03-12T20:04:11.747Z,91.747849,18f4,6 [FLog::Output] Plugin load time 'builtin_DeveloperStorybook.rbxm': 18.018234
2021-03-12T20:04:11.823Z,91.823891,18f4,6 [FLog::Output] Plugin load time 'builtin_DraftsWidget.rbxm': 75.042045
2021-03-12T20:04:11.840Z,91.840904,18f4,6 [FLog::Output] Plugin load time 'builtin_ErrorReporterBuiltIn.rbxm': 17.013906
2021-03-12T20:04:11.910Z,91.910629,18f4,6 [FLog::Output] Plugin load time 'builtin_EventEmulator.rbxm': 68.721723
2021-03-12T20:04:11.929Z,91.929604,18f4,6 [FLog::Output] Plugin load time 'builtin_FrameworkCompanion.rbxm': 17.977302
2021-03-12T20:04:11.997Z,91.997810,18f4,6 [FLog::Output] Plugin load time 'builtin_GameSettings.rbxm': 67.207369
2021-03-12T20:04:12.138Z,92.138992,18f4,6 [FLog::Output] Plugin load time 'builtin_LocalizationTools.rbxm': 140.184779
2021-03-12T20:04:12.236Z,92.236404,18f4,6 [FLog::Output] Plugin load time 'builtin_MoveDragger.rbxm': 97.408082
2021-03-12T20:04:12.262Z,92.262199,18f4,6 [FLog::Output] Plugin load time 'builtin_PivotEditor.rbxm': 24.797710
2021-03-12T20:04:12.284Z,92.284210,18f4,6 [FLog::Output] Plugin load time 'builtin_PlayerEmulator.rbxm': 21.006930
2021-03-12T20:04:12.388Z,92.388893,18f4,6 [FLog::Output] Plugin load time 'builtin_PublishPlaceAs.rbxm': 103.685610
2021-03-12T20:04:12.430Z,92.430504,18f4,6 [FLog::Output] Plugin load time 'builtin_RigBuilder.rbxm': 40.618454
2021-03-12T20:04:12.437Z,92.437439,18f4,6 [FLog::Output] Plugin load time 'builtin_RotateDragger.rbxm': 5.944164
2021-03-12T20:04:12.459Z,92.459251,18f4,6 [FLog::Output] Plugin load time 'builtin_ScaleDragger.rbxm': 20.824230
2021-03-12T20:04:12.482Z,92.482254,18f4,6 [FLog::Output] Plugin load time 'builtin_SelectDragger.rbxm': 22.997217
2021-03-12T20:04:12.507Z,92.507248,18f4,6 [FLog::Output] Plugin load time 'builtin_TerrainToolsV2.rbxm': 24.996975
2021-03-12T20:04:12.633Z,92.633369,18f4,6 [FLog::Output] Plugin load time 'builtin_TestHarness.rbxm': 125.117949
2021-03-12T20:04:12.698Z,92.698868,18f4,6 [FLog::Output] Plugin load time 'builtin_Toolbox.rbxm': 65.499590
2021-03-12T20:04:12.876Z,92.876839,18f4,6 [FLog::Output] Plugin load time 'builtin_UIEditor.rbxm': 176.981121
2021-03-12T20:04:12.885Z,92.885811,18f4,6 [FLog::Output] Plugin load time 'builtin_ViewSelector.rbxm': 8.970759
2021-03-12T20:04:12.885Z,92.885811,18f4,6 [FLog::Output] Finished loading assset builtin plugins for gst 'StudioGameStateType_PlayServer' Total time: 1554.171478
2021-03-12T20:04:12.885Z,92.885811,18f4,6 [FLog::Output] Loading loose Lua scripts for gst 'StudioGameStateType_PlayServer'
2021-03-12T20:04:12.887Z,92.887802,18f4,6 [FLog::Output] Plugin load time 'user_pattern.lua': 0.000000
2021-03-12T20:04:12.889Z,92.889801,18f4,6 [FLog::Output] Plugin load time 'user_Script.lua': 1.993502
2021-03-12T20:04:12.894Z,92.894783,18f4,6 [FLog::Output] Plugin load time 'user_testing.lua': 4.983755
2021-03-12T20:04:12.894Z,92.894783,18f4,6 [FLog::Output] Finished loading loose Lua scripts for gst 'StudioGameStateType_PlayServer' Total time: 8.970759
2021-03-12T20:04:12.894Z,92.894783,18f4,6 [FLog::Output] Loading local user plugins for gst 'StudioGameStateType_PlayServer'
2021-03-12T20:04:12.895Z,92.895775,18f4,6 [FLog::Output] Finished loading local user plugins for gst 'StudioGameStateType_PlayServer' Total time: 0.996751
2021-03-12T20:04:12.895Z,92.895775,18f4,6 [FLog::Output] Loading user cloud plugins for gst 'StudioGameStateType_PlayServer'
2021-03-12T20:04:12.895Z,92.895775,18f4,6 [FLog::Output] Finished loading user cloud plugins for gst 'StudioGameStateType_PlayServer' Total time: 0.000000
2021-03-12T20:04:12.895Z,92.895775,18f4,6 [FLog::Output] All plugins loaded for gst 'StudioGameStateType_PlayServer'. Total time: 1614.134938
2021-03-12T20:04:14.568Z,94.568909,18f4,6 [FLog::Output] Info: 			BindToWorkspace
2021-03-12T20:04:14.577Z,94.577919,18f4,6 [FLog::Output] Info: 			ConfigureStats
2021-03-12T20:04:14.577Z,94.577919,18f4,6 [FLog::Output] Info: 			RenderJobCyclic
2021-03-12T20:04:14.582Z,94.582916,18f4,7 [FLog::Network] NetworkServer:Stop blockDuration(1000)
2021-03-12T20:04:14.713Z,94.713043,18f4,6 [FLog::Output] Info: 			BindToWorkspace
2021-03-12T20:04:14.723Z,94.723053,18f4,6 [FLog::Output] Info: 			ConfigureStats
2021-03-12T20:04:14.723Z,94.723053,18f4,6 [FLog::Output] Info: 			RenderJobCyclic
2021-03-12T20:04:14.751Z,94.751076,18f4,6 [FLog::Output] Info: 		RobloxViewStudio::RobloxViewStudio - start
2021-03-12T20:04:14.751Z,94.751076,18f4,6 [FLog::Output] Info: 			Marshaller
2021-03-12T20:04:14.751Z,94.751076,18f4,6 [FLog::Output] Info: 			BindToWorkspace
2021-03-12T20:04:14.751Z,94.751076,18f4,6 [FLog::Output] Info: 		RobloxView::RobloxView - end
2021-03-12T20:04:14.751Z,94.751076,18f4,6 [FLog::Output] Info: 			BindToWorkspace
2021-03-12T20:04:14.765Z,94.765091,18f4,6 [FLog::Output] Info: 			ConfigureStats
2021-03-12T20:04:14.765Z,94.765091,18f4,6 [FLog::Output] Info: 			RenderJobCyclic
2021-03-12T20:04:14.770Z,94.770096,18f4,6 [FLog::Output] Info: RobloxIDEDoc::activate - start
2021-03-12T20:04:14.809Z,94.809128,18f4,7 [FLog::Network] NetworkServer:Destroy
2021-03-12T20:04:14.815Z,94.815132,18f4,6 [FLog::Output] cleanupQWidget for pserv_builtin_AlignmentTool.rbxm_Align Tool
2021-03-12T20:04:14.815Z,94.815132,18f4,6 [FLog::Output] m_qDockWidgetCustom was non-NULL
2021-03-12T20:04:14.815Z,94.815132,18f4,6 [FLog::Output] cleanupQWidget for pserv_builtin_AvatarImporter.rbxm_AvatarImporter
2021-03-12T20:04:14.815Z,94.815132,18f4,6 [FLog::Output] m_qWidgetCustom was non-NULL
2021-03-12T20:04:14.815Z,94.815132,18f4,6 [FLog::Output] cleanupQWidget for pserv_builtin_ConvertToPackage.rbxm_Convert To Package
2021-03-12T20:04:14.815Z,94.815132,18f4,6 [FLog::Output] m_qWidgetCustom was non-NULL
2021-03-12T20:04:14.815Z,94.815132,18f4,6 [FLog::Output] cleanupQWidget for pserv_builtin_PublishPlaceAs.rbxm_Publish Place
2021-03-12T20:04:14.815Z,94.815132,18f4,6 [FLog::Output] m_qWidgetCustom was non-NULL
2021-03-12T20:04:14.815Z,94.815132,18f4,6 [FLog::Output] cleanupQWidget for pserv_builtin_TerrainToolsV2.rbxm_Terrain Editor
2021-03-12T20:04:14.815Z,94.815132,18f4,6 [FLog::Output] m_qDockWidgetCustom was non-NULL
2021-03-12T20:04:14.816Z,94.816132,18f4,6 [FLog::Output] cleanupQWidget for pserv_builtin_Toolbox.rbxm_Toolbox
2021-03-12T20:04:14.816Z,94.816132,18f4,6 [FLog::Output] m_qDockWidgetCustom was non-NULL
2021-03-12T20:04:14.816Z,94.816132,18f4,6 [FLog::Output] cleanupQWidget for pserv_user_Script.lua_Studio Notes
2021-03-12T20:04:14.816Z,94.816132,18f4,6 [FLog::Output] m_qDockWidgetCustom was non-NULL
2021-03-12T20:04:14.816Z,94.816132,18f4,6 [FLog::Output] cleanupQWidget for pserv_user_pattern.lua_LuaPatternAnalyzer
2021-03-12T20:04:14.816Z,94.816132,18f4,6 [FLog::Output] m_qDockWidgetCustom was non-NULL
2021-03-12T20:04:14.816Z,94.816132,18f4,6 [FLog::Output] cleanupQWidget for pserv_user_pattern.lua_LuaPatternTester
2021-03-12T20:04:14.816Z,94.816132,18f4,6 [FLog::Output] m_qDockWidgetCustom was non-NULL
2021-03-12T20:06:04.493Z,204.493362,18f4,6 [FLog::Output] Info: RobloxMainWindow::closeEvent
2021-03-12T20:06:04.494Z,204.494354,18f4,6 [FLog::Output] RobloxMainWindow::requestDocClose doc.docType=0
2021-03-12T20:06:05.354Z,205.354980,18f4,6 [FLog::Output] RobloxMainWindow::forceDocClose doc.docType()=0
2021-03-12T20:06:05.354Z,205.354980,18f4,6 [FLog::Output] RobloxDocManager::removeDoc type 0
2021-03-12T20:06:05.355Z,205.355972,18f4,6 [FLog::Output] RobloxMainWindow::requestDocClose doc.docType=2
2021-03-12T20:06:05.355Z,205.355972,18f4,6 [FLog::Output] RobloxMainWindow::forceDocClose doc.docType()=2
2021-03-12T20:06:05.355Z,205.355972,18f4,6 [FLog::Output] RobloxDocManager::removeDoc type 2
2021-03-12T20:06:05.355Z,205.355972,18f4,6 [FLog::Output] RobloxBasicDoc::closeDocument 000001EE118B7420
2021-03-12T20:06:05.356Z,205.356979,18f4,6 [FLog::Output] RobloxBasicDoc::closeDocument 000001EE7DCEC240
2021-03-12T20:06:05.356Z,205.356979,18f4,6 [FLog::Output] RobloxIDEDoc::doClose
2021-03-12T20:06:05.356Z,205.356979,18f4,6 [FLog::Output] RobloxIDEDoc::cleanupPriorToDeleteLater 000001EE7DCEC240 - start
2021-03-12T20:06:05.358Z,205.358978,18f4,6 [FLog::UpdateUIManager] Start waiting for long process(000001EE5C559390): Saving scripts...
2021-03-12T20:06:05.369Z,205.369995,18f4,6 [FLog::UpdateUIManager] Done waiting for long process: Saving scripts...
2021-03-12T20:06:05.376Z,205.376999,18f4,6 [FLog::Output] Info: 			BindToWorkspace
2021-03-12T20:06:05.387Z,205.387009,18f4,6 [FLog::Output] Info: 			ConfigureStats
2021-03-12T20:06:05.387Z,205.387009,18f4,6 [FLog::Output] Info: 			RenderJobCyclic
2021-03-12T20:06:05.495Z,205.495087,18f4,6 [FLog::Output] Info: 			BindToWorkspace
2021-03-12T20:06:05.505Z,205.505096,18f4,6 [FLog::Output] Info: 			ConfigureStats
2021-03-12T20:06:05.505Z,205.505096,18f4,6 [FLog::Output] Info: 			RenderJobCyclic
2021-03-12T20:06:05.505Z,205.505096,18f4,6 [FLog::Output] RobloxIDEDoc::cleanupPriorToDeleteLater 000001EE7DCEC240 - end
2021-03-12T20:06:05.524Z,205.524109,18f4,6 [FLog::AuthenticationHelper] AuthenticationHelper::waitForHttpAuthentication()
2021-03-12T20:06:05.524Z,205.524109,18f4,6 [FLog::AuthenticationHelper] AuthenticationHelper::waitForHttpAuthentication()
2021-03-12T20:06:05.526Z,205.526108,18f4,8 [FLog::StudioDebugLog] StudioUserAction: advArrowToolAction (0)
2021-03-12T20:06:05.526Z,205.526108,18f4,8 [FLog::StudioDebugLog] Open: Place (0)
2021-03-12T20:06:05.526Z,205.526108,18f4,8 [FLog::StudioDebugLog] StudioUserAction: gridSizeToFourAction (0)
2021-03-12T20:06:05.526Z,205.526108,18f4,8 [FLog::StudioDebugLog] ScriptLargeAction: RibbonMainWindow (0)
2021-03-12T20:06:05.526Z,205.526108,18f4,8 [FLog::StudioDebugLog] StudioUserAction: gridSizeToFourAction (0)
2021-03-12T20:06:05.526Z,205.526108,18f4,8 [FLog::StudioDebugLog] unknownAction: RibbonBar:Home (0)
2021-03-12T20:06:05.526Z,205.526108,18f4,8 [FLog::StudioDebugLog] simulationRunAction: RibbonBar:Home (0)
2021-03-12T20:06:05.526Z,205.526108,18f4,8 [FLog::StudioDebugLog] StudioUserAction: simulationRunAction (0)
2021-03-12T20:06:05.526Z,205.526108,18f4,8 [FLog::StudioDebugLog] StudioUserAction: gridSizeToFourAction (0)
2021-03-12T20:06:05.526Z,205.526108,18f4,8 [FLog::StudioDebugLog] simulationResetAction: RibbonBar:Home (0)
2021-03-12T20:06:05.526Z,205.526108,18f4,8 [FLog::StudioDebugLog] StudioUserAction: simulationResetAction (0)
2021-03-12T20:06:05.526Z,205.526108,18f4,8 [FLog::StudioDebugLog] StudioUserAction: gridSizeToFourAction (0)
2021-03-12T20:06:05.549Z,205.549118,18f4,6 [FLog::Output] cleanupQWidget for edit_builtin_AlignmentTool.rbxm_Align Tool
2021-03-12T20:06:05.549Z,205.549118,18f4,6 [FLog::Output] m_qDockWidgetCustom was non-NULL
2021-03-12T20:06:05.549Z,205.549118,18f4,6 [FLog::Output] cleanupQWidget for edit_builtin_AvatarImporter.rbxm_AvatarImporter
2021-03-12T20:06:05.549Z,205.549118,18f4,6 [FLog::Output] m_qWidgetCustom was non-NULL
2021-03-12T20:06:05.549Z,205.549118,18f4,6 [FLog::Output] cleanupQWidget for edit_builtin_ConvertToPackage.rbxm_Convert To Package
2021-03-12T20:06:05.549Z,205.549118,18f4,6 [FLog::Output] m_qWidgetCustom was non-NULL
2021-03-12T20:06:05.549Z,205.549118,18f4,6 [FLog::Output] cleanupQWidget for edit_builtin_GameSettings.rbxm_Game Settings
2021-03-12T20:06:05.549Z,205.549118,18f4,6 [FLog::Output] m_qWidgetCustom was non-NULL
2021-03-12T20:06:05.549Z,205.549118,18f4,6 [FLog::Output] cleanupQWidget for edit_builtin_LocalizationTools.rbxm_Localization Tools
2021-03-12T20:06:05.549Z,205.549118,18f4,6 [FLog::Output] m_qDockWidgetCustom was non-NULL
2021-03-12T20:06:05.549Z,205.549118,18f4,6 [FLog::Output] cleanupQWidget for edit_builtin_PublishPlaceAs.rbxm_Publish Place
2021-03-12T20:06:05.549Z,205.549118,18f4,6 [FLog::Output] m_qWidgetCustom was non-NULL
2021-03-12T20:06:05.549Z,205.549118,18f4,6 [FLog::Output] cleanupQWidget for edit_builtin_TerrainToolsV2.rbxm_Terrain Editor
2021-03-12T20:06:05.549Z,205.549118,18f4,6 [FLog::Output] m_qDockWidgetCustom was non-NULL
2021-03-12T20:06:05.549Z,205.549118,18f4,6 [FLog::Output] cleanupQWidget for edit_builtin_Toolbox.rbxm_Toolbox
2021-03-12T20:06:05.549Z,205.549118,18f4,6 [FLog::Output] m_qDockWidgetCustom was non-NULL
2021-03-12T20:06:05.549Z,205.549118,18f4,6 [FLog::Output] cleanupQWidget for edit_user_Script.lua_Studio Notes
2021-03-12T20:06:05.549Z,205.549118,18f4,6 [FLog::Output] m_qDockWidgetCustom was non-NULL
2021-03-12T20:06:05.549Z,205.549118,18f4,6 [FLog::Output] cleanupQWidget for edit_user_pattern.lua_LuaPatternAnalyzer
2021-03-12T20:06:05.549Z,205.549118,18f4,6 [FLog::Output] m_qDockWidgetCustom was non-NULL
2021-03-12T20:06:05.549Z,205.549118,18f4,6 [FLog::Output] cleanupQWidget for edit_user_pattern.lua_LuaPatternTester
2021-03-12T20:06:05.549Z,205.549118,18f4,6 [FLog::Output] m_qDockWidgetCustom was non-NULL
2021-03-12T20:06:05.549Z,205.549118,18f4,6 [FLog::Output] cleanupQWidget for rplg_sabuiltin_CollisionGroupsEditor.rbxm_CollisionGroupsEditorWindow
2021-03-12T20:06:05.549Z,205.549118,18f4,6 [FLog::Output] m_qDockWidgetCustom was non-NULL
2021-03-12T20:06:05.571Z,205.571930,18f4,6 [FLog::Output] Info: RobloxIDEDoc::~RobloxIDEDoc - begin
2021-03-12T20:06:05.572Z,205.572922,18f4,6 [FLog::Output] Info: RobloxIDEDoc::cleanupInDestructor - start
2021-03-12T20:06:05.572Z,205.572922,18f4,6 [FLog::Output] Info: RobloxIDEDoc::cleanupInDestructor - end
2021-03-12T20:06:05.572Z,205.572922,18f4,6 [FLog::Output] Info: RobloxIDEDoc::~RobloxIDEDoc - end
2021-03-12T20:06:05.575Z,205.575897,18f4,6 [FLog::Output] Info: End of main, return value 0
2021-03-12T20:06:05.651Z,205.651245,18f4,6 [FLog::Output] Info: RobloxMainWindow::~RobloxMainWindow
2021-03-12T20:06:05.893Z,205.893463,18f4,6 [FLog::Output] Info: RPC:Destructor Removed server - RBX_STUDIO_9224
2021-03-12T20:06:05.893Z,205.893463,18f4,6 [FLog::Output] Info: RPC:Destructor Destroyed server - RBX_STUDIO_9224

There is no crash, merely that nothing happens when the breakpoint should happen.

1 Like

I thought this was the case too, but do end shouldn’t even get serialized as a return instruction. I’m guessing that since it can’t even be found in the bytecode, it can’t break on it.

2 Likes

Thank you, we’ve filed a ticket to our internal database and we’ll follow up when we have an update for you.

2 Likes