Пікірлер
@konstantinosladas7723
@konstantinosladas7723 4 күн бұрын
Guys here is another one!!!!!!:local blacklisted = {["USERNAME"] = true} game.Players.PlayerAdded:Connect(function(plr) if blacklisted[plr.Name] then plr:Kick "REASON" end end)
@makeitxx
@makeitxx 28 күн бұрын
Where did u go… I just stumbled upon your channel and it’s very helpful and great tips
@Mohoragahrlp
@Mohoragahrlp Ай бұрын
Do i have to put it into a block i want to make this a gui
@ValxaL
@ValxaL 2 ай бұрын
I can't unban myself, i explain i tried the ban async so i've banned my self for 7k days and exclude alt accounts, when i used the UnbanAsync when i join, it tell me that it unban me from Roblox Studio but from Roblox i'm still ban, if i made something wrong pls tell me
@Averagetubbie
@Averagetubbie 2 ай бұрын
it says npc i dont see shit that has something with an npc i see a rig
@Trokumukum
@Trokumukum 2 ай бұрын
3:22
@CarmTzy
@CarmTzy 2 ай бұрын
lmao, i kinda wanna make the same vid but you deserve the views <3
@CodingCapybaraRoblox
@CodingCapybaraRoblox 2 ай бұрын
uh ok lol
@Roblox_studio_Dev
@Roblox_studio_Dev 2 ай бұрын
local Time = os.date("%A %B %d %Y %x") script.Parent.Text = Time ---i did this coding!
@vinciuspotterClub
@vinciuspotterClub 2 ай бұрын
Otherwise, great video
@vinciuspotterClub
@vinciuspotterClub 2 ай бұрын
Hint for next time, please zoom in on your code by shift scrolling, please.
@CodingCapybaraRoblox
@CodingCapybaraRoblox 2 ай бұрын
yea i did that in new videos
@mcovar2033
@mcovar2033 2 ай бұрын
this is just okeanskiy's code from 5 years ago
@Wolfractionwashere
@Wolfractionwashere 2 ай бұрын
Thanks you 😀
@avyukth3727
@avyukth3727 2 ай бұрын
As far as I know you're the only one who made a productive video on the ban API. Good job
@DogeManJenkins
@DogeManJenkins 2 ай бұрын
If they can detect alt accounts, wouldn’t roblox know if you are botting? If so, that means they can add tix back
@SBLN_games
@SBLN_games 2 ай бұрын
Question. When you ban someone with their alts, does it hardware ban them, IP Ban them, or does it just ban the accounts linked to your email?
@yamannminecraftzaman1947
@yamannminecraftzaman1947 3 ай бұрын
YEEEEEEESSS!!!!!FINALLYYYYY!!!!!!
@angelkingcat
@angelkingcat 3 ай бұрын
love the video lookie should make a tut on how to code in roblox! Edit: like the man basic's of coding in roblox!
@burgerbonkerqueenmsp9761
@burgerbonkerqueenmsp9761 3 ай бұрын
the script doesn't work
@EzoPlayerS
@EzoPlayerS 3 ай бұрын
I've loved your explanation. I mean you explain everything as if we were the beginner just makes that video precious. Keep up the good work. I really wanna see a making a game serie in this channel.
@eric44910RobloxPlay
@eric44910RobloxPlay 3 ай бұрын
vancouver
@Anobot
@Anobot 3 ай бұрын
Thanks for this useful tutorial! I heard that Roblox will have us access to ban histories in the Creator Hub.
@GreatRamilYT
@GreatRamilYT 3 ай бұрын
Finally they will fix most games hackers with 942354375834 alt accounts
@uliveulearnandregret
@uliveulearnandregret 3 ай бұрын
The Ban Brick!
@Yuilix
@Yuilix 3 ай бұрын
can you please make a tutorial video for first person view body? like there's a lot of tutorials sure but all of them the camera clipping inside the wall sadly. i would really appreciate it if you do a tutorial for that
@ggfoxysss
@ggfoxysss 2 ай бұрын
You have 2 ways of doing it 1. Using one of thoose tutorials and add a custom collision to the plr 2. Moving the player character a bit backwards locally when you are in first person (i think this one is efficient at all but idk)
@AlexLaSnypeure
@AlexLaSnypeure 3 ай бұрын
Is there a way to view every single account that has been banned without having to manually put the userId in the script?
@RealMalul
@RealMalul 3 ай бұрын
im gussing you can store the ids in a datastore, and then get get the user ids from the datastore and check if they are banned
@AlexLaSnypeure
@AlexLaSnypeure 3 ай бұрын
@@RealMalul Yeah that's what i imagined would be best, thanks!
@wrld_of_trey4730
@wrld_of_trey4730 3 ай бұрын
Can you please a police radio with voice chat with a keybind to enabled it.
@Errordimensions
@Errordimensions 3 ай бұрын
yeah i saw hd admin and there was an ban alt accounts
@typoskwatter
@typoskwatter 3 ай бұрын
It's great that you acknowledge your misunderstandings and update the community in such short time!
@CodingCapybaraRoblox
@CodingCapybaraRoblox 3 ай бұрын
Here is the script: local banhistoryPages = game.Players:GetBanHistoryAsync() -- PUT A USER ID IN HERE local historyTable = {} local monthNames = { ["01"] = "January", ["02"] = "February", ["03"] = "March", ["04"] = "April", ["05"] = "May", ["06"] = "June", ["07"] = "July", ["08"] = "August", ["09"] = "September", ["10"] = "October", ["11"] = "November", ["12"] = "December" } local function getTime(data) local year = string.sub(tostring(data.StartTime),1,4) local month = string.sub(tostring(data.StartTime),6,7) local day = string.sub(tostring(data.StartTime),9,10) local hour = string.sub(tostring(data.StartTime),12,13) local minute = string.sub(tostring(data.StartTime),15,16) local second = string.sub(tostring(data.StartTime),18,19) local msecond = string.sub(tostring(data.StartTime),21,23) if string.sub(day,1,1) == "0" then day = string.sub(day,2,2) end return string.format("%s %s, %s, %s:%s:%s.%s", monthNames[month], day, year, hour, minute, second, msecond) end while wait() do for rank, data in pairs(banhistoryPages:GetCurrentPage()) do local timeFormatted = getTime(data) print("Were they banned: "..tostring(data.Ban)) print("The time when it happened: "..timeFormatted) if data.Duration == -1 then print("How long was it: Permanent / Indefinite") elseif data.Duration > 0 then print("How long was it: "..tostring(data.Duration).." seconds") end print("The reason that was displayed: "..tostring(data.DisplayReason)) print("The reason why it happened: "..tostring(data.PrivateReason)) print("What is the PlaceId: "..tostring(data.PlaceId)) end if banhistoryPages.IsFinished then break end banhistoryPages:AdvanceToNextPageAsync() end
@ItsSpaceManPlays
@ItsSpaceManPlays 2 ай бұрын
if you want u can make a pastebin for free and set the language to lua it makes it like 10 times easier to copy
@Wh0s_Bun
@Wh0s_Bun 3 ай бұрын
FIRST 🗣️
@ProSureString
@ProSureString 3 ай бұрын
step 1: do it :D
@gsdtxz
@gsdtxz 3 ай бұрын
vpn easy solo
@FunyGuyLol
@FunyGuyLol 3 ай бұрын
Finally! Now I don't have to have ban info in my datastore now
@ItsmeTOY
@ItsmeTOY 3 ай бұрын
WHAAAAAT
@Monkeymario.
@Monkeymario. 3 ай бұрын
1:49 it says service not live so you cant use it yet
@nopfp416
@nopfp416 3 ай бұрын
You can use it but it's so new documentation on it wasn't up so when it tried to fetch the documentation it gave a "service not live" error
@amaz1699
@amaz1699 3 ай бұрын
if you’re a BarneyHunter12 fan, (roblox KZbinr that does trolling with alts) this can be a huge problem because if you get all of your alts banned permanently then that means you will never get to play the game again, unless you change your IP I think or move to a new house I’m pretty sure. But I’m also a roblox developer that cannot stand annoying exploiters so this is a huge W for me. So overall I have mixed feelings about this update. Also I love your channel! Very underrated!
@nopfp416
@nopfp416 3 ай бұрын
Instead of moving house you can either get a new router or if your ip is dynamic just wait for 2 weeksish for an unban or manually reset your ip
@amaz1699
@amaz1699 3 ай бұрын
@@nopfp416 that too
@carpet.
@carpet. 3 ай бұрын
damn only 209 Subs ????!! you deserve way more ngl
@YNGricky
@YNGricky 3 ай бұрын
imagine getting unfairly ban in your favorite game, and you will never be able to play it again
@filled9971
@filled9971 3 ай бұрын
Use a vpn
@veethabeeyt
@veethabeeyt 3 ай бұрын
NOOOOO
@jobertgutierrez5788
@jobertgutierrez5788 3 ай бұрын
I love it ❤😂
@provideowatcher
@provideowatcher 3 ай бұрын
this sounds like an amazingly useful feature, as lots of exploiters have a script for old banning methods to simply avoid the kick, whereas this kicks them before they have a chance to inject their exploits + ban alts too. a win for us devs
@carbonz
@carbonz 3 ай бұрын
that's not how that works skid
@Sakupenny
@Sakupenny 3 ай бұрын
best thing its IP ban
@provideowatcher
@provideowatcher 3 ай бұрын
@@carbonz that is quite literally how it works, im not a "skid", dont talk on topics you arent educated in
@Anikin3-
@Anikin3- 3 ай бұрын
you can't "inject" something into a game just by joining it
@AlmiraMiliss
@AlmiraMiliss 3 ай бұрын
@@Sakupennyeasy to bypass
@fudgecreations
@fudgecreations 3 ай бұрын
This tutorial was very helpful 👍
@NORMAL_ACCOUNT...
@NORMAL_ACCOUNT... 3 ай бұрын
i bet 50% of devs are going to abuse this function looking at you pet sim 99
@NORMAL_ACCOUNT...
@NORMAL_ACCOUNT... 3 ай бұрын
pov cafe game devs : OH YEAH FOR ANYONE THAT SAYS I WANT A DIARRHEA DRINK WE'RE GOING TO RUN THIS BAN FUNCTION ON THEM (when they can use it on exploder not just for doing stupid things or just being annoying like bruh people are definitely going to abuse this I mean its because of them they are the one who made this update feel like the end of trolling in a cafe game but other than that the update seems kind a nice not going to lie)
@dvyn3833
@dvyn3833 3 ай бұрын
finally a real ban system that's not about of silly kicking.
@dirhi
@dirhi 3 ай бұрын
this is me when the when are
@Alafandri
@Alafandri 3 ай бұрын
your really quiet. turn up volume when editing the video
@qxxrd
@qxxrd 3 ай бұрын
I'm kind of curious on how the alt account ban works. Does it track all of the accounts that you're logged into? Or does it recognize your MAC address?
@TypKris
@TypKris 3 ай бұрын
Probably bans the accounts that are attached to your accounts at the Switch Accounts feature that you can find at the settings button if you are on a pc not sure where it is for mobile
@frostbyte3978
@frostbyte3978 3 ай бұрын
​@TypKris I don't use the switch accounts thing, I just log out and log into the alt
@CodingCapybaraRoblox
@CodingCapybaraRoblox 3 ай бұрын
my guess is it uses your ip to see if its an alt
@TypKris
@TypKris 3 ай бұрын
@@CodingCapybaraRobloxyes youre right probably, but im pretty sure they also ban the accounts attached to the account you ban
@nopfp416
@nopfp416 3 ай бұрын
I tested it by making an alt after being banned and I was able to just rejoin so it's either not done or useless