of     2   
chevron_rightchevron_rightchevron_right

Techmmander
#228400062Sunday, December 03, 2017 9:35 PM GMT

game.Players.PlayerAdded:connect(function(Player) Player.Chatted:connect(function(Message) if(string.sub(1, 5) == ':kill')then local Victim = string.sub(7, string.len(Message)); if(game.Workspace:FindFirstChild(Victim))then game.Workspace:FindFirstChild(Victim):BreakJoints() print 'Killed Victim.' end; end; end); end); I want to kill the player 'Techmmander', but it doesn't work.. Anyone can help me?
Techmmander
#228400419Sunday, December 03, 2017 9:42 PM GMT

Bump.
ScriptBased
#228400509Sunday, December 03, 2017 9:44 PM GMT

Connect not connect Also, any errors ? Any output at all ?
LuluPls
#228400526Sunday, December 03, 2017 9:45 PM GMT

game.Players.PlayerAdded:connect(function(plr) plr.Chatted:connect(function(msg) if string.sub(msg,1,5)==":kill" then Victim=string.sub(msg,7) game.Players:FindFirstChild(Victim).Character.Humanoid.Health=0 end end end)
LuluPls
#228400570Sunday, December 03, 2017 9:46 PM GMT

game.Players.PlayerAdded:connect(function(plr) plr.Chatted:connect(function(msg) if string.sub(msg,1,5)==":kill" then Victim=string.sub(msg,7) game.Players:FindFirstChild(Victim).Character.Humanoid.Health=0 end end) end) Oops forgot a parenthese
ScriptBased
#228400700Sunday, December 03, 2017 9:49 PM GMT

Also Connect not connect
Techmmander
#228400725Sunday, December 03, 2017 9:49 PM GMT

Thanks it worked, Also :connect and :Connect are both possible.
LuluPls
#228400758Sunday, December 03, 2017 9:50 PM GMT

:connect() works just fine, I don't need you to lecture me on deprecation. There's absolutely no difference between the two.
ScriptBased
#228400884Sunday, December 03, 2017 9:53 PM GMT

connect is deprecated. Connect isn’t If you want to become a programmer you need to stop using deprecated functions etc. Roblox probably spends some time before they make so it doesn’t work anymore and will just error. In NodeJS and modules if stuff are deprecated and will not work anymore. So you better get used to not using deprecated functions.
128Gigabytes
#228401001Sunday, December 03, 2017 9:56 PM GMT

actually they probably will never make it not work because they probably just do this Connect = codeForConnectingEventsHere connect = Connect --[[for compatibility]]
LuluPls
#228401010Sunday, December 03, 2017 9:56 PM GMT

You're okay using the deprecated version for at least another half a decade. The only reason for the deprecation is to stay consistent with their naming convention.
ScriptBased
#228401112Sunday, December 03, 2017 9:58 PM GMT

Alright, I’ll start using KeyDown again, because it’s obviously no difference to use that instead of UserInputService.InputBegan
128Gigabytes
#228401147Sunday, December 03, 2017 9:59 PM GMT

There actually is a difference in the way they function though you dingbat.
ScriptBased
#228401189Sunday, December 03, 2017 10:00 PM GMT

Obviously not, better start using your 128 gigabytes to something useful
Techmmander
#228401326Sunday, December 03, 2017 10:03 PM GMT

Yes, :connect() is indeed deprecated, But still useable, so i am using it for my comfortness, Once it doesn't get usable anymore, I will change my code very easily with the replace tool, No worries. And yes, KeyDown functions other than InputBegan..
128Gigabytes
#228401345Sunday, December 03, 2017 10:03 PM GMT

I have no idea what you are revering to with 'obviously not' because there is an obvious differences between the 2 you said are interchangeable, for one keydown does not pass the gameProcessedEvent argument which for most use cases is needed to prevent you from accidentally doing things while typing. If the only difference between the 2 was that one was called 'UserInputService' and the other was 'KeyDown' and they did the exact same thing, yes I would say user whichever one you want.
ScriptBased
#228401400Sunday, December 03, 2017 10:05 PM GMT

Lmao you struggle to hit the shift button on your keyboard? Better safe than sorry.
128Gigabytes
#228401424Sunday, December 03, 2017 10:05 PM GMT

'Once it doesn't get usable anymore' Which will be, never. Remove() has been deprecated since at least like 2011
128Gigabytes
#228401477Sunday, December 03, 2017 10:06 PM GMT

'Lmao you struggle to hit the shift button on your keyboard? Better safe than sorry.' Again, no clue what you are referring to. Are you blindfolding yourself and typing replies to what you think we are saying or actually reading our replies?
ScriptBased
#228401492Sunday, December 03, 2017 10:07 PM GMT

Please don’t support others in saying using deprecated methods doesn’t matter.
128Gigabytes
#228401595Sunday, December 03, 2017 10:09 PM GMT

In this use case it matters very little, one reply saying to use it instead would have been fine. You posted 2 replies as if changing it would have an effect on the script. I do agree it shouldn't be used, I don't agree that it matters as much as you seem to think.
ScriptBased
#228401642Sunday, December 03, 2017 10:10 PM GMT

Of course it matters
128Gigabytes
#228401945Sunday, December 03, 2017 10:16 PM GMT

It doesn't though. I would be willing to bet that until the day roblox shuts down permanently, connect and Connect will both continue to work exactly the same as each other. One was only decreased because roblox decided to make everything PascalCase instead of the mix of PascalCase and camelCase they have had for a long time.
ScriptBased
#228402437Sunday, December 03, 2017 10:26 PM GMT

Of course it will last forever, but you shouldn’t use deprecated methods
LuluPls
#228403257Sunday, December 03, 2017 10:42 PM GMT

That's a stupid statement. If it works, and will always work exactly the same, it doesn't matter if it's deprecated.

    of     2   
chevron_rightchevron_rightchevron_right