Animations not loading in (roblox ones)

Photo is simple.

I have an idle animation, whilst my friend doesn’t.

game.ReplicatedStorage.BoyRemoteEvent.OnServerEvent:Connect(function(player, boy)
	
	local char = player.Character
	local customChar = game.ServerStorage.Genders.Boy.StarterCharacter

	player.TeamColor = boy

	player:LoadCharacter()

	if not char:FindFirstChild("IsCustom") then
		local newChar = customChar:Clone()
		newChar.Name = player.Name
		newChar.HumanoidRootPart.CFrame = char.HumanoidRootPart.CFrame
		player.Character = newChar
		newChar.Parent = workspace
	end

end)

game.ReplicatedStorage.GirlRemoteEvent.OnServerEvent:Connect(function(player, girl)

	local char = player.Character
	local customChar = game.ServerStorage.Genders.Girl.StarterCharacter

	player.TeamColor = girl

	player:LoadCharacter()

	if not char:FindFirstChild("IsCustom") then
		local newChar = customChar:Clone()
		newChar.Name = player.Name
		newChar.HumanoidRootPart.CFrame = char.HumanoidRootPart.CFrame
		player.Character = newChar
		newChar.Parent = workspace
	end

end)

Why?

2 Likes

Have you tried to see if it is on R6 or R15?

2 Likes

Avatar’s are on R15. I use the default ROBLOX localscript called “Animate”

Try copying everything from the animate localscript excepted for the part with game.Players.LocalPlayer (you can search for it with CTRL + F) and pasting it in a server script.

3 Likes

If the animator script is in “LocalScript” probably only the local client can see changes. Try to use normal “Script” to make changes visible on the server-side (for other players) :slight_smile:

1 Like