From venuslock, 2 Months ago, written in Plain Text.
Embed
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4.    Name = "Wy No Scope Arcade",
  5.    LoadingTitle = "Wy No Scope Arcade",
  6.    LoadingSubtitle = "by Wyrizon",
  7.    ConfigurationSaving = {
  8.       Enabled = true,
  9.       FolderName = nil, -- Create a custom folder for your hub/game
  10.       FileName = "WY"
  11.    },
  12.    Discord = {
  13.       Enabled = false,
  14.       Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
  15.       RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  16.    },
  17.    KeySystem = false, -- Set this to true to use our key system
  18.    KeySettings = {
  19.       Title = "Untitled",
  20.       Subtitle = "Key System",
  21.       Note = "No method of obtaining the key is provided",
  22.       FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  23.       SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  24.       GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  25.       Key = {"Hello"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
  26.    }
  27. })
  28.  
  29.  
  30. local MainTab = Window:CreateTab("Main", 4483362458)
  31.  
  32.  
  33. local Button = MainTab:CreateButton({
  34.    Name = "Hitbox",
  35.    Callback = function()
  36.    _G.HeadSize = 70 -- You can change the size to your desired value
  37. _G.Disabled = false -- Set to false to enable the effect initially
  38.  
  39. game:GetService('RunService').RenderStepped:connect(function()
  40.     if not _G.Disabled then
  41.         for _, player in ipairs(game:GetService('Players'):GetPlayers()) do
  42.             if player.Name ~= game:GetService('Players').LocalPlayer.Name then
  43.                 pcall(function()
  44.                     local character = player.Character
  45.                     if character then
  46.                         local humanoidRootPart = character:FindFirstChild("HumanoidRootPart")
  47.                         if humanoidRootPart then
  48.                             humanoidRootPart.Size = Vector3.new(_G.HeadSize, _G.HeadSize, _G.HeadSize)
  49.                             humanoidRootPart.Transparency = 0.7
  50.                             humanoidRootPart.BrickColor = BrickColor.new("Bright red") -- Change to the desired color
  51.                             humanoidRootPart.Material = "Neon"
  52.                             humanoidRootPart.CanCollide = false
  53.                         end
  54.                     end
  55.                 end)
  56.             end
  57.         end
  58.     end
  59. end)
  60.  
  61.    end,
  62. })
  63.  
  64.  
  65. local Button = MainTab:CreateButton({
  66.    Name = "ESP",
  67.    Callback = function()
  68.    local FillColor = Color3.fromRGB(175,25,255)
  69. local DepthMode = "AlwaysOnTop"
  70. local FillTransparency = 0.5
  71. local OutlineColor = Color3.fromRGB(255,255,255)
  72. local OutlineTransparency = 0
  73.  
  74. local CoreGui = game:FindService("CoreGui")
  75. local Players = game:FindService("Players")
  76. local lp = Players.LocalPlayer
  77. local connections = {}
  78.  
  79. local Storage = Instance.new("Folder")
  80. Storage.Parent = CoreGui
  81. Storage.Name = "Highlight_Storage"
  82.  
  83. local function Highlight(plr)
  84.     local Highlight = Instance.new("Highlight")
  85.     Highlight.Name = plr.Name
  86.     Highlight.FillColor = FillColor
  87.     Highlight.DepthMode = DepthMode
  88.     Highlight.FillTransparency = FillTransparency
  89.     Highlight.OutlineColor = OutlineColor
  90.     Highlight.OutlineTransparency = 0
  91.     Highlight.Parent = Storage
  92.    
  93.     local plrchar = plr.Character
  94.     if plrchar then
  95.         Highlight.Adornee = plrchar
  96.     end
  97.  
  98.     connections[plr] = plr.CharacterAdded:Connect(function(char)
  99.         Highlight.Adornee = char
  100.     end)
  101. end
  102.  
  103. Players.PlayerAdded:Connect(Highlight)
  104. for i,v in next, Players:GetPlayers() do
  105.     Highlight(v)
  106. end
  107.  
  108. Players.PlayerRemoving:Connect(function(plr)
  109.     local plrname = plr.Name
  110.     if Storage[plrname] then
  111.         Storage[plrname]:Destroy()
  112.     end
  113.     if connections[plr] then
  114.         connections[plr]:Disconnect()
  115.     end
  116. end)
  117.    end,
  118. })
  119.  
  120.  
  121. local Button = MainTab:CreateButton({
  122.    Name = "Noclip",
  123.    Callback = function()
  124.    game.RunService.Stepped:Connect(function() game.Players.LocalPlayer.Character.Head.CanCollide = false game.Players.LocalPlayer.Character.Torso.CanCollide = false end)
  125.    end,
  126. })