Categories > Exploiting > Scripts >

First Ever UI Library :p

Posts: 12

Threads: 9

Joined: Jan, 2023

Reputation: 2

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)
  • 0

Posts: 1430

Threads: 71

Joined: May, 2022

Reputation: 20

Replied

You should add a screenshot of the ui

Comments

Roblox_scripts 2 Reputation

Commented

I haven't been using this site for a while how do I do that?

 

  • 0

TERIHAX 32 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

  • 0

i use arch btw

TERIHAX

i say im gay as a joke 🙀

Posts: 2239

Threads: 102

Joined: Jul, 2020

Reputation: 32

Replied

https://i.gyazo.com/98f4a9429d66f7e8af262ad496e2adaf.mp4

 

heres how it looks

Comments

Whoman 20 Reputation

Commented

The music wont make the ui better thats a 0/10 for me 💀

  • 0

TERIHAX 32 Reputation

Commented

@Whoman no i just keep phonk music playing all the time on a playlist and it just happened to be close eyes

  • 0

Whoman 20 Reputation

Commented

@TERIHAX how do you live like that 💀

  • 1

TERIHAX 32 Reputation

Commented

@Whoman no idea

  • 0

  • 0

Posts: 662

Threads: 65

Joined: Oct, 2022

Reputation: 30

Replied

The ui lib is really basic.

Comments

TERIHAX 32 Reputation

Commented

at least its his 1st ui lib tho

  • 0

  • 0

Try the cheat launcher verve today ⬇

https://i.imgur.com/QdS8sQ5.png

Join Neuron Discord Server - https://discord.gg/harAKHv32K

Zera

Casual Femboy Agent

vip

Posts: 1556

Threads: 39

Joined: Mar, 2020

Reputation: 42

Replied

i mean it could work for mobile guis buttt

  • 0

https://cdn.discordapp.com/attachments/995469995742068832/1073019970012848228/Untitled39_20220604185345.png

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )