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



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1.  local player = game.Players.LocalPlayer
  2. local char = player.Character
  3. local runtable = nil
  4.  
  5. local gmt = getrawmetatable(game)
  6. local old = gmt.__newindex
  7.  
  8. game.ReplicatedStorage.Hotdog_Request:Destroy()
  9. Instance.new("RemoteEvent", game.ReplicatedStorage).Name = "Hotdog_Request" --literally do not need to use getrawmetatable, will be updated in the future if needed howerver
  10.  
  11. setreadonly(gmt, false)
  12. gmt.__newindex = newcclosure(function(self, index, value)
  13.    if (tostring(self) == "Humanoid" and index == "WalkSpeed" and value == 4) or (tostring(self) == "CanSprint" and index == "Value" and value == false) then
  14.        return
  15.    end
  16.    return old(self, index, value)
  17. end)
  18. setreadonly(gmt, true)
  19.  
  20. for i,v in pairs(getconnections(char.Helding.Changed)) do
  21.    if getfenv(v.Function).script == char.Client then
  22.        for i,v in pairs(debug.getupvalues(v.Function)) do
  23.            if typeof(v) == "table" and v.Current ~= nil then runtable = v break end
  24.        end
  25.        break
  26.    end
  27. end
  28.  
  29. if runtable then
  30.    while player.Character == char and char:FindFirstChild("Humanoid") and char.Humanoid.Health > 0 do
  31.        runtable.Current = 190 --nice game fucktard
  32.        char.Client.CanSprint.Value = true
  33.        wait(.2)
  34.    end
  35. end