Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local player = game:GetService("Players").LocalPlayer
- local st = player.PlayerGui.Style.BG.StyleTxt
- local Slot = player.PlayerGui.Style.BG.Slots.ScrollingFrame.Slot1.Text
- local des = player.PlayerGui.Style.BG.Desc
- while true do
- -- Change the text and color for StyleTxt
- st.Text = "CR7"
- st.TextColor3 = Color3.fromRGB(255, 0, 0) -- Corrected fromRBG to fromRGB
- -- Change the text and color for Slot
- Slot.Text = "CR7"
- Slot.TextColor3 = Color3.fromRGB(255, 0, 0) -- Corrected fromRBG to fromRGB
- -- Change the text for Desc
- des.Text = "The best player in the world!"
- -- Wait for a short duration to prevent performance issues
- wait() -- Adjust the wait time as needed
- end
Add Comment
Please, Sign In to add comment