View difference between Paste ID: f43wxqFv and bttBs0JK
SHOW: | | - or go back to the newest paste.
1-
credits to WaverlyCole for making the fe script
1+
--//====================================================\\--
2
--||          SIMPLE ANTISKID BY SHACKLUSTER
3-
this is how to do it: 
3+
--\\====================================================//--
4
5-
1: go to www.pastebin.com and make a new paste then copy and paste the script under the desc
5+
script.Parent = game.ServerScriptService
6
local PLAYERSERVICE = game:GetService("Players")
7-
2: Then Paste the non fe script where it says [[Paste ur raw script link here]] (dont remove the [ and ] )
7+
local SPACE = workspace
8
IT = Instance.new
9-
3: Go all the way down and click Create. Then click raw then copy the raw fe link and paste it in Void Sb. Remember to use h/ not hl/.
9+
CF = CFrame.new
10-
like this, h/(link here) 
10+
VT = Vector3.new
11
RAD = math.rad
12-
local ScriptLink = [[Paste ur raw script link here]]
12+
ANGLES = CFrame.Angles
13
MRANDOM = math.random
14-
--//Do not touch anything below this line, you may break it.
14+
script.Name = "|| SHACKLUSTER - ANTISKID ||"
15-
local FeSource = nil;pcall(function()FeSource = game:GetService("HttpService"):GetAsync("https://raw.githubusercontent.com/WaverlyCole/FE-Compatibility-VoidSb-/master/translate.lua")end);
15+
16-
local ScriptSource = nil;pcall(function()ScriptSource = game:GetService("HttpService"):GetAsync(ScriptLink)end);
16+
--//=================================\\
17-
if not FeSource then error("Failed to grab update! Try again later.",0)end;if not ScriptSource then error("Failed to get link!",0)end;
17+
--|| 	       FUNCTIONS
18-
local FeConversion = loadstring(FeSource);local FeSucc,FeErr = pcall(FeConversion);if not FeSucc then warn(FeErr)error("Failed to initiate! Try again later.",0) end;
18+
--\\=================================//
19-
local Script = loadstring(ScriptSource);local Succ,Err = pcall(Script);if not Succ then warn(Err)error("Error loading script.",0) end;
19+
20
local S = IT("Sound")
21
function CreateSound(ID, PARENT, VOLUME, PITCH)
22
	local NEWSOUND = nil
23
	coroutine.resume(coroutine.create(function()
24
		NEWSOUND = S:Clone()
25
		NEWSOUND.Parent = PARENT
26
		NEWSOUND.Volume = VOLUME
27
		NEWSOUND.Pitch = PITCH
28
		NEWSOUND.SoundId = "rbxassetid://"..ID
29
		NEWSOUND:play()
30
	end))
31
	return NEWSOUND
32
end
33
34
function JointKiller(Model)
35
	for index, CHILD in pairs(Model:GetDescendants()) do
36
		if CHILD:IsA("JointInstance") then
37
			CHILD.Part0 = nil
38
			CHILD.Part1 = nil
39
			CHILD:remove()
40
		end
41
	end
42
end
43
44
function KILL(MODEL)
45
	coroutine.resume(coroutine.create(function()
46
		local PARENT = MODEL
47
		JointKiller(MODEL)
48
		MODEL:BreakJoints()
49
		for index, CHILD in pairs(MODEL:GetChildren()) do
50
			if CHILD:IsA("BasePart") then
51
				local FLIGHTFORCE = IT("BodyPosition",CHILD)
52
				FLIGHTFORCE.D = 215
53
				FLIGHTFORCE.P = 200
54
				FLIGHTFORCE.maxForce = VT(40000,40000,40000)
55
				FLIGHTFORCE.position = CHILD.CFrame*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)))*CF(0,0,MRANDOM(2,15)).p
56
				game:GetService("Debris"):AddItem(FLIGHTFORCE,MRANDOM(12,25)/10)
57
				if (CHILD.Name == "Torso" or CHILD.Name == "UpperTorso") and CHILD:FindFirstChild("ANTISKID") == nil then
58
					local F = IT("Folder",CHILD)
59
					F.Name = "ANTISKID"
60
					CreateSound(245910488, CHILD, 10, MRANDOM(7,13)/10)
61
				end
62
				coroutine.resume(coroutine.create(function()
63
					wait(0.2)
64
					CHILD.Parent = workspace
65
					CHILD.CanCollide = true
66
				end))
67
			elseif CHILD:IsA("Humanoid") then
68
				game:GetService("Debris"):AddItem(CHILD,0.1)
69
			end
70
			game:GetService("Debris"):AddItem(CHILD,4)
71
		end
72
	end))
73
end
74
75
--//=================================\\
76
--|| 	    LOOP THE SCRIPT
77
--\\=================================//
78
79
warn([[
80
YO WHADDUP G
81
//=================================\\
82
 	    SHACKLUSTER ANTISKID
83
84
         LOADED SUCCESFULLY
85
\\=================================//]])
86
87
local LOOP = 0
88
while true do
89
	wait()
90
	for index, CHILD in pairs(PLAYERSERVICE:GetChildren()) do
91
		if CHILD.Character then
92
			local KILLTHISSKID = false
93
			AVATAR = CHILD.Character
94
			if AVATAR.Parent ~= workspace then
95
				KILLTHISSKID = true
96
			else
97
				if AVATAR:FindFirstChild("Noob Switcher") or AVATAR:FindFirstChild("Starglitcher") or AVATAR:FindFirstChild("Gay") then
98
					KILLTHISSKID = true
99
				end
100
			end
101
			if KILLTHISSKID == true then
102
				AVATAR.Parent = workspace
103
				KILL(AVATAR)
104
			end
105
		end
106
		if LOOP == 0 then
107
			LOOP = 1
108
			warn("SUCCESFULLY LOOPED")
109
		end
110
	end
111
end
112
113
--//==================================\\
114
--||IT'S SIMPLE, BUT GETS THE JOB DONE
115
--\\==================================//