Categories > Exploiting > Scripts >
First Ever UI Library :p
Posted
I'm back after a year I've been busy in school but lets get to the topic.
Source:
https://pastebin.com/raw/77VBGaCF
Example Code:
local ui = loadstring(game:HttpGet('https://pastebin.com/raw/77VBGaCF', true))()
local player = game.Players.LocalPlayer
local Player = ui:CreateWindow({
text = 'Player'
})
Player:AddToggle('Infinite Jump', function(state)
getgenv().InfiniteJump = state
game.UserInputService.JumpRequest:connect(function()
if not getgenv().InfiniteJump then return end
player.Character.Humanoid:ChangeState('Jumping')
end)
end)
Player:AddToggle('Noclip', function(state)
getgenv().Noclip = state
while true do
if not getgenv().Noclip then return end
game.RunService.Stepped:wait()
for i, v in pairs(player.Character:GetDescendants()) do
if v:IsA('BasePart') then
v.CanCollide = false
end
end
end
end)
Player:AddBox('Walkspeed', function(state)
if tonumber(state.Text) ~= nil then
player.Character.Humanoid.WalkSpeed = state.Text
end
end)
Player:AddBox('Jumppower', function(state)
if tonumber(state.Text) ~= nil then
if player.Character.Humanoid.UseJumpPower == true then
player.Character.Humanoid.JumpPower = state.Text
else
player.Character.Humanoid.JumpHeight = state.Text
end
end
end)
Player:AddBox('Gravity', function(state)
if tonumber(state.Text) ~= nil then
workspace.Gravity = state.Text
end
end)
Player:AddButton('Reset to Default', function()
player.Character.Humanoid.WalkSpeed = 16
if player.Character.Humanoid.UseJumpPower == true then
player.Character.Humanoid.JumpPower = 50
else
player.Character.Humanoid.JumpHeight = 7.2
end
player.Character.Humanoid.JumpPower = 50
workspace.Gravity = 196.2
end)
Cancel
Post
Replied
You should add a screenshot of the ui
Cancel
Post
Did I mention I use arch btw?
Replied
https://i.gyazo.com/98f4a9429d66f7e8af262ad496e2adaf.mp4
heres how it looks
Comments
Whoman 17 Reputation
Commented
The music wont make the ui better thats a 0/10 for me 💀
Cancel
Post
Replied
The ui lib is really basic.
Comments
TERIHAX 30 Reputation
Commented
at least its his 1st ui lib tho
Cancel
Post
PLUTO_GUY FOR MODERATOR 2024!
A developer that knows C#,JavaScript,Python,Lua
Replied
i mean it could work for mobile guis buttt
Cancel
Post
https://cdn.discordapp.com/attachments/995469995742068832/1073019970012848228/Untitled39_20220604185345.png
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Comments
Roblox_scripts 2 Reputation
Commented
I haven't been using this site for a while how do I do that?
0
TERIHAX 30 Reputation
Commented
@Roblox_scripts upload on discord and copy image link or use imgur or gyazo and put the raw image link
0
Added
@Whoman i tried the example script and got this
https://i.gyazo.com/3e796e5704d6ebbcf8750f0b02cb7676.png
its got a bit of like a frosted glass dragging thing, like its slides when you drag idk how to explain
0