[PLUGIN] Zgoly's Thumbnail Tools - Create & Preview!

:loudspeaker: Introducing: Zgoly’s Thumbnail Tools - A Roblox Studio Plugin for Thumbnail Manipulation! :framed_picture:

Zgoly’s Thumbnail Tools is a powerful and user-friendly free plugin designed to simplify the process of creating and previewing thumbnails for your Roblox objects. This plugin has been recently rewritten, making it a brand new experience for users!

white_ui black_ui

:link: Get for free from the Roblox Creator Store

:art: Creator Tab

The Creator Tab allows you to generate thumbnails for any object in your workspace. Follow these simple steps:

  1. Select an object (model, part, mesh, or any other visible object) and check the relevant checkboxes if needed.
  2. Click on the “Create Thumbnail” button.
  3. Adjust the camera:
    • Modify the position and rotation by controlling it like the default Roblox Studio camera.
    • Manually edit fields such as the field of view in the “ChangeMyProperties” camera properties.
  4. Click on “Done” to save your thumbnail.

:mag: Previewer Tab

The Previewer Tab enables you to preview existing “ThumbnailCamera” instances. To do this, simply select the ThumbnailCamera or any object that contains it as a child.

:question: Why Choose Zgoly’s Thumbnail Tools?

Zgoly’s Thumbnail Tools stands out from other plugins with its:

  1. Animations: Unlike other plugins that opt not to include animations, Zgoly’s Thumbnail Tools provides smooth and visually appealing animations, enhancing your overall experience.
  2. Simple and Clear UI: The clean and intuitive interface makes it easy for users of all skill levels to navigate and use the plugin effectively.
  3. Roblox Studio Themes Support: Zgoly’s Thumbnail Tools supports both dark and white Roblox Studio themes, ensuring a consistent look and feel with your existing workspace.

:date: Plugin History

This plugin was initially created three years ago and has not received any updates until now. With the recent full rewrite, Zgoly’s Thumbnail Tools is essentially a brand new plugin, ready to enhance your Roblox Studio experience!

:rotating_light: Issues

If you encounter any issues, bugs, errors, or have suggestions for improvement, please don’t hesitate to share them in the comments below this topic. Your feedback is valuable and will help me make Zgoly’s Thumbnail Tools even better for the Roblox community!

:link: Get for free from the Roblox Creator Store

I hope you enjoy using Zgoly’s Thumbnail Tools to create stunning thumbnails for your Roblox creations! :rocket:
14 Likes

Hey, awesome plugin idea! I haven’t seen any plugins that manage the ThumbnailCamera. You pretty much added anything we’d want regarding this!

:+1:

1 Like

Hey this is a cool plugin. One thing that’s bothered me though is the models get sent to the origin during the preview. This is somewhat making a mess of my asset file. If I move the models back to their original location, the preview doesnt work, presumably because it assumes the model is still at the origin.

Could this plugin work without translating the models for the preview?

Edit: Looks like this could be achieved by editing the Done callback:

doneButton.MouseButton1Click:Connect(function()
	local recording = ChangeHistoryService:TryBeginRecording("ThumbnailSave")

	if firstCamera and finalCamera and savedFirstObject and finalObject then
		--local finalObjectClone = finalObject:Clone()
		--finalObjectClone.Parent = savedFirstObject.Parent

		local finalCameraCopy = finalCamera:Clone()
		finalCameraCopy.Name = "ThumbnailCamera"
		finalCameraCopy.Parent = savedFirstObject

		--savedFirstObject:Destroy() -- please dont delete my things
		Selection:Set({ savedFirstObject })

Hmm… Have you tried unchecking these 2 checkboxes?

image

If I understand you correctly, this is what you need.