Advertisement
Reksplay

Anime tower full code reksplay

Jun 24th, 2025 (edited)
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.33 KB | None | 0 0
  1. -- Anime Tower GUI | ReksPlay
  2.  
  3. local Rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))()
  4. local Players = game:GetService("Players")
  5. local lp = Players.LocalPlayer
  6.  
  7. local Window = Rayfield:CreateWindow({
  8. Name = "Anime Tower GUI",
  9. LoadingTitle = "Anime Tower Hub",
  10. LoadingSubtitle = "by ReksPlay",
  11. ConfigurationSaving = { Enabled = false },
  12. Discord = { Enabled = false },
  13. KeySystem = false
  14. })
  15.  
  16. -- â„šī¸ Info Tab
  17. local InfoTab = Window:CreateTab("Info", nil)
  18. InfoTab:CreateParagraph({
  19. Title = "Welcome, " .. lp.Name .. "!",
  20. Content = "Subscribe to ReksPlay\nJoin the Discord: https://discord.gg/2sm7zyxH6d"
  21. })
  22.  
  23. -- 🛠 Main Tab
  24. local MainTab = Window:CreateTab("Main", nil)
  25. MainTab:CreateParagraph({
  26. Title = "Info",
  27. Content = "Auto Win teleports you every 65 seconds. Teleporting too often may stop you from reaching the top, so give it time."
  28. })
  29.  
  30. local autoWin = false
  31. MainTab:CreateToggle({
  32. Name = "Auto Win Tower",
  33. CurrentValue = false,
  34. Callback = function(val)
  35. autoWin = val
  36. task.spawn(function()
  37. while autoWin do
  38. local char = lp.Character
  39. if char and char:FindFirstChild("HumanoidRootPart") then
  40. char.HumanoidRootPart.CFrame = CFrame.new(-81.68, 366.78, 872.18)
  41. end
  42. task.wait(65)
  43. end
  44. end)
  45. end
  46. })
  47.  
  48. MainTab:CreateButton({
  49. Name = "Wall Hop GUI",
  50. Callback = function()
  51. loadstring(game:HttpGet(
  52. "https://raw.githubusercontent.com/ScpGuest666/Random-Roblox-script/refs/heads/main/Roblox%20WallHop%20V4%20script"
  53. ))()
  54. end
  55. })
  56.  
  57. -- 🌀 Characters Tab
  58. local CharactersTab = Window:CreateTab("Characters", nil)
  59. CharactersTab:CreateButton({
  60. Name = "Admin Panel (Anime Tower)",
  61. Callback = function()
  62. loadstring(game:HttpGet(
  63. "https://scriptblox.com/raw/ANIME-TOWER-OP-KEYLESS-GUI-43090"
  64. ))()
  65. end
  66. })
  67. CharactersTab:CreateParagraph({
  68. Title = "Credits",
  69. Content = "Credits to the creator of the Admin Panel GUI"
  70. })
  71.  
  72. -- 🧰 Misc Tab
  73. local MiscTab = Window:CreateTab("Misc", nil)
  74. local UIS = game:GetService("UserInputService")
  75. local infJump = false
  76.  
  77. MiscTab:CreateToggle({
  78. Name = "Infinite Jump",
  79. CurrentValue = false,
  80. Callback = function(val) infJump = val end
  81. })
  82. UIS.JumpRequest:Connect(function()
  83. if infJump and lp.Character then
  84. local hum = lp.Character:FindFirstChildOfClass("Humanoid")
  85. if hum then hum:ChangeState("Jumping") end
  86. end
  87. end)
  88.  
  89. local speedEnabled = false
  90. local speedValue = 16
  91. MiscTab:CreateSlider({
  92. Name = "WalkSpeed",
  93. Range = {16, 100},
  94. Increment = 1,
  95. CurrentValue = 16,
  96. Callback = function(val)
  97. speedValue = val
  98. if speedEnabled and lp.Character then
  99. local hum = lp.Character:FindFirstChildOfClass("Humanoid")
  100. if hum then hum.WalkSpeed = speedValue end
  101. end
  102. end
  103. })
  104.  
  105. MiscTab:CreateToggle({
  106. Name = "Enable Speed",
  107. CurrentValue = false,
  108. Callback = function(val)
  109. speedEnabled = val
  110. if lp.Character then
  111. local hum = lp.Character:FindFirstChildOfClass("Humanoid")
  112. if hum then hum.WalkSpeed = val and speedValue or 16 end
  113. end
  114. end
  115. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement