I have an issue with passive a value through a remote. As you can see, the other information passes through nicely.
Output: Ignore the 1st/2cnd print,
I’m trying to print the value but it says PlayerName.
--LocalScript
AddVote:FireServer(
LocalPlayer,
script.Parent.TextLabel.Text,
script.Parent.Parent.Parent.Parent.Parent.Prestige.Value
)
--ServerScript
local function ConvertVote(LocalPlayer,VotedPlayer,Prestige)
print(LocalPlayer.Name.."Voter")
print(VotedPlayer.Name.."Voted")
print(Prestige)
end