Thank you for using our website
Your script:
loadstring(game:HttpGet("https://raw.githubusercontent.com/FlamesIsCool/FlamezHub/refs/heads/main/discordjoin.lua"))()
local Players = game:GetService("Players")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local LocalPlayer = Players.LocalPlayer
local PlayerHitEvent = ReplicatedStorage:WaitForChild("PlayerHitEvent")
while task.wait(0.1) do
for _, player in ipairs(Players:GetPlayers()) do
if player ~= LocalPlayer then
local args = {
[1] = player,
[2] = 16000
}
PlayerHitEvent:FireServer(unpack(args))
end
end
end