Posted
I used to use a script that made me fast and to noclip but now it crashes Roblox everytime I execute the script. Here is the script I am using:
for i,v in pairs(game:GetService('Workspace').Buildings:GetChildren()) do
  v.CanCollide = false end
_G.NC = not _G.NC
local pos = game:GetService('Players').LocalPlayer.Character.LowerTorso.Position.Y
if _G.InitNC ~= true then
_G.NCFunc = function(part)
if _G.NC then
if part.Position.Y > pos then
part.CanCollide = false
end
end
end
_G.InitNC = true
end
if _G.NC and _G.NCFunc ~= nil then
game:GetService('Players').LocalPlayer.Character.Humanoid.Touched:connect(_G.NCFunc)
end
_G.WalkSpeed = 150
local run = game:GetService('RunService')
local players = game:GetService('Players')
if _G.InitWS ~= true then
run.Heartbeat:connect(function()
players.LocalPlayer.Character.Humanoid.WalkSpeed = _G.WalkSpeed
end)
_G.InitWS = true
end
Replied
That script is old and it patched by Roblox, try this script
Run this script first
------------------------
game.Players.LocalPlayer.Character.Humanoid.MaxHealth = math.huge
game.Players.LocalPlayer.Character.Humanoid.Health = math.huge
while true do
game:GetService("RunService").Stepped:wait()
game.Players.LocalPlayer.Character.Head.CanCollide = false
game.Players.LocalPlayer.Character.Torso.CanCollide = false
end
then this
------------
local player = game.Players.LocalPlayer
player.Humanoid.WalkSpeed = 100
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post