Advertisement
rrixh

atom TAF

Oct 19th, 2024
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.68 KB | None | 0 0
  1. local Fluent = loadstring(game:HttpGet("https://github.com/dawid-scripts/Fluent/releases/latest/download/main.lua"))()
  2. local Players = game:GetService("Players")
  3. local LocalPlayer = Players.LocalPlayer
  4. local character = LocalPlayer.Character
  5. local humanoid = character and character:FindFirstChild("Humanoid")
  6.  
  7. -- ANTICHEAT BYPASS FOR TELEPORTATION AND WALKSPEED
  8. local anticheat = game.ReplicatedStorage.RemoteEvents:FindFirstChild("Sanity")
  9.  
  10. if anticheat then
  11.     anticheat:Destroy()
  12.     print("Anticheat bypassed")
  13. else
  14.     print("Anticheat already bypassed")
  15. end
  16.  
  17. local Window = Fluent:CreateWindow({
  18.     Title = "Atom Hub ",
  19.     SubTitle = "by Atom.mp4",
  20.     TabWidth = 160,
  21.     Size = UDim2.fromOffset(580, 460),
  22.     Acrylic = true, -- The blur may be detectable, setting this to false disables blur entirely
  23.     Theme = "Dark",
  24.     MinimizeKey = Enum.KeyCode.LeftControl -- Used when theres no MinimizeKeybind
  25. })
  26.  
  27. local Tabs = {
  28.     Main = Window:AddTab({
  29.         Title = "Main",
  30.         Icon = "chevrons-up"
  31.     }),
  32.     Gamepasses = Window:AddTab({
  33.         Title = "Gamepasses",
  34.         Icon = "dollar-sign"
  35.     })
  36. }
  37.  
  38. Tabs.Main:AddParagraph({
  39.     Title = "Anticheat Bypassed",
  40.     Content = "You can fly or do whatever, anticheat is bypassed and it's all clientsided :skull:"
  41. })
  42.  
  43. local WalkSpeedSlider = Tabs.Main:AddSlider("WalkSpeedSlider", {
  44.     Title = "Walk Speed",
  45.     Default = 16,
  46.     Min = 16,
  47.     Max = 100,
  48.     Rounding = 0,
  49.     Callback = function(Value)
  50.         humanoid.WalkSpeed = Value
  51.     end
  52. })
  53.  
  54. local JumpHeightSlider = Tabs.Main:AddSlider("JumpHeightSlider", {
  55.     Title = "Jump Power",
  56.     Default = 16,
  57.     Min = 7.2,
  58.     Max = 50,
  59.     Rounding = 0,
  60.     Callback = function(Value)
  61.         humanoid.JumpHeight = Value
  62.     end
  63. })
  64.  
  65. local function UpdateValues()
  66.     if humanoid and WalkSpeedSlider and JumpHeightSlider then
  67.         humanoid.WalkSpeed = WalkSpeedSlider.Value
  68.         humanoid.JumpHeight = JumpHeightSlider.Value
  69.     end
  70. end
  71.  
  72. game:GetService("RunService").Heartbeat:Connect(UpdateValues)
  73.  
  74. local InfiniteCoinsToggle = Tabs.Main:AddToggle("Infinite Coins", {
  75.     Title = "Infinite Coins",
  76.     Default = false
  77. })
  78.  
  79. local function CoinLoop()
  80.     while InfiniteCoinsToggle.Value do
  81.         game:GetService("MarketplaceService"):SignalPromptProductPurchaseFinished(game.Players.LocalPlayer.UserId,
  82.             1836846947, true)
  83.         task.wait(0.2)
  84.     end
  85. end
  86.  
  87. InfiniteCoinsToggle:OnChanged(function()
  88.     if InfiniteCoinsToggle.Value then
  89.         CoinLoop()
  90.     end
  91. end)
  92.  
  93. Tabs.Main:AddParagraph({
  94.     Title = "Made by Atom.mp4 ",
  95.     Content = "Contact me on discord for suggestions"
  96. })
  97.  
  98. Tabs.Main:AddParagraph({
  99.     Title = "UI by DawidScripts - Fluent",
  100.     Content = ""
  101. })
  102.  
  103. Tabs.Gamepasses:AddParagraph({
  104.     Title = "VIP AND CELEBRATIONS ARE CLIENTSIDED",
  105.     Content = ""
  106. })
  107.  
  108. local VIPToggle = Tabs.Gamepasses:AddToggle("VIP", {
  109.     Title = "VIP",
  110.     Default = false
  111. })
  112.  
  113. VIPToggle:OnChanged(function(value)
  114.     LocalPlayer.playerstats.Gamepasses.VIP.Value = value
  115. end)
  116.  
  117. VIPToggle:SetValue(false)
  118.  
  119. local CelebrationsToggle = Tabs.Gamepasses:AddToggle("Celebrations", {
  120.     Title = "Celebrations",
  121.     Default = false
  122. })
  123.  
  124. CelebrationsToggle:OnChanged(function(value)
  125.     LocalPlayer.playerstats.Gamepasses["Finish Celebrations"].Value = value
  126. end)
  127.  
  128. CelebrationsToggle:SetValue(false)
  129.  
  130. local RelaySettingsToggle = Tabs.Gamepasses:AddToggle("More Relay Settings", {
  131.     Title = "More Relay Settings",
  132.     Default = false
  133. })
  134.  
  135. RelaySettingsToggle:OnChanged(function(value)
  136.     LocalPlayer.playerstats.Gamepasses["More Relay Settings"].Value = value
  137. end)
  138.  
  139. RelaySettingsToggle:SetValue(false)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement