콘텐츠로 건너뛰기
작동 중

Coolguy hub V1 (Only a couple games at the moment, more coming soon!) (OPEN SOURCE)

DEDeerHunter545 조회수Slime RNG2026년 7월 21일
공유
Coolguy hub V1 (Only a couple games at the moment, more coming soon!) (OPEN SOURCE)

스크립트 코드

Lua
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
Rayfield:LoadConfiguration()

local Window = Rayfield:CreateWindow({
   Name = "Coolguy Hub",
   Icon = 0, -- Icon in Topbar. Can use Lucide Icons (string) or Roblox Image (number). 0 to use no icon (default).
   LoadingTitle = "small script hub",
   LoadingSubtitle = "",
   ShowText = "Rayfield", -- for mobile users to unhide Rayfield, change if you'd like
   Theme = "DarkBlue", -- Check https://docs.sirius.menu/rayfield/configuration/themes

   ToggleUIKeybind = "K", -- The keybind to toggle the UI visibility (string like "K" or Enum.KeyCode)

   DisableRayfieldPrompts = false,
   DisableBuildWarnings = false, -- Prevents Rayfield from emitting warnings when the script has a version mismatch with the interface.

   -- ScriptID = "sid_xxxxxxxxxxxx", -- Your Script ID from developer.sirius.menu — enables analytics, managed keys, and script hosting

   ConfigurationSaving = {
      Enabled = true,
      FolderName = nil, -- Create a custom folder for your hub/game
      FileName = "Test Hub"
   },

   Discord = {
      Enabled = false, -- Prompt the user to join your Discord server if their executor supports it
      Invite = "noinvitelink", -- The Discord invite code, do not include Discord.gg/. E.g. Discord.gg/ABCD would be ABCD
      RememberJoins = true -- Set this to false to make them join the Discord every time they load it up
   },

   KeySystem = false, -- Set this to true to use our key system
   KeySettings = {
      Title = "Untitled",
      Subtitle = "Key System",
      Note = "No method of obtaining the key is provided", -- Use this to tell the user how to get a key
      FileName = "Key", -- It is recommended to use something unique, as other scripts using Rayfield may overwrite your key file
      SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
      GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
      Key = {"Hello"} -- List of keys that the system will accept, can be RAW file links (pastebin, github, etc.) or simple strings ("hello", "key22")
   }
})

local Tab = Window:CreateTab("Universal", 0) -- Title, Image
 local Button = Tab:CreateButton({
   Name = "Infinite Yield",
   Callback = function()
   loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
   end,
})

 local Button = Tab:CreateButton({
   Name = "VScode UI",
   Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/InfernusScripts/VSCode/refs/heads/main/VSCode.lua"))()
   end,
 })

  local Button = Tab:CreateButton({
   Name = "Emotes script",
   Callback = function()
local src = ""
local CoreGui = game:GetService("StarterGui")

pcall(function() 
    src = game:HttpGet("https://yarhm.com/scr?channel=afemmax", false)
end)
if src == "" then
  CoreGui:SetCore("SendNotification", {
  	Title = "YARHM Outage";
  	Text = "YARHM Online is currently unavailable! Sorry for the inconvenience. Using AFEM Max Offline.";
	  Duration = 5;
  })
  src = game:HttpGet("https://raw.githubusercontent.com/Joystickplays/AFEM/refs/heads/main/max/afemmax.lua", false)
end


loadstring(src)()


   end,
 })

local Button = Tab:CreateButton({
   Name = "YARHM",
   Callback = function()
local src = ""
local CoreGui = game:GetService("StarterGui")

pcall(function() 
    src = game:HttpGet("https://yarhm.com", false)
end)
if src == "" then
  CoreGui:SetCore("SendNotification", {
  	Title = "YARHM Outage";
  	Text = "YARHM Online is currently unavailable! Sorry for the inconvenience. Using YARHM Offline.";
	  Duration = 5;
  })
  src = game:HttpGet("https://raw.githubusercontent.com/Joystickplays/psychic-octo-invention/main/source/yarhm/1.21/yarhm.lua", false)
end


loadstring(src)()
   end,
 })

 local Button = Tab:CreateButton({
   Name = "Brainrot Police",
   Callback = function()
    loadstring(game:HttpGet("https://raw.githubusercontent.com/IcantAffordSynapse/BrainrotPolice/refs/heads/main/src/init.lua"))()
   end,
})

local Tab = Window:CreateTab("Allowed Games", 0) -- Title, Image
local Paragraph = Tab:CreateParagraph({Title = "Allowed games", Content = "Slime RNG, Kick a Lucky Block, 99 Nights in the Forest, Blox Fruits, TSB, MM2, Build a Boat"})

if game.PlaceId == 92416421522960 then
    local Tab = Window:CreateTab("Slime RNG", 0) -- Title, Image
    local Button = Tab:CreateButton({
   Name = "Strelizia",
   Callback = function()
   loadstring(game:HttpGet("https://raw.githubusercontent.com/0vma/strelizia/refs/heads/main/loader.luau", true))()
   end,
})
end

if game.PlaceId == 89469502395769 then
    local Tab = Window:CreateTab("Kick a Lucky Block", 0) -- Title, Image
    local Button = Tab:CreateButton({
   Name = "Strelizia",
   Callback = function()
   loadstring(game:HttpGet("https://raw.githubusercontent.com/0vma/strelizia/refs/heads/main/loader.luau", true))()
   end,
})
end

if game.PlaceId == 126509999114328 then
    local Tab = Window:CreateTab("99 Nights in the Forest", 0) -- Title, Image
    local Button = Tab:CreateButton({
   Name = "Voidware (No Key)",
   Callback = function()
   loadstring(game:HttpGet("https://raw.githubusercontent.com/VapeVoidware/VW-Add/main/nightsintheforest.lua", true))()
   end,
})
end

if game.PlaceId == 2753915549 then
    local Tab = Window:CreateTab("Blox Fruits", 0) -- Title, Image
    local Button = Tab:CreateButton({
   Name = "Speed Hub X (Key)",
   Callback = function()
   loadstring(game:HttpGet("https://raw.githubusercontent.com/AhmadV99/Speed-Hub-X/main/Speed%20Hub%20X.lua", true))()
   end,
})
end

if game.PlaceId == 10449761463 then
    local Tab = Window:CreateTab("TSB", 0) -- Title, Image
    local Button = Tab:CreateButton({
   Name = "Speed Hub X (No Key)",
   Callback = function()
   loadstring(game:HttpGet("https://raw.githubusercontent.com/AhmadV99/Speed-Hub-X/main/Speed%20Hub%20X.lua", true))()
   end,
})
end

if game.PlaceId == 142823291 then
    local Tab = Window:CreateTab("MM2", 0) -- Title, Image
    local Button = Tab:CreateButton({
   Name = "YARHM (No Key)",
   Callback = function()
local src = ""
local CoreGui = game:GetService("StarterGui")

pcall(function() 
    src = game:HttpGet("https://yarhm.com", false)
end)
if src == "" then
  CoreGui:SetCore("SendNotification", {
  	Title = "YARHM Outage";
  	Text = "YARHM Online is currently unavailable! Sorry for the inconvenience. Using YARHM Offline.";
	  Duration = 5;
  })
  src = game:HttpGet("https://raw.githubusercontent.com/Joystickplays/psychic-octo-invention/main/source/yarhm/1.21/yarhm.lua", false)
end


loadstring(src)()
   end,
})
end

if game.PlaceId == 537413528 then
    local Tab = Window:CreateTab("Build a Boat", 0) -- Title, Image
    local Button = Tab:CreateButton({
   Name = "Luau.pro",
   Callback = function()
   loadstring(game:HttpGet('https://raw.githubusercontent.com/TheRealAsu/BABFT/refs/heads/main/Loader.lua'))()
   end,
})
end

설명

Chat i barely worked on this and btw its free + keyless so PEAK and yeah im making this script hub because why not anyway yeah have a good day.

댓글 (0)

대화에 참여하려면 로그인하세요

  • 첫 댓글을 작성하세요.

자주 묻는 질문

Coolguy hub V1 (Only a couple games at the moment, more coming soon!) (OPEN SOURCE) 스크립트는 어떻게 사용하나요?
위의 스크립트 코드를 복사하고 Roblox에서 Slime RNG에 접속한 뒤, 익스큐터에 붙여넣고 실행하세요. 스크립트가 실행되면 기능이 바로 활성화됩니다.
Coolguy hub V1 (Only a couple games at the moment, more coming soon!) (OPEN SOURCE)은(는) 아직 작동하나요?
네 — Coolguy hub V1 (Only a couple games at the moment, more coming soon!) (OPEN SOURCE)은(는) 현재 작동 중으로 표시되어 있습니다(마지막 업데이트: 2026년 8월 23일). Roblox 업데이트 후 작동하지 않으면 새 버전을 기다려 주세요.
Coolguy hub V1 (Only a couple games at the moment, more coming soon!) (OPEN SOURCE)에 호환되는 엑시큐터는?
이 스크립트는 대부분의 인기 Roblox 엑시큐터에서 작동합니다. 기기에 맞는 신뢰할 수 있는 무료 또는 유료 엑시큐터를 찾으려면 엑시큐터 페이지를 확인하세요.