Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Anime Tower GUI | ReksPlay
- local Rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))()
- local Players = game:GetService("Players")
- local lp = Players.LocalPlayer
- local Window = Rayfield:CreateWindow({
- Name = "Anime Tower GUI",
- LoadingTitle = "Anime Tower Hub",
- LoadingSubtitle = "by ReksPlay",
- ConfigurationSaving = { Enabled = false },
- Discord = { Enabled = false },
- KeySystem = false
- })
- -- âšī¸ Info Tab
- local InfoTab = Window:CreateTab("Info", nil)
- InfoTab:CreateParagraph({
- Title = "Welcome, " .. lp.Name .. "!",
- Content = "Subscribe to ReksPlay\nJoin the Discord: https://discord.gg/2sm7zyxH6d"
- })
- -- đ Main Tab
- local MainTab = Window:CreateTab("Main", nil)
- MainTab:CreateParagraph({
- Title = "Info",
- Content = "Auto Win teleports you every 65 seconds. Teleporting too often may stop you from reaching the top, so give it time."
- })
- local autoWin = false
- MainTab:CreateToggle({
- Name = "Auto Win Tower",
- CurrentValue = false,
- Callback = function(val)
- autoWin = val
- task.spawn(function()
- while autoWin do
- local char = lp.Character
- if char and char:FindFirstChild("HumanoidRootPart") then
- char.HumanoidRootPart.CFrame = CFrame.new(-81.68, 366.78, 872.18)
- end
- task.wait(65)
- end
- end)
- end
- })
- MainTab:CreateButton({
- Name = "Wall Hop GUI",
- Callback = function()
- loadstring(game:HttpGet(
- "https://raw.githubusercontent.com/ScpGuest666/Random-Roblox-script/refs/heads/main/Roblox%20WallHop%20V4%20script"
- ))()
- end
- })
- -- đ Characters Tab
- local CharactersTab = Window:CreateTab("Characters", nil)
- CharactersTab:CreateButton({
- Name = "Admin Panel (Anime Tower)",
- Callback = function()
- loadstring(game:HttpGet(
- "https://scriptblox.com/raw/ANIME-TOWER-OP-KEYLESS-GUI-43090"
- ))()
- end
- })
- CharactersTab:CreateParagraph({
- Title = "Credits",
- Content = "Credits to the creator of the Admin Panel GUI"
- })
- -- đ§° Misc Tab
- local MiscTab = Window:CreateTab("Misc", nil)
- local UIS = game:GetService("UserInputService")
- local infJump = false
- MiscTab:CreateToggle({
- Name = "Infinite Jump",
- CurrentValue = false,
- Callback = function(val) infJump = val end
- })
- UIS.JumpRequest:Connect(function()
- if infJump and lp.Character then
- local hum = lp.Character:FindFirstChildOfClass("Humanoid")
- if hum then hum:ChangeState("Jumping") end
- end
- end)
- local speedEnabled = false
- local speedValue = 16
- MiscTab:CreateSlider({
- Name = "WalkSpeed",
- Range = {16, 100},
- Increment = 1,
- CurrentValue = 16,
- Callback = function(val)
- speedValue = val
- if speedEnabled and lp.Character then
- local hum = lp.Character:FindFirstChildOfClass("Humanoid")
- if hum then hum.WalkSpeed = speedValue end
- end
- end
- })
- MiscTab:CreateToggle({
- Name = "Enable Speed",
- CurrentValue = false,
- Callback = function(val)
- speedEnabled = val
- if lp.Character then
- local hum = lp.Character:FindFirstChildOfClass("Humanoid")
- if hum then hum.WalkSpeed = val and speedValue or 16 end
- end
- end
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement