🔮 | Script Roblox | 💜
38.8K subscribers
2.25K photos
442 videos
55 files
1.11K links
• Скрипты roblox 🔮
👇🏻Info
Чат👉🏻t.me/ScriptRBXchat0
Владелец 👉🏻t.me/MepiIok
Второй канал >t.me/ScriptRoboxOfficial

НАШ КАНАЛ НЕ РАСПРОСТРАНЯЕТ ПЕРСОНАЛЬНЫЕ ДАННЫЕ, НЕ ПРОДАЁТ НАР***ИКИ И АЛ***ОЛЬ, МЫ НЕ НАРУШАЕМ ПРАВИЛА/ЗАКОНЫ ТЕЛЕГРАММ И РОССИИ
Download Telegram
Универсальный скрипт

Функции:
- Настройка прыжка
- Настройка бега
- И много другое.
Скрипт:
loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/richie0866/orca/master/public/snapshot.lua"))("t.me/KolerotScripts")

Взято из
t.me/KolerotScripts.
👍4
Режим: The Strongest Battleground
Функции: Мувсет Махито, Онли Сайтама.

Скрипт:
loadstring(game:HttpGet('https://raw.githubusercontent.com/Kenjihin69/Kenjihin69/refs/heads/main/Mahitotsbupdate'))("t.me/KolerotScripts")

Взято из
t.me/KolerotScripts.
👍8❤‍🔥2👎1
🎮 • GAME:
dead rails

🕹️ • FUNC:
Features Lobby:
Create lobby (1-10)
Exit party
Reset avatar
Fov Changer

Features In-Game:
Gun mods
Always text size on (Move the x and y size around to fix it not appearing!)
Serverhop
No Proximityprompt hold delay
Auto heal (at specific health)
No heal delay
Full Bright
Ambient changer
3rd person and fov changer

⚙️ • script:
loadstring(game:HttpGet("https://raw.githubusercontent.com/kylosilly/astolfoware/refs/heads/main/astolfo%20ware%20loader.lua"))("t.me/LI_Script")

📋 • info - @LI_Script & @Quest_tag
Request script:
@LI_Script_rp_bot
👍51
🎮 • GAME:
work in a pizza place

🕹️ • FUNC:
autofram and more

⚙️ • script:
loadstring(game:HttpGet("https://rawscripts.net/raw/Work-at-a-Pizza-Place-Pizz-Plce-utoFrm-Script-3972"))("t.me/LI_Script")

📋 • info - @LI_Script & @Quest_tag
Request script:
@LI_Script_rp_bot
👎4👍2
🎮 • GAME:
ability wars

🕹️ • FUNC:
NO KNOCKBACK, INFINITE REACH, KILLAURA, CLICKAURA/LEGITAURA, ESP, SHACKLE KILL,
NO GLUE, NO SHACKLE, VELOCITY CLAMP, RESPAWN, AUTORESPAWN, ANTIVOID, ETC...

⚙️ • script:
loadstring(game:HttpGet("https://paste.ee/r/Wo5Kj"))("t.me/LI_Script")

📋 • info - @LI_Script & @Quest_tag
Request script:
@LI_Script_rp_bot
👍2👎21❤‍🔥1
🎮 • GAME:
Trident survival

🕹️ • FUNC:
esp and legit head

⚙️ • script:
loadstring(game:HttpGet("https://rawscripts.net/raw/Trident-Survival-V3-esp-and-hitbox-op-***-legit-head-and-good-esp-12304"))("t.me/LI_Script")

📋 • info - @LI_Script & @Quest_tag
Request script:
@LI_Script_rp_bot
👍2👎21
🎮 • GAME:
Universal

🕹️ • FUNC:
Удобный скрипт на настройку прицела

⚙️ • script:
settings = {
color = Color3.fromRGB(255, 255/2, 255), -- The color of the crosshair, takes any Color3.
thickness = 2, -- The thickness of the crosshair in pixel, takes any full number.
length = 8, -- The length of each side in pixel, takes any full number.
opacity = 1, -- The opacity of the crosshair, takes any number, 1 is fully visible and 0 is invisible.
x_offset = 0, -- The x offset of the crosshair, takes any positive or negative number.
y_offset = 0, -- The y offset of the crosshair, takes any positive or negative number.

recenter = true -- Automatically recenter the crosshair if your window was resized, this is an option in case it causes lag for anyone which I highly doubt, if it does for you, then please stop using your Microwave for Roblox.
}

local cam = workspace.CurrentCamera or workspace:FindFirstChildOfClass("Camera")

getgenv().crosshair_x = getgenv().crosshair_x or {}
getgenv().crosshair_y = getgenv().crosshair_y or {}

local function draw(a1, a2)
local obj = Drawing.new(a1)
for i, v in pairs(a2) do
obj[i] = v
end
return obj
end

if getgenv().crosshair_x ~= nil or getgenv().crosshair_x ~= {} then
if getgenv().crosshair_x["Line"] then
getgenv().crosshair_x["Line"]:Remove()
end

if getgenv().crosshair_x["Connection"] then
getgenv().crosshair_x["Connection"]:Disconnect()
end
getgenv().crosshair_x = {}
end

if getgenv().crosshair_y ~= nil or getgenv().crosshair_y ~= {} then
if getgenv().crosshair_y["Line"] then
getgenv().crosshair_y["Line"]:Remove()
end

if getgenv().crosshair_y["Connection"] then
getgenv().crosshair_y["Connection"]:Disconnect()
end

getgenv().crosshair_y = {}
end

getgenv().crosshair_x["Line"] = draw("Line", {
To = Vector2.new(((cam.ViewportSize.x / 2) - settings.x_offset) - settings.length, (cam.ViewportSize.y / 2) - settings.y_offset),
From = Vector2.new(((cam.ViewportSize.x / 2) - settings.x_offset) + settings.length, (cam.ViewportSize.y / 2) - settings.y_offset),
Thickness = settings.thickness,
Color = settings.color,
Transparency = settings.opacity,
Visible = true
})

getgenv().crosshair_y["Line"] = draw("Line", {
To = Vector2.new((cam.ViewportSize.x / 2) - settings.x_offset, ((cam.ViewportSize.y / 2) - settings.y_offset) - settings.length),
From = Vector2.new((cam.ViewportSize.x / 2) - settings.x_offset, ((cam.ViewportSize.y / 2) - settings.y_offset) + settings.length),
Thickness = settings.thickness,
Color = settings.color,
Transparency = settings.opacity,
Visible = true
})

if settings.recenter then
getgenv().crosshair_x["Connection"] = cam:GetPropertyChangedSignal("ViewportSize"):Connect(function()
getgenv().crosshair_x["Line"]["To"] = Vector2.new(((cam.ViewportSize.x / 2) - settings.x_offset) - settings.length, (cam.ViewportSize.y / 2) - settings.y_offset)
getgenv().crosshair_x["Line"]["From"] = Vector2.new(((cam.ViewportSize.x / 2) - settings.x_offset) + settings.length, (cam.ViewportSize.y / 2) - settings.y_offset)
end)

getgenv().crosshair_y["Connection"] = cam:GetPropertyChangedSignal("ViewportSize"):Connect(function()
getgenv().crosshair_y["Line"]["To"] = Vector2.new((cam.ViewportSize.x / 2) - settings.x_offset, ((cam.ViewportSize.y / 2) - settings.y_offset) - settings.length)
getgenv().crosshair_y["Line"]["From"] = Vector2.new((cam.ViewportSize.x / 2) - settings.x_offset, ((cam.ViewportSize.y / 2) - settings.y_offset) + settings.length)
end)
end

📋 • info - @LI_Script & @Quest_tag
Request script:
@LI_Script_rp_bot
🤯39👍151👎1👀1
This media is not supported in your browser
VIEW IN TELEGRAM
На что скриптэки? 👋
• спасибо за 4к подписчиков на нашем втором канале! https://t.me/ScriptRobox_official
• так же на 2 канале появился чат без правил!
Please open Telegram to view this post
VIEW IN TELEGRAM
👍14👀4👎2
Режим: Blox fruits
Название скрипта: RubuTV
Скрипт:

loadstring(game:HttpGet("https://raw.githubusercontent.com/Bubu2k/Rubutv/refs/heads/main/RubuHubV2.lua"))("t.me/KolerotScripts")

"Скрипт написан на вьетнамском языке и немного подвисает при загрузке."

Взято из
t.me/KolerotScripts.

Кто согласен за то что это нн скрипт лайк ставьте.
👍28👎16😭2
This media is not supported in your browser
VIEW IN TELEGRAM
Универсальный скрипт на noclip.

Минус — очень большое меню, и его нельзя убрать, только отодвинуть

Работает на:
R15:
R6:

Скрипт:

loadstring(game:HttpGet('https://raw.githubusercontent.com/Pedro0239485y7/Noclip-Hax-V1.0.0-GUI/refs/heads/main/NoclipHaxRoblox', true))("t.me/KolerotScripts")

Взято из
t.me/KolerotScripts.
👍4
Режим: Jail break
Функции:
-их очень много.

KEY:


Скрипт:

loadstring(game:HttpGet('https://api.luarmor.net/files/v3/loaders/730854e5b6499ee91deb1080e8e12ae3.lua'))("t.me/KolerotScripts")

Взято из
t.me/KolerotScripts.
👍2
Media is too big
VIEW IN TELEGRAM
Server Side Script [ Saitama Move set ]
• работает только на серверах где вы разработчик
• Запускать скрипт через консоль (тык на настройки, тык "developer console", тык на "log" и нужно заменить на "server" и пишите сам скрипт)
• заменить слово user на ваш ник
• скрипт полностью FE (ну думаю логично)

Скрипт:
require(14499140823)("user", "saitama2")
❤‍🔥5👍1
Перезалив.

Режим: Lumber Tycoon 2

Функции:
- Телепорт
- Изменение скорости и других параметров
- Дюпликация топоров
- Авто-покупка
- Авто-добыча дерева
- Авто-постройка
Скрипт:
loadstring(game:HttpGet('https://raw.githubusercontent.com/DevKron/Kron_Hub/refs/heads/main/version_1.0'))("t.me/KolerotScripts")

Взято из канала:
t.me/KolerotScripts.
👍81👎1😢1
Перезалив.

Универсальный скрипт на Infinite Yield FE v6.3.1

Функции:
- Туда можно вписать команду, например, ;fly. Обязательно чтобы стояла такая ";" в начале.

Скрипт:
loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))("t.me/KolerotScripts")

Взято из канала:
t.me/KolerotScripts.
👍7👎51🫡1
🎮Game: Car Dealership Tycoon 🎮

🟩No Key🟩

Script:
loadstring(game:HttpGet("https://raw.githubusercontent.com/CriShoux/OwlHub/master/OwlHub.txt"))()

💬Script/Hub name: OwlHub💬
👎10👍82
Scripts pack for beat the mew event Roblox

Scripts:
1. Eat the world
loadstring(game:HttpGet("https://raw.githubusercontent.com/gumanba/Scripts/main/TheHuntEattheWorld"))("t.me/LI_Script")


2. Blade league
loadstring(game:HttpGet("https://raw.githubusercontent.com/gumanba/Scripts/main/BladeLeague"))("t.me/LI_Script")


3. Basketball legends
loadstring(game:HttpGet("https://raw.githubusercontent.com/vnausea/absence-mini/refs/heads/main/absencemini.lua"))("t.me/LI_Script")


4. Infection Gunfight
loadstring(game:HttpGet("https://raw.githubusercontent.com/gumanba/Scripts/main/InfectionGunfight"))("t.me/LI_Script")


5. Bayside highschool
loadstring(game:HttpGet("https://raw.githubusercontent.com/gumanba/Scripts/main/Bayside"))("t.me/LI_Script")


6. Metro life
loadstring(game:HttpGet("https://raw.githubusercontent.com/gumanba/Scripts/main/TheHuntEattheWorld"))("t.me/LI_Script")


You will not be able to complete the event if you have not started it in the starting hub.

📋 • info - @LI_Script & @Quest_tag
Request script:
@LI_Script_rp_bot
👍7😭31👎1
🔮 | Script Roblox | 💜
Delta-663.659-01.apk
Текущая версия недоступна (работает у некоторых пользователей), потому что она устарела, скоро выйдет новая версия с надлежащими обходными путями для нового "античита".
👍18
• BanWave Defected
|
| Do not use exploits and scripts
| Пожалуйста не используйте скрипты и эксплойты в целом какое-то время


📋 • info - @LI_Script & @Quest_tag
Request script:
@LI_Script_rp_bot
👍3
This media is not supported in your browser
VIEW IN TELEGRAM
На что скрипты?
👎29👍15❤‍🔥31
Меня хотят снять с адм давайте сделаю вам хоть последний конкурс на прайм код на выбор

👍 - го
👇 - нет

[ Грустна ]
👍250👎50😢21🫡3
🔮 | Script Roblox | 💜
Меня хотят снять с адм
Он врёт я такого не говорил
👎42😢10❤‍🔥3😭2