Honeydew - Easily make your avatar in your game!

Well, first time doing this.

Customizable Avatar Editor, I don’t know how to do this.

How it works

Just like Catalog Heaven, but you can add things easily and you can also use it in your game.

Please make sure you update HoneyDew at least most monthly because I might have more things to add.

How to get HoneyDew

HoneyDew - Resources.zip (65.2 KB)

Do’s and Dont’s

:x: Attempts to resell this.
:white_check_mark: Use this in your game.
:white_check_mark: Customize it for yourself.
:x: Use this on your portfolio.
:x: Claim these as your own.
:white_check_mark: Give credit (not required).
:white_check_mark: Report Resellers.
:white_check_mark: Update at most monthly

More things you can do

  • Send in an item request to be in the entire system! Request an item here!
  • Request future updates in the replies?

Tutorials

Toggling The UI

Make 2 RemoteEvents in ReplicatedStorage.

Name one “ToggleAvatarEditor”

Name the other “AvatarTeleportPlayer”

Make a script in ServerScriptService

Put this in the script.

game.ReplicatedStorage.AvatarTeleportPlayer.OnServerEvent:Connect(function(player)

local character = player.Character

local HumanoidRootPart = character.HumanoidRootPart

local teleportPart -- = then whatever part you want to teleport the player to

HumanoidRootPart.CFrame = teleportPart.CFrame + CFrame.new(Vector3.new(0, 6, 0))

end)

Make a local script in StarterGui.

local ToggleAvatarEditor = game.ReplicatedStorage.ToggleAvatarEditor

ToggleAvatarEditor.OnClientEvent:Connect(function()
	local player = game.Players.LocalPlayer
	local character = player.Character
	script.Parent.LocalCamera.Disabled = not script.Parent.LocalCamera.Disabled
	script.Parent.AvatarEditor_Gui.Enabled = not script.Parent.AvatarEditor_Gui.Enabled
	if game.Workspace.Camera.CameraType == Enum.CameraType.Scriptable then
		game.Workspace.Camera.CameraType = Enum.CameraType.Custom
		game.ReplicatedStorage.TeleportPlayer:FireServer()
		character.Humanoid.JumpPower = 50
		character.Humanoid.WalkSpeed = 16
	else
		character.Humanoid.WalkSpeed = 0
		character.Humanoid.JumpPower = 0
	end
end)

End

I hope you like this system, and I hope you can use it normally!

Goodbye!

16 Likes

I was actually looking for something just like this. Thank you for your contribution :slight_smile:

what is the difference between the download you gave us, and requesting the full system?

2 Likes

Well, the forms were being abused so I had to retreat to an easier method. Also the download has a tutorial.

When I play the game I get the following errors:

  15:17:46.290  Handle is not a valid member of ViewportFrame "Players.RobloxTitan4223.PlayerGui.AvatarEditor_Gui.EditorFrame.Gear.Script.Template.ViewportFrame"  -  Client - LocalScript:6
  15:17:46.290  Stack Begin  -  Studio
  15:17:46.290  Script 'Players.RobloxTitan4223.PlayerGui.AvatarEditor_Gui.EditorFrame.Gear.Script.Template.ViewportFrame.LocalScript', Line 6  -  Studio - LocalScript:6
  15:17:46.290  Stack End  -  Studio
  15:17:46.291  Handle is not a valid member of ViewportFrame "Players.RobloxTitan4223.PlayerGui.AvatarEditor_Gui.EditorFrame.Accessory.Script.Template.ViewportFrame"  -  Client - LocalScript:6
  15:17:46.291  Stack Begin  -  Studio
  15:17:46.291  Script 'Players.RobloxTitan4223.PlayerGui.AvatarEditor_Gui.EditorFrame.Accessory.Script.Template.ViewportFrame.LocalScript', Line 6  -  Studio - LocalScript:6
  15:17:46.291  Stack End  -  Studio
  15:17:46.291  Rig is not a valid member of ViewportFrame "Players.RobloxTitan4223.PlayerGui.AvatarEditor_Gui.EditorFrame.Clothing.Script.Template.ViewportFrame"  -  Client - LocalScript:6
  15:17:46.291  Stack Begin  -  Studio
  15:17:46.292  Script 'Players.RobloxTitan4223.PlayerGui.AvatarEditor_Gui.EditorFrame.Clothing.Script.Template.ViewportFrame.LocalScript', Line 6  -  Studio - LocalScript:6
  15:17:46.292  Stack End  -  Studio

@AltCJBoy410

1 Like

Don’t mind those.
It’s a bug and it will be fixed.

The system doesnt work though.

Edit: GUI wasnt enabled.

You might have to toggle it by either using a script

(AvatarEditor_Gui.Enabled = true)

or just manually toggle it by selecting it and clicking the enabled box.

May I ask, what are you using it for?

Just messing around, wanted to see what “Honeydew” is.

Oh, well okay.

Thanks for testing it out.

1 Like