local Rayfield = loadstring(game:HttpGet('https://[Log in to view URL]'))()

local Window = Rayfield:CreateWindow({
   Name = "FeloHub(cool guy)",
   LoadingTitle = "Felo is cool",
   LoadingSubtitle = "by Felo",
   ConfigurationSaving = {
      Enabled = true,
      FolderName = nil, -- Create a custom folder for your hub/game
      FileName = "Big Hub"
   },
   Discord = {
      Enabled = false,
      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",
      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 will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
   }
})

local Tab = Window:CreateTab("Main", nil) -- Title, Image

local Section = Tab:CreateSection("MainGame")

local Button = Tab:CreateButton({
   Name = "Hit Box(not working)",
   Callback = function()
    -- Prepare to witness the unimaginable

local Players = game:GetService("Players")
local camera = workspace.CurrentCamera

-- Loop through every player's character
for _, player in ipairs(Players:GetPlayers()) do
	local character = player.Character
	if character then
		-- Create an extraordinary part to represent the player visually
		local part = Instance.new("Part")
		part.Name = "AllSeeingEye"
		part.Size = Vector3.new(4, 4, 4)
		part.BrickColor = BrickColor.new("Bright red")
		part.Transparency = 0.5
		part.CanCollide = false
		part.Anchored = true
		part.CFrame = character.HumanoidRootPart.CFrame
		part.Parent = workspace

		-- Attach a special SurfaceGui containing the player's name
		local surfaceGui = Instance.new("SurfaceGui")
		surfaceGui.Face = Enum.NormalId.Back
		surfaceGui.Parent = part

		local textLabel = Instance.new("TextLabel")
		textLabel.Text = player.Name
		textLabel.BackgroundTransparency = 1
		textLabel.Size = UDim2.new(1, 0, 1, 0)
		textLabel.FontSize = Enum.FontSize.Size18
		textLabel.TextColor3 = Color3.new(1, 0, 0)
		textLabel.Parent = surfaceGui
	end
end

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: