of     1   

Kalmoneus
#21534001Tuesday, February 23, 2010 3:00 AM GMT

It would be very helpful if you could block a sertin player by name so they can't join your game, see your profile, game info, game pic, etc. I've got very mad over this one guy who copied one of my game exactly how it was built and never gave me credit. For that he got over 3 times more plays than me.
kension19
#21534072Tuesday, February 23, 2010 3:01 AM GMT

you can do this with scripts. however it would be helpful if they had a feature to block all people from a certain IP address from going to your place :D
Kalmoneus
#21534248Tuesday, February 23, 2010 3:05 AM GMT

Yes, thats what i was talking about.
GigsD4X
#21534355Tuesday, February 23, 2010 3:07 AM GMT

If you have no idea how to gain access to the IP Addresses, use this reference. game.NetworkServer Any entering player's IP will be created here, named after the IP.
kension19
#21534413Tuesday, February 23, 2010 3:08 AM GMT

:P how are you supposed to find the IP address yourself? its not like you can just rip it off someone whenever you feel like it.
GigsD4X
#21534450Tuesday, February 23, 2010 3:09 AM GMT

Example, blockedIP = {"98.123.45", "98.678.90"} function ChildAdded(Child) for a = 1, #blockedIP do if string.sub(Child.Name, 1, string.len(blockedIP[a])) == blockedIP[a] then Child:Remove() end end end game.NetworkServer.ChildAdded:connect(ChildAdded)
GigsD4X
#21534540Tuesday, February 23, 2010 3:12 AM GMT

Really, you can rip the IP yourself. recentIP = nil function ChildAddedA(Child) b = Instance.new("ObjectValue") b.Name = "IPAddress" b.Value = recentIP b.Parent = Child end function ChildAddedB(Child) recentIP = Child end game.Players.ChildAdded:connect(ChildAddedA) game.NetworkServer.ChildAdded:connect(ChildAddedB)
GigsD4X
#21534566Tuesday, February 23, 2010 3:13 AM GMT

Of course, you don't need 2 triggers on NetworkServer's ChildAdded, you can join them.
kension19
#21534583Tuesday, February 23, 2010 3:13 AM GMT

:P HOW DO U FIND THE IP OF THE PERSON YOU WANA BAN?! function onD'oh(hit) subjectImTrying2GetAcross = script.Parent if hit.Parent.Name == "GigsD4X" then print("HURRAY HE GOT IT! :D") else print("Aww...I missed...") end end script.Parent.Touched:connect(onD'oh)
GigsD4X
#21534727Tuesday, February 23, 2010 3:17 AM GMT

Or, you can refer to the direct IP access tag that was created, on my 2nd post. ChildAddedA. So it would be, adding on the first post: function Touched(Object) player = game.Players:GetPlayerFromCharacter(Object.Parent) if player ~= nil then table.insert(blockedIP, player.IPAddress.Value.Name) end end game.Workspace.ThePart.Touched:connect(Touched)
kension19
#21534915Tuesday, February 23, 2010 3:21 AM GMT

*facenuke* lets just give out all the scripts to the public why don't we? >:O function t(hit) x = hit.Parent:findFirstChild("Humanoid") if x ~= nil then x.Health = 0 else wait() end end --COPY ME I'M LAVA SCRIPTY! :D script.Parent.Touched:connect(t)
GigsD4X
#21534971Tuesday, February 23, 2010 3:22 AM GMT

Oops, I didn't notice I was releasing super-duper-mega-secret coding from my head. Sorry! XD ... Now we just have to hope people don't start using this on Script Builders. Blame my intelligence.
kension19
#21535042Tuesday, February 23, 2010 3:24 AM GMT

who thought of thinking anyways? >:(
GigsD4X
#21535784Tuesday, February 23, 2010 3:45 AM GMT

How can you think of thinking?
GigsD4X
#21536013Tuesday, February 23, 2010 3:51 AM GMT

What do you want to block players for anyway? If you want them to stop sending you messages, I'm working on a program for that. It's going to be pwnsome, I call it RoMail XD
kension19
#21536077Tuesday, February 23, 2010 3:52 AM GMT

X) srsly, lets just merge Twitter and roblox. we'll call it Troblitter
GigsD4X
#21536096Tuesday, February 23, 2010 3:53 AM GMT

Twiblox.
kension19
#21536144Tuesday, February 23, 2010 3:54 AM GMT

OMG! Twitterblox!!!!!!!!!!
GigsD4X
#21538211Tuesday, February 23, 2010 5:19 AM GMT

I like Twiblox better <_< Twitter can't own half of the name.
Sharkmin
#21538273Tuesday, February 23, 2010 5:23 AM GMT

noobs will use block everyone
yoshislayer
#21538320Tuesday, February 23, 2010 5:25 AM GMT

Rwitter. :3
GigsD4X
#21558461Tuesday, February 23, 2010 10:30 PM GMT

@Yoshislayer; Or Roblitter.
Kalmoneus
#21558685Tuesday, February 23, 2010 10:33 PM GMT

Why are we talking about tiwter all of a sudden?
GigsD4X
#21559787Tuesday, February 23, 2010 10:48 PM GMT

To bump the thread, secretly.

    of     1