blocco
|
  |
| Joined: 14 Aug 2008 |
| Total Posts: 29474 |
|
|
| 07 Oct 2013 06:41 PM |
local RequestKick = Instance.new("RemoteFunction");
function RequestKick.OnServerInvoke(player) player:Kick() end
RequestKick.Name = "RequestKick"; RequestKick.Parent = Game:GetService("ReplicatedStorage");
Now you go. |
|
|
| Report Abuse |
|
|
Absurdism
|
  |
| Joined: 18 Jul 2013 |
| Total Posts: 2568 |
|
|
| 07 Oct 2013 06:42 PM |
| How did this pass the security test!? |
|
|
| Report Abuse |
|
|
| |
|
blocco
|
  |
| Joined: 14 Aug 2008 |
| Total Posts: 29474 |
|
|
| 07 Oct 2013 06:53 PM |
Couple the first snippet (server-sided script) with the following (client-sided localscript):
local RequestKick = Game:GetService("ReplicatedStorage"):WaitForChild("RequestKick"); local player = game.Players.LocalPlayer; local character = player.Character or player.CharacterAdded:wait(); local humanoid = character:WaitForChild("Humanoid"); humanoid.Jumping:connect(function() RequestKick:InvokeServer() end)
no jumping for you |
|
|
| Report Abuse |
|
|
blocco
|
  |
| Joined: 14 Aug 2008 |
| Total Posts: 29474 |
|
|
| 07 Oct 2013 07:02 PM |
http://www.roblox.com/Dont-Jump-place?id=131937665
no jumping for you |
|
|
| Report Abuse |
|
|
| |
|
|
| 07 Oct 2013 08:00 PM |
| Hah Lol 'twas an easy challenge :o |
|
|
| Report Abuse |
|
|
| |
|
SN0X
|
  |
| Joined: 24 Oct 2011 |
| Total Posts: 7277 |
|
| |
|