i have tried
local http = game:GetService("HttpService") game.Players.PlayerAdded:Connect(function(Player) local Site = http:GetAsync("https://hastebin.com/raw/ucuzetulap") if string.match(Site, Player.Name) then Player:Kick("On Ban List") end end end)
but had no luck and i got no errors
I was just trying this
local http = game:GetService("HttpService") game.Players.PlayerAdded:Connect(function(Player) local BanList = http:GetAsync("https://hastebin.com/raw/ucuzetulap") if string.find(BanList, Player.Name) then Player:Kick("A Wild Banned Player Has Appeared!") end end)
with a different link obv but this seems to work for me!