Recently I’ve been messing around with my text stroke in roblox studio, and decided to open the game. However when my friend joined his stroke transparency started glitching even though his username was not included in the script.
I have tried every possible way in my knowledge by re-writing and changing the location of the script but i still cant get it to work. I’d be pleased if someone could help me on this.
-- local chat = game.Players.LocalPlayer.PlayerGui:WaitForChild("Chat")
for i,v in pairs(chat:GetDescendants()) do
if tick()%0.016 < 0.005 then game["Run Service"].RenderStepped:Wait() end
pcall(function()
if v.Text:find("siypex") then
v.Parent.TextColor3 = Color3.fromRGB(231, 224, 255)
v.Parent.TextStrokeColor3 = Color3.fromRGB(158, 46, 255)
v.Parent.TextStrokeTransparency = 0.25
end
end)
end
chat.DescendantAdded:Connect(function(d)
if d.Text and d.Text:find("siypex") then
d.Parent.TextColor3 = Color3.fromRGB(231, 224, 255)
d.Parent.TextStrokeColor3 = Color3.fromRGB(158, 46, 255)
d.Parent.TextStrokeTransparency = 0.25
end
end)