The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Crash Servers script pastebin roblox
By Crash Servers on 2024-09-22 08:00 am | Syntax: LUA | Views: 7



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local LP, Players = game:GetService('Players').LocalPlayer, game:GetService('Players')
  2.  
  3. local function GetLayeredAssets(Char)
  4.     local Assets, Char = {}, assert(typeof(Char) == 'Instance' and Char:IsA('Model'), 'invalid argument #1 to \'GetLayeredAssets\' (Instance [Character] expected, got: '..tostring(typeof(Char)..(tostring(typeof(Char) == 'Instance' and ', '..Char.ClassName or '')..')'))) and Char or nil
  5.    
  6.     for _, v in next, Char:GetChildren() do
  7.         if v:IsA('Accessory') and v:FindFirstChild('Handle') and (v.Handle:FindFirstChild('SurfaceAppearance') or v.Handle:FindFirstChildOfClass('WrapLayer')) then
  8.             table.insert(Assets, v)
  9.         end
  10.     end
  11.    
  12.     return Assets
  13. end
  14.  
  15. if LP and LP.Character and LP.Character.Parent and LP.Character:FindFirstChildOfClass('Humanoid') then
  16.     local LC, Hum = LP.Character, LP.Character:FindFirstChildOfClass('Humanoid')
  17.     local LayeredAssets = LC and GetLayeredAssets(LC) or {}
  18.     local LFoot, RFoot = LP.Character:FindFirstChild('LeftFoot') and LP.Character.LeftFoot:FindFirstChild('LeftFoot') or nil, LP.Character:FindFirstChild('RightFoot') and LP.Character.RightFoot:FindFirstChild('RightFoot') or nil
  19.     local LeftAnkle, RightAnkle = LFoot and LFoot.Parent and LFoot.Parent:FindFirstChild('LeftAnkle'), RFoot and RFoot.Parent and RFoot.Parent:FindFirstChild('RightAnkle')
  20.     local RP, UpperTorso, LowerTorso, Waist = LC:FindFirstChild('HumanoidRootPart'), LC:FindFirstChild('UpperTorso'), LC:FindFirstChild('LowerTorso'), LC:FindFirstChild('Waist', true)
  21.    
  22.     workspace.CurrentCamera.CameraSubject = RP
  23.    
  24.     if #LayeredAssets > 0 and Hum.RigType == Enum.HumanoidRigType.R15 and LFoot and RFoot and (LeftAnkle and RightAnkle and LeftAnkle.Parent and RightAnkle.Parent) then
  25.         if Waist then
  26.             Waist:Destroy()
  27.            
  28.             wait()
  29.            
  30.             for _, v in next, {RP, UpperTorso, LowerTorso} do
  31.                 v.Velocity = Vector3.new((v == RP and 9e9 or v == LowerTorso and -9e9), 9e9, (v == RP and 9e9 or v == UpperTorso and 9e9 or v == LowerTorso and -9e9))
  32.                 v.CFrame = CFrame.new(v.CFrame * Vector3.new((v == RP and 9e9 or v == LowerTorso and -9e9), 9e9, (v == RP and 9e9 or v == UpperTorso and 9e9 or v == LowerTorso and -9e9)))
  33.             end
  34.         end
  35.        
  36.         for _, v in next, {'LeftHand', 'RightHand'} do
  37.             if LC and LC.Parent then
  38.                 local Object = LC:FindFirstChild(v)
  39.                
  40.                 if Object then
  41.                     Object:Destroy()
  42.                 end
  43.             end
  44.         end
  45.        
  46.         LeftAnkle:Destroy(); RightAnkle:Destroy(); task.wait()
  47.        
  48.         for _, Foot in next, {LFoot.Parent, RFoot.Parent} do
  49.             task.spawn(function()
  50.                 if Foot and Foot.Parent then
  51.                     for i = 1, 100 do
  52.                         if Foot and Foot.Parent ~= nil then
  53.                             Foot.Velocity = Vector3.new(Foot.Name == 'LeftFoot' and 9e9 or Foot.Name == 'RightFoot' and -9e9, 9e9, math.random(-9e9, 9e9)); task.wait()
  54.                         end
  55.                     end
  56.                 end
  57.             end)
  58.         end
  59.        
  60.         task.wait()
  61.        
  62.         for _, v in next, LayeredAssets do
  63.             v:Destroy()
  64.         end
  65.        
  66.         RP.Anchored = true
  67.        
  68.         wait(5)
  69.        
  70.         Hum.Health = 0
  71.     elseif LayeredAssets == 0 then
  72.         error('attempt to crash failed (you were not detected wearing any valid layered assets)')
  73.     end
  74. end



  • Recent Roblox Scripts