Hi, so, the issue i have here is quite simple and understandable. The character’s expression system here won’t work anymore after they reset. I don’t know or understand why? The local script is in StarterCharacterScripts, btw.
LocalScript:
--||Services
local Players = game:GetService("Players")
local RunService = game:GetService("RunService")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
--||Variables
local Utilities = ReplicatedStorage:WaitForChild("Utilities")
local Expressions = require(Utilities.Expressions)
local Player = Players.LocalPlayer
local Character = Player.Character or Player.CharacterAdded:Wait()
local CharacterSettings = Character:WaitForChild("Settings")
local Humanoid = Character:WaitForChild("Humanoid")
local Animator = Humanoid.Animator
--|Expression
RunService.Heartbeat:Connect(function()
for _, Anim in Animator:GetPlayingAnimationTracks() do
if CharacterSettings:GetAttribute("Hurting") == false and (Anim.Name == "Animation1" or Anim.Name == "Animation2") and CharacterSettings:GetAttribute("Drifting") == false and CharacterSettings:GetAttribute("Bolting") == false and CharacterSettings:GetAttribute("Tramping") == false then
Expressions:Swap("Happy", "Happy", "HappyClosed", "Idle")
elseif (Anim.Name == "WalkAnim" or Anim.Name == "RunAnim") and CharacterSettings:GetAttribute("Hurting") == false and CharacterSettings:GetAttribute("Drifting") == false and CharacterSettings:GetAttribute("Bolting") == false and CharacterSettings:GetAttribute("Tramping") == false then
Expressions:Swap("Happy", "Happy", "HappyOpen", "Walk/Run")
elseif Anim.Name == "JumpAnim" and CharacterSettings:GetAttribute("Hurting") == false and CharacterSettings:GetAttribute("Drifting") == false and CharacterSettings:GetAttribute("Bolting") == false and CharacterSettings:GetAttribute("Tramping") == false then
Expressions:Swap("Happy", "Blink", "HappyClosed", "Jump")
elseif Anim.Name == "FallAnim" and CharacterSettings:GetAttribute("Hurting") == false and CharacterSettings:GetAttribute("Drifting") == false and CharacterSettings:GetAttribute("Bolting") == false and CharacterSettings:GetAttribute("Tramping") == false then
Expressions:Swap("Happy", "Down", "HappyClosed", "Fall")
elseif Anim.Name == "Ventilator" and CharacterSettings:GetAttribute("Hurting") == false and CharacterSettings:GetAttribute("Drifting") == false and CharacterSettings:GetAttribute("Bolting") == false and CharacterSettings:GetAttribute("Tramping") == false then
Expressions:Swap("Happy", "Up", "HappyOpen", "Ventilator")
elseif Anim.Name == "Ring" and CharacterSettings:GetAttribute("Hurting") == false or CharacterSettings:GetAttribute("Bolting") == true then
Expressions:Swap("Surprised", "Happy", "HappyOpen", "Ring/Bolt")
elseif Anim.Name == "Drift" and CharacterSettings:GetAttribute("Hurting") == false or CharacterSettings:GetAttribute("Drifting") == true then
Expressions:Swap("Happy", "Down", "Curious", "Drift")
elseif Anim.Name == "Tramp" and CharacterSettings:GetAttribute("Hurting") == false or CharacterSettings:GetAttribute("Tramping") == true then
Expressions:Swap("Angry", "Blink", "AngryClosed", "Tramp")
elseif Anim.Name == "Propel" and CharacterSettings:GetAttribute("Hurting") == false or CharacterSettings:GetAttribute("Propelling") == true then
Expressions:Swap("Happy", "Blink", "HappyClosed", "Jump")
elseif CharacterSettings:GetAttribute("Hurting") == true then
Expressions:Swap("Sad", "Sad", "BoredClosed", "Hurt")
end
end
end)
ModuleScript:
--||Services
local Players = game:GetService("Players")
--||Variables
local Player = Players.LocalPlayer
local Character = Player.Character or Player.CharacterAdded:Wait()
local CharacterSettings = Character:WaitForChild("Settings")
local EyebrowsV = {
Character:WaitForChild("LeftEyebrow").GUI,
Character:WaitForChild("RightEyebrow").GUI
}
local EyesV = {
Character:WaitForChild("LeftEye").GUI,
Character:WaitForChild("RightEye").GUI,
Character:WaitForChild("LeftEye").ChronoGUI,
Character:WaitForChild("RightEye").ChronoGUI
}
local MouthV = Character:WaitForChild("Mouth").GUI
local MouthSide = ""
--------------------------------------
local Expressions = {}
--||Functions
function Expressions:MouthFaceCamera(Root, Camera)
if Character then
local ViewDistance = (Root.Position - Camera.CFrame.Position).Unit
local Dot = ViewDistance:Dot(Root.CFrame.RightVector)
if Dot > -1 and Dot < 0 then
MouthSide = "Left"
elseif Dot < 1 and Dot > 0 then
MouthSide = "Right"
end
end
end
--------------------------------------
function Expressions:Swap(Eyebrows: string, Eyes: string, Mouth: string, Expression: string)
CharacterSettings:SetAttribute("Expression", Expression)
--------------------------------------
for _, Eyebrow : SurfaceGui in ipairs(EyebrowsV) do
for _, Image : ImageLabel in ipairs(Eyebrow:GetChildren()) do
if Image.Name ~= Eyebrows then
Image.Visible = false
else
Image.Visible = true
end
end
end
--------------------------------------
for _, Eye : SurfaceGui in ipairs(EyesV) do
if not string.match(Eye.Name, "Chrono") then
for _, Image : ImageLabel in ipairs(Eye:GetChildren()) do
if Image.Name ~= Eyes then
Image.Visible = false
else
Image.Visible = true
end
end
else
for _, Image : ImageLabel in ipairs(Eye:GetChildren()) do
if not string.match(Image.Name, Eyes) then
Image.Visible = false
else
Image.Visible = true
if CharacterSettings:GetAttribute("Energy") < 32 then
Image.ImageTransparency = 1
elseif CharacterSettings:GetAttribute("Energy") > 32 and CharacterSettings:GetAttribute("Energy") < 70 then
Image.ImageTransparency = 0.5
elseif CharacterSettings:GetAttribute("Energy") > 70 and CharacterSettings:GetAttribute("Energy") < 101 then
Image.ImageTransparency = 0
end
end
end
end
end
--------------------------------------
for _, Image : ImageLabel in ipairs(MouthV:GetChildren()) do
if not string.match(Image.Name, Mouth) or not string.match(Image.Name, MouthSide) then
Image.Visible = false
elseif string.match(Image.Name, Mouth) and string.match(Image.Name, MouthSide) then
Image.Visible = true
end
end
end
--------------------------------------
return Expressions