Kolerot Scripts | Roblox Scripts
Проверенные скрипты ✔️ 👉🏻 Роблокс скрипты 👈🏻 Чат: t.me/ChatKolerotScripts Буст канала: t.me/boost/KolerotScripts #Roblox #KolerotScript #RobloxScripts #ScriXatHub #RobloxNews #RobloxStudio Мы не нарушаем правила Telegram и не продаем запрещенное.
Show more📈 Analytical overview of Telegram channel Kolerot Scripts | Roblox Scripts
Channel Kolerot Scripts | Roblox Scripts (@kolerotscripts) in the Russian language segment is an active participant. Currently, the community unites 16 766 subscribers, ranking 7 792 in the Technologies & Applications category and 39 820 in the Russia region.
📊 Audience metrics and dynamics
Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 16 766 subscribers.
According to the latest data from 03 July, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by 269 over the last 30 days and by -46 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 2.98%. Within the first 24 hours after publication, content typically collects 1.04% reactions from the total number of subscribers.
- Post reach: On average, each post receives 500 views. Within the first day, a publication typically gains 174 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 1.
- Thematic interests: Content is focused on key topics such as скрипт, бан, script, дюп, брэйнрота.
📝 Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
“Проверенные скрипты ✔️
👉🏻 Роблокс скрипты 👈🏻
Чат: t.me/ChatKolerotScripts
Буст канала: t.me/boost/KolerotScripts
#Roblox #KolerotScript #RobloxScripts #ScriXatHub #RobloxNews #RobloxStudio
Мы не нарушаем правила Telegram и не продаем запрещен...”
Thanks to the high frequency of updates (latest data received on 04 July, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Technologies & Applications category.
WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
]]
loadstring(game:HttpGet("https://raw.githubusercontent.com/KieuroBeep/TrixSpoits/refs/heads/main/Yba-Rawlua"))() WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
]]
loadstring(game:HttpGet("https://raw.githubusercontent.com/rivaINV/mugen/refs/heads/main/mugen.txt"))()loadstring(game:HttpGet("https://raw.githubusercontent.com/gumanba/Scripts/main/GrowaGarden"))() WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
]]
loadstring(game:HttpGet("https://raw.githubusercontent.com/Nevan32/BLUE-LOCK-RIVALS/refs/heads/main/Loader"))() WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
]]
loadstring(game:HttpGet("https://raw.githubusercontent.com/tienkhanh1/spicy/main/Chilli.lua"))()``--[[
WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
]]
local repo = "https://raw.githubusercontent.com/deividcomsono/Obsidian/main/"
local Library = loadstring(game:HttpGet(repo .. "Library.lua"))()
local ThemeManager = loadstring(game:HttpGet(repo .. "addons/ThemeManager.lua"))()
local SaveManager = loadstring(game:HttpGet(repo .. "addons/SaveManager.lua"))()
local TweenService = game:GetService("TweenService")
local Loading = Library:Notify({
Title = "Loading...",
Description = "It might take a while.",
Time = 5,
})
local Options = Library.Options
local Toggles = Library.Toggles
Library.ForceCheckbox = true
Library.ShowToggleFrameInKeybinds = true
local Window = Library:CreateWindow({
Title = "Evade Event Tweaks",
Footer = "ver. 0.0.1",
NotifySide = "Right",
ShowCustomCursor = true,
})
local Tabs = {
Farmz = Window:AddTab("Farm Tweaks", "user"),
["UI Settings"] = Window:AddTab("UI Settings", "settings"),
}
local MenuGroup2 = Tabs.Farmz:AddLeftGroupbox("Farm", "wrench")
local MenuGroup = Tabs["UI Settings"]:AddLeftGroupbox("Menu", "wrench")
MenuGroup:AddToggle("KeybindMenuOpen", {
Default = Library.KeybindFrame.Visible,
Text = "Open Keybind Menu",
Callback = function(value)
Library.KeybindFrame.Visible = value
end,
})
MenuGroup:AddToggle("ShowCustomCursor", {
Text = "Custom Cursor",
Default = true,
Callback = function(Value)
Library.ShowCustomCursor = Value
end,
})
MenuGroup:AddDropdown("NotificationSide", {
Values = { "Left", "Right" },
Default = "Right",
Text = "Notification Side",
Callback = function(Value)
Library:SetNotifySide(Value)
end,
})
MenuGroup:AddDropdown("DPIDropdown", {
Values = { "50%", "75%", "100%", "125%", "150%", "175%", "200%" },
Default = "100%",
Text = "DPI Scale",
Callback = function(Value)
Value = Value:gsub("%%", "")
local DPI = tonumber(Value)
Library:SetDPIScale(DPI)
end,
})
MenuGroup:AddDivider()
MenuGroup:AddLabel("Menu bind")
:AddKeyPicker("MenuKeybind", { Default = "RightShift", NoUI = true, Text = "Menu keybind" })
MenuGroup:AddButton("Unload", function()
Library:Unload()
end)
Library.ToggleKeybind = Options.MenuKeybind
ThemeManager:SetLibrary(Library)
SaveManager:SetLibrary(Library)
SaveManager:IgnoreThemeSettings()
SaveManager:SetIgnoreIndexes({ "MenuKeybind" })
ThemeManager:SetFolder("MyScriptHub")
SaveManager:SetFolder("MyScriptHub/specific-game")
SaveManager:SetSubFolder("specific-place")
SaveManager:BuildConfigSection(Tabs["UI Settings"])
ThemeManager:ApplyToTab(Tabs["UI Settings"])
SaveManager:LoadAutoloadConfig()
local autoFarmEnabled = false
local platform = nil
local platformPosition = nil
local character = nil
local humanoidRootPart = nil
local TWEEN_TIME = 0.1
local UNDER_OFFSET = 6.5 -- studs under
local player = game.Players.LocalPlayer
local function createPlatform()
if platform then
platform:Destroy()
end
platform = Instance.new("Part")
platform.Name = "AutoFarmPlatform"
platform.Size = Vector3.new(1000, 1, 1000)
platform.Material = Enum.Material.Neon
platform.BrickColor = BrickColor.new("Bright green")
platform.Anchored = true
platform.CanCollide = true
platform.Position = Vector3.new(0, 5000, 0) -- High up in the air
platform.Parent = workspace
platform.Transparency = 0.9
platformPosition = platform.Position + Vector3.new(0, platform.Size.Y / 2 + 3, 0) -- 0 studs above the platform
end
local function tweenToPosition(targetPosition)
if character and humanoidRootPart then
local tweenInfo = TweenInfo.new(
TWEEN_TIME,
Enum.EasingStyle.Quad,
Enum.EasingDirection.Out
)
local tween = TweenService:Create(humanoidRootPart, tweenInfo, {CFrame = CFrame.new(targetPosition)})
tween:Play()
-- Removed Completed:Wait() to allow constant updating
end
end
Available now! Telegram Research 2025 — the year's key insights 
