Advertisement
Xnatee

Netless Script

May 29th, 2022
913
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. local LocalPlayer = game:GetService("Players").LocalPlayer
  2. local Heartbeat = game:GetService("RunService").Heartbeat
  3.  
  4. Heartbeat:Connect(function()
  5. LocalPlayer.MaximumSimulationRadius = math.huge
  6. sethiddenproperty(LocalPlayer, "SimulationRadius", math.huge)
  7. end)
  8.  
  9. wait(0.2)
  10.  
  11. for i,v in next, game:GetService("Players").LocalPlayer.Character:GetDescendants() do
  12. if v:IsA("BasePart") and v.Name ~="HumanoidRootPart" then
  13. game:GetService("RunService").Heartbeat:connect(function()
  14. v.Velocity = Vector3.new(-30,0,0)
  15. end)
  16. end
  17. end
  18.  
  19. wait(0.2)
  20.  
  21.  
  22. local character = game.Players.LocalPlayer.Character
  23. local tools = {}
  24. for i, v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  25. if v:IsA("Tool")
  26. then v.Parent = character
  27. table.insert(tools,v)
  28. end
  29. end
  30. wait()
  31. for i, v in pairs(tools) do
  32. v.Parent = game.Players.LocalPlayer.Backpack
  33. end
  34. wait(0.1)
  35.  
  36.  
  37. game:GetService("StarterGui"):SetCore("SendNotification", {
  38. Title = "Notification";
  39. Text = "Netless Ran";
  40. Icon = "rbxthumb://type=Asset&id=5107182114&w=150&h=150"})
  41. Duration = 16;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement