so I want it that when you join the game the text randomizes between certain letters, I have done what should have worked and I see no problems with it but I need help with it
local text = script.Parent.Text local Players = game:GetService("Players") Players.PlayerAdded:Connect(function(player) text.Value = math.random("A", "B", "C", "D", "E") end)
You should be using text.Text and you can only use math.random for numbers.
local text = script.Parent.Text local Players = game:GetService("Players") local myLetters = {"A", "B", "C", "D", "E"} Players.PlayerAdded:Connect(function(player) text.Text = math.random(1,#myLetters) end)