How do i do this?

How would i make something like the strongest battlegrounds awakening outfits?

Can you send a video or picture so we know exactly what you want?

1 Like

sure will, let me get my ss real quick

1 Like


this, it allows you to change your outfit when you use ultimate, i believe it gets ur saved outfits

1 Like

Well, you’d use a remote event. You would use a local script to handle all the button stuff, and then make it so that when the player presses it, the remote event is fired for the server to give you the outfit

ive got all of it set up, but i need help applying the outfit to it and making the accessories fit properly

1 Like

Oh, I’m not really an expert on avatar loading but I think these posts should help.

Packages

Shirt and pants

And for the accessories, hum:AddAccessory() and in the parentheses put an Accessory

To remove accessories you use this

for _, Hat in pairs(character:GetChildren()) do
	if Hat:IsA('Accessory') then
		Hat:Destroy()
	end
end

Sorry it took long but let me know if you need anymore help!

1 Like

yeah i needed this cus the accessories were being positioned weird

1 Like