RIVALS
19.2k Views

script

RIVALSUploaded by
10 months ago
Please login to perform these actions:

Description

Features List: Combat Aimbot (FOV, Smoothness, Keybind toggle) Visuals Player ESP (Highlight) Name ESP Health ESP Distance ESP Box ESP Tracer ESP Movement Infinite Jump NoClip Misc Anti AFK Reset Character Mobile Support

View Raw
Edited By: rrrrrr7799 Download


Comments
5
User profile picture
bemjayden1 10 months ago
local TextChatService = game:GetService("TextChatService") local Players = game:GetService("Players") -- Define your tags: map UserIds to their tag properties local customTags = { [123456789] = { TagText = "[Friend]", TagColor = Color3.fromRGB(85, 255, 255) }, -- Replace with friend's UserID [987654321] = { TagText = "[VIP]", TagColor = Color3.fromRGB(255, 0, 0) }, -- Replace with VIP UserID } TextChatService.OnIncomingMessage = function(message: TextChatMessage) local properties = Instance.new("TextChatMessageProperties") -- Check if the message has a source (i.e., it's from a player) if message.TextSource then local player = Players:GetPlayerByUserId(message.TextSource.UserId) if player then local tagData = customTags[player.UserId] if tagData then -- Format the tag using rich text for color and apply it as a prefix properties.PrefixText = string.format("<font color='rgb(%d,%d,%d)'>%s</font> ", tagData.TagColor.R * 255, tagData.TagColor.G * 255, tagData.TagColor.B * 255, tagData.TagText) .. (message.PrefixText or "") return properties end end end -- If no custom tag is found, return nil to keep original properties return nil end
bemjayden1's profile picturebemjayden1local TextChatService = game:GetService("TextChatS...
User profile picture
LumyniaHUB 10 months ago
@bemjayden1 ?
User profile picture
Blackhat2757 10 months ago
Give me key
LumyniaHUB's profile pictureLumyniaHUB@bemjayden1 ?
User profile picture
JoshAuraistrue 10 months ago
@LumyniaHUB yo the discord link expired
JoshAuraistrue's profile pictureJoshAuraistrue@LumyniaHUB yo the discord link expired
User profile picture
LumyniaHUB 10 months ago
@JoshAuraistrue entendi
Please Login to add a comment.