Advertisement
Filipono120

[ROBLOX] RoHardCORE

Oct 31st, 2020 (edited)
1,163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.93 KB | None | 0 0
  1. --// ROBLOX Hard Mode (like rage mode)
  2. --// Execute this script for exploits, then reset your character in ROBLOX player to work!
  3. game.Players.LocalPlayer.CharacterAdded:Connect(function()
  4.     wait(2.5)
  5.     --// Locals
  6.     local plr = game.Players.LocalPlayer
  7.     local char = plr.Character
  8.     local hum = char.Humanoid
  9.     local root = char.HumanoidRootPart
  10.    
  11.     --// Nettable clients
  12.     local NetworkAccess = coroutine.create(function()
  13.         settings().Physics.AllowSleep = false
  14.         wait(math.random(1.5, 3))
  15.         while true do
  16.             game:GetService('RunService').RenderStepped:Wait()
  17.             for _, players in pairs(game.Players:GetChildren()) do
  18.                 if players ~= game.Players.LocalPlayer then
  19.                     players.MaximumSimulationRadius = 0.1
  20.                     players.SimulationRadius = 0
  21.                 end
  22.             end
  23.             plr.MaximumSimulationRadius = math.pow(math.huge, math.huge)
  24.             plr.SimulationRadius = math.huge * math.huge
  25.         end
  26.     end)
  27.     coroutine.resume(NetworkAccess)
  28.    
  29.    
  30.     --// Settings
  31.     local ZPower = 9999999
  32.     local XPower = 9999999
  33.     local SoundFormat = "mp3"
  34.    
  35.     --// Events
  36.     hum:GetPropertyChangedSignal("Health"):Connect(function()
  37.         local bodythrust = Instance.new("BodyThrust", root)
  38.         local sound = Instance.new("Sound", root)
  39.         sound.SoundId = "rbxasset://sounds/uuhhh."..SoundFormat
  40.         sound.Volume = 50
  41.         sound:Play()
  42.         bodythrust.Force = Vector3.new(XPower, 0, ZPower)
  43.         bodythrust.Location = root.Position
  44.         game.Debris:AddItem(bodythrust, 1.5)
  45.         game.Debris:AddItem(sound, 1.5)
  46.     end)
  47.    
  48.     hum:GetPropertyChangedSignal("PlatformStand"):Connect(function()
  49.         local bodythrust = Instance.new("BodyThrust", root)
  50.         local sound = Instance.new("Sound", root)
  51.         sound.SoundId = "rbxasset://sounds/uuhhh."..SoundFormat
  52.         sound.Volume = 50
  53.         sound:Play()
  54.         bodythrust.Force = Vector3.new(XPower, 0, ZPower)
  55.         bodythrust.Location = root.Position
  56.         game.Debris:AddItem(bodythrust, 1.5)
  57.         game.Debris:AddItem(sound, 1.5)
  58.     end)
  59.    
  60.     hum:GetPropertyChangedSignal("Sit"):Connect(function()
  61.         local bodythrust = Instance.new("BodyThrust", root)
  62.         local sound = Instance.new("Sound", root)
  63.         sound.SoundId = "rbxasset://sounds/uuhhh."..SoundFormat
  64.         sound.Volume = 50
  65.         sound:Play()
  66.         bodythrust.Force = Vector3.new(XPower, 0, ZPower)
  67.         bodythrust.Location = root.Position
  68.         game.Debris:AddItem(bodythrust, 1.5)
  69.         game.Debris:AddItem(sound, 1.5)
  70.     end)
  71.    
  72.     hum.Swimming:Connect(function(spd)
  73.         if spd >= 1 then
  74.             local bodythrust = Instance.new("BodyThrust", root)
  75.             local sound = Instance.new("Sound", root)
  76.             sound.SoundId = "rbxasset://sounds/uuhhh."..SoundFormat
  77.             sound.Volume = 50
  78.             sound:Play()
  79.             bodythrust.Force = Vector3.new(XPower, 0, ZPower)
  80.             bodythrust.Location = root.Position
  81.             game.Debris:AddItem(bodythrust, 1.5)
  82.             game.Debris:AddItem(sound, 1.5)
  83.         end
  84.     end)
  85.    
  86.     while game:GetService("RunService").RenderStepped:Wait() do
  87.         wait()
  88.         local WS = math.random(16, 300)
  89.         local JP = math.random(50, 100)
  90.         hum.WalkSpeed = WS
  91.         hum.JumpPower = JP
  92.     end
  93. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement