So here’s the original local script definitions, how can I replicate this but in a serverscript again?
Is this what you meant?
As you can see here its a server script now in ServerScriptService
Is this what you meant?
As you can see here its a server script now in ServerScriptService
All you need to do is change the two variables at the top, add one more variable, and change this LocalScript into a Script. Keep it in StarterCharacterScripts though.
local Character = script.Parent.Parent
local Player = game.Players:GetPlayerFromCharacter(Character)
local Race = Player.PlayerValues.Race
Just change/add these at the top of your scripts.
Nice thanks it worked 30charsss