local Rayfield = loadstring(game:HttpGet('https://[Log in to view URL]'))()
local Window = Rayfield:CreateWindow({
Name = "XybName GUI v1.0",
LoadingTitle = "XybName GUI v1.0",
LoadingSubtitle = "by XybName",
ConfigurationSaving = {
Enabled = true,
FolderName = nil, -- Create a custom folder for your hub/game
FileName = "XybNameHUB"
},
Discord = {E.g discord.gg/fD8MxYEf}
Enabled = false,
Invite = "Team_XybName", -- 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 = true, -- Set this to true to use our key system
KeySettings = {
Title = "XybName GUI v1.0 | Key",
Subtitle = "Key System",
Note = "Key Can't Expire",
FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
SaveKey = false, -- The user's key will be saved, but if you change the key, they will be unable to use your script
GrabKeyFromSite = true, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
Key = {"https://[Log in to view URL]"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
}
})
local MainTab = Window:CreateTab("🏠 Home", nil) -- Title, Image
local MainSection = MainTab:CreateSection("MImage
Rayfield:Notify({
Title = "Join The Discord Server !",
Content = "https://[Log in to view URL]",
Duration = 6.5,
Image = nil,
Actions = { -- Notification Buttons
Ignore = {
Name = "Okay!","No Thanks"
Callback = function()
print("The user tapped Okay!")
end
},
},
})
local Button = MainTab:CreateButton({
Name = "Infinite Yield",
Callback = function()
loadstring(game:HttpGet('https://[Log in to view URL]'))()
end,
})
local Slider = MainTab:CreateSlider({
Name = "Walkspeed Slider",
Range = {0, 300},
Increment = 1,
Suffix = "Walkspeed",
CurrentValue = 16,
Flag = "Slider1", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
Callback = function(Value)
game.Players.Local.Player.Character.Humanoid.Walkspeed = (Value)
end,
})
local KillTab = Window:CreateTab("Kill🔪", nil) -- Title, Image
local Section = KillTab:CreateSection("Kill🔪")
local Button = KillTab:CreateButton({
Name = "Kill Aura",
Callback = function()
--[[Instant kill
]]--
--[[ Some Settings --]]
local Aura_Range = 200 -- Edit here
local AmountOfDamage = 20 -- Edit here for insta destroy
--[[ Keybind Settings --]]
--[[
Q - Insta Destroy
E - Level Farm
V - Kill Aura
--]]
warn("Made by Hamii (Hamii#4518) / Tritium (on v3rm), thanks for kill aura helping Floof!")
local Player = game:GetService("Players").LocalPlayer
local Mouse = Player:GetMouse()
local Folder = workspace.Critters
local Damage = function(Part)
pcall(function()
local A = Part
local B = Part.Position
local C = {
owned = true,
origin = Player.Character.Head.Position,
position = Part.Position,
velocity = Player.Character.Head.CFrame.lookVector * Vector3.new(500, 100, 500),
acceleration = Vector3.new(0, -156.2, 0),
age = os.time(),
toolFrom = "Magnetite Crossbow",
object = game:GetService("ReplicatedStorage").Projectiles:findFirstChild("Bolt")
}
local D = (Player.Character.Head.Position - Part.Position).magnitude
game:GetService("ReplicatedStorage").Events.ProjectileImpact:FireServer(A, B, C, D)
end)
end
Mouse.KeyUp:connect(function(key)
if key == "q" then
for i = 1, AmountOfDamage do
if Mouse.Target and Mouse.Target.ClassName ~= "Terrain" then
Damage(Mouse.Target)
end
end
end
end)
Mouse.KeyUp:connect(function(key)
if key == "e" then
while wait() do
for i,v in pairs(workspace:GetChildren()) do
if string.find(v.Name:lower(), "bush") or string.find(v.Name:lower(), "tree") or string.find(v.Name:lower(), "ice") or string.find(v.Name:lower(), "rock") then
for i,v in pairs(v:GetChildren()) do
if v.ClassName == "Part" or v.ClassName == "Union" then
spawn(function()
for i = 1, 50 do
Damage(v)
wait()
end
end)
end
end
elseif v:findFirstChild("PrimaryPart") then
spawn(function()
for i = 1, 50 do
Damage(v.PrimaryPart)
wait()
end
end)
elseif game:GetService("Players"):GetPlayerFromCharacter(v) then
spawn(function()
for i = 1, 50 do
Damage(v.Head)
wait()
end
end)
end
end
end
end
end)
local orange = function(part, strength)
if part:IsDescendantOf(Player.Character) then return nil end
if part and part.Parent and part.Parent.Parent then
if part.Parent:findFirstChild("Head") then
for i = 1, 5 * strength do
Damage(part.Parent.Head)
end
elseif part.Parent.Parent:findFirstChild("Head") then
for i = 1, 5 * strength do
Damage(part.Parent.Parent.Head)
end
else
if part.Parent ~= workspace then
for i,v in pairs(part.Parent:GetChildren()) do
if string.find(v.ClassName:lower(), "part") or v.ClassName == "Union" then
for i = 1, 2.5 * strength do
Damage(v)
end
end
end
end
end
for i = 1, 2.5 * strength do
Damage(part)
end
end
end
local myPos = function()
return Player.Character.HumanoidRootPart.Position
end
Mouse.KeyDown:connect(function(key)
if key == "v" then
--warn("Pressed v, Kill Aura made by Floof and bypassed by Hamii!")
for i, v in pairs(workspace.Critters:GetChildren()) do
if v:findFirstChild("HumanoidRootPart") then
local Pos = v.HumanoidRootPart.Position
local Distance = (Pos - myPos()).magnitude
if Distance <= Aura_Range then
orange(v.HumanoidRootPart, 8)
end
elseif v:findFirstChild("Torso") then
local Pos = v.Torso.Position
local Distance = (Pos - myPos()).magnitude
if Distance <= Aura_Range then
orange(v.Torso, 8)
end
else
local Part = nil
for i,v in pairs(v:GetChildren()) do
if string.find(v.ClassName:lower(), "part") or v.ClassName == "Union" then
Part = v
end
end
if string.find(v.ClassName:lower(), "part") or v.ClassName == "Union" then
Part = v
end
if Part then
orange(Part, 14)
end
end
end
wait()
for i,v in pairs(game:GetService("Players"):GetPlayers()) do
if v ~= Player and v.Character then
local HRP = v.Character:findFirstChild("HumanoidRootPart")
if HRP then
local Distance = (HRP.Position - myPos()).magnitude
if Distance <= Aura_Range then
orange(HRP, 15)
end
end
end
end
wait()
for i,v in pairs(workspace:GetChildren()) do
if string.find(v.Name:lower(), "bush") or string.find(v.Name:lower(), "ice") or string.find(v.Name:lower(), "tree") or string.find(v.Name:lower(), "node") or string.find(v.Name:lower(), "wall") or string.find(v.Name:lower(), "stone") or string.find(v.Name:lower(), "mound") or string.find(v.Name:lower(), "rope") or v:findFirstChild("PrimaryPart") or v:findFirstChild("Health") or v:findFirstChild("Torso") or v:findFirstChild("HitShell") then
local Part = nil
for i,v in pairs(v:GetChildren()) do
if string.find(v.ClassName:lower(), "part") or v.ClassName == "Union" then
Part = v
end
end
if string.find(v.ClassName:lower(), "part") or v.ClassName == "Union" then
Part = v
end
if Part then
local Distance = (Part.Position - myPos()).magnitude
if Distance <= Aura_Range then
orange(Part, 7)
end
end
end
end
for i,v in pairs(workspace.Deployables:GetChildren()) do
if string.find(v.Name:lower(), "wall") or string.find(v.Name:lower(), "gate") or string.find(v.Name:lower(), "raft") or string.find(v.Name:lower(), "boat") or string.find(v.Name:lower(), "hut") or string.find(v.Name:lower(), "Health") or v:findFirstChild("PrimaryPart") or v:findFirstChild("Torso") then
local Part = nil
for i,v in pairs(v:GetChildren()) do
if string.find(v.ClassName:lower(), "part") or v.ClassName == "Union" then
Part = v
end
end
if string.find(v.ClassName:lower(), "part") or v.ClassName == "Union" then
Part = v
end
if Part then
local Distance = (Part.Position - myPos()).magnitude
if Distance <= Aura_Range then
orange(Part, 7)
end
end
end
end
end
end)
end,
})
local Button = KillTab:CreateButton({
Name = "Fling GUI",
Callback = function()
loadstring(game:HttpGet('https://[Log in to view URL]', true))()
end,
})
local MiscTab = Window:CreateTab("Misc", nil) -- Title, Image
local Section = MiscTab:CreateSection("Misc")
local Button = MiscTab:CreateButton({
Name = "Discord Server",
Callback = function()
Rayfield:Notify({
Title = "Discord Server",
Content = "https://[Log in to view URL]",
Duration = 6.5,
Image = 4483362458,
Actions = { -- Notification Buttons
Ignore = {
Name = "Okay!",
Callback = function()
print("The user tapped Okay!")
end
},
},
})
end,
})
local Button = MiscTab:CreateButton({
Name = "YouTube Channel",
Callback = function()
Rayfield:Notify({
Title = "YouTube Channel",
Content = "https://[Log in to view URL]",
Duration = 6.5,
Image = 4483362458,
Actions = { -- Notification Buttons
Ignore = {
Name = "Okay!",
Callback = function()
print("The user tapped Okay!")
end
},
},
})
local Button = MiscTab:CreateButton({
Name = "Twitter",
Callback = function()
Rayfield:Notify({
Title = "Twitter",
Content = "https://[Log in to view URL]",
Duration = 6.5,
Image = 4483362458,
Actions = { -- Notification Buttons
Ignore = {
Name = "Okay!",
Callback = function()
print("The user tapped Okay!")
end
},
},
})
end,
})
end
To embed this project on your website, copy the following code and paste it into your website's HTML: