0% found this document useful (0 votes)
36 views1 page

Test Hub

This document is a Lua script that utilizes the RedzLib V5 library for creating a user interface in a game. It includes functionality for a button that prints 'Hello World!', a toggle for speed, and a slider to adjust the player's walking speed. The script comes with a warning about unverified use and credits the creator REDz.

Uploaded by

thuansiu879
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
36 views1 page

Test Hub

This document is a Lua script that utilizes the RedzLib V5 library for creating a user interface in a game. It includes functionality for a button that prints 'Hello World!', a toggle for speed, and a slider to adjust the player's walking speed. The script comes with a warning about unverified use and credits the creator REDz.

Uploaded by

thuansiu879
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

--[[

WARNING: Heads up! This script has not been verified by ScriptBlox. Use at
your own risk!
]]
--[[
Credits goes to REDz.
And you can find more here! [This is v5 version]
https://github.com/REDzHUB/RedzLibV5
And maybe some things may not work correctly (doesn't to me)
]]--

local redzlib =
loadstring(game:HttpGet("https://raw.githubusercontent.com/REDzHUB/RedzLibV5/main/
Source.Lua"))()

local Window = redzlib:MakeWindow({


Title = "Test",
SubTitle = "hello",
SaveFolder = "Redz Config"
})

--Tabs

local Tab1 = Window:MakeTab({"Tab 1", "cool"})

--Buttons

Tab1:AddButton({"Print", function()
print("Hello World!")
end})

local Toggle1 = Tab1:AddToggle({


Name = "Speed",
Description = "Idk",
Default = false
})

Tab1:AddSlider({
Name = "Speed",
Min = 1,
Max = 100,
Increase = 1,
Default = 16,
Callback = function(Value)
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
end
})

You might also like