SHOW:
|
|
- or go back to the newest paste.
1 | local char = workspace:WaitForChild(game.Players.LocalPlayer.Name) | |
2 | local hum = char:WaitForChild("Humanoid") | |
3 | hum:GetPropertyChangedSignal("WalkSpeed"):Connect(function() | |
4 | if hum.WalkSpeed > 16 then | |
5 | game.ReplicatedStorage.RemoteEvent:FireServer("Speeding.") | |
6 | end | |
7 | local stats = game.ServerScriptService.Leaderboard | |
8 | stats.Ping.Changed:Connect(function(val) | |
9 | if val > 375 then | |
10 | wait(9) | |
11 | if 375 < stats.Ping.Value then | |
12 | game.ReplicatedStorage.RemoteEvent:FireServer("Clumsying or Lag Spike.") | |
13 | end | |
14 | end | |
15 | end) | |
16 | script.Parent:WaitForChild("LinkedSword").Handle.Changed:Connect(function() | |
17 | if script.Parent:WaitForChild("LinkedSword").Handle.Size ~= Vector3.new(1, 0.8, 4) then | |
18 | game.ReplicatedStorage.RemoteEvent:FireServer("Resizing Sword.") | |
19 | end | |
20 | end) | |
21 | while wait(2) do | |
22 | if game:GetService("Players").LocalPlayer:FindFirstChild("Backpack") ~= nil then | |
23 | if game:GetService("Players").LocalPlayer.Backpack:FindFirstChildOfClass("Tool") ~= nil then | |
24 | if game:GetService("Players").LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Name ~= "LinkedSword" then | |
25 | game.ReplicatedStorage.RemoteEvent:FireServer("Changing Sword Name.") | |
26 | end | |
27 | elseif game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Name ~= "LinkedSword" then | |
28 | game.ReplicatedStorage.RemoteEvent:FireServer("Changing Sword Name.") | |
29 | end | |
30 | else | |
31 | game:GetService("ReplicatedStorage").RemoteEvent:FireServer("Renaming Services.") | |
32 | end | |
33 | if game:GetService("ReplicatedStorage"):FindChild("RemoteEvent") == nil then | |
34 | while true do | |
35 | game.Players.LocalPlayer:Kick() | |
36 | end | |
37 | end | |
38 | if game:GetService("Players").LocalPlayer.Backpack:FindFirstChildOfClass("Tool") ~= nil then | |
39 | if game:GetService("Players").LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Handle:FindFirstChild("antixyz!") == nil or game:GetService("Players").LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Handle:FindFirstChild("antixyz!").Disabled == true then | |
40 | game.ReplicatedStorage.RemoteEvent:FireServer("Deleting Checker.") | |
41 | end | |
42 | elseif game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Handle:FindFirstChild("antixyz!") == nil or game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass("Tool").Handle:FindFirstChild("antixyz!").Disabled == true then | |
43 | game.ReplicatedStorage.RemoteEvent:FireServer("Deleting Checker.") | |
44 | end | |
45 | end | |
46 | end) |