local BlekLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/laderite/bleklib/main/library.lua"))() local win = BlekLib:Create({ Name = "Motorcycle Racing - fatigue", StartupSound = { Toggle = false, SoundID = "rbxassetid://6958727243", TimePosition = 1 } }) local maintab = win:Tab('Main') local uitab = win:Tab('UI') uitab:Button('Destroy GUI', function() win:Exit() end) getgenv().AutoPower = false maintab:Toggle('Auto Power', function(v) getgenv().AutoPower = v end) spawn(function() while true do if getgenv().AutoPower then local ohNumber1 = 3 game:GetService("ReplicatedStorage").Events.PickupFlashRemote:FireServer(ohNumber1) end wait() end end) getgenv().AutoRebirth = false maintab:Toggle('Auto Rebirth', function(v) getgenv().AutoRebirth = v end) spawn(function() while true do if getgenv().AutoRebirth then local ohString1 = "Rebirth" game:GetService("ReplicatedStorage").call_level_Event2:FireServer(ohString1) end wait() end end) spawn(function() local plr = game:GetService("Players").LocalPlayer local char = plr.Character or plr.CharacterAdded:Wait() local hrp = char:WaitForChild("HumanoidRootPart") local originalCFrame = hrp.CFrame hrp.CFrame = CFrame.new(-110, 11, -450614) wait(0.1) local racePart = workspace:WaitForChild("Game_\229\140\186\229\159\159Part"):WaitForChild("Race_16") if racePart then firetouchinterest(hrp, racePart, 0) firetouchinterest(hrp, racePart, 1) end hrp.CFrame = originalCFrame end) getgenv().AutoRace = false local lastPrepareTime = 0 local lastRaceTime = 0 local racePart = workspace:WaitForChild("Game_\229\140\186\229\159\159Part"):WaitForChild("Race_16") local preparePart = workspace:WaitForChild("Game_\229\140\186\229\159\159Part"):WaitForChild("Prepare") maintab:Toggle('Auto Race', function(v) getgenv().AutoRace = v if not v then local plr = game:GetService("Players").LocalPlayer local char = plr.Character if char then local humanoid = char:FindFirstChildWhichIsA("Humanoid") if humanoid then humanoid.Health = 0 end end lastPrepareTime = 0 lastRaceTime = 0 end end) spawn(function() while true do if getgenv().AutoRace then local plr = game:GetService("Players").LocalPlayer local char = plr.Character or plr.CharacterAdded:Wait() local hrp = char:WaitForChild("HumanoidRootPart") local now = tick() if now - lastRaceTime >= 0.1 then firetouchinterest(hrp, racePart, 0) firetouchinterest(hrp, racePart, 1) lastRaceTime = now end if now - lastPrepareTime >= 0.2 then firetouchinterest(hrp, preparePart, 0) firetouchinterest(hrp, preparePart, 1) lastPrepareTime = now end end wait(0.1) end end)