Profile Picture

Roblox_scripts

Reputation: 2 [rate]

Joined: Jan, 2023

Last online:

Badges

badge

Etc

Send Message

Threads List
Possible Alts

Activity Feed

Commented to thread : First Ever UI Library :p


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

 

Created a new thread : First Ever UI Library :p


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)

Created a new thread : Request a script


  • Hello, I'm Roblox_Scripts and I need a request on what game i should make a script on!

Replied to thread : Ultimate Hub (V2)


Sorry. how can i make it better? can you give me an suggestion

Created a new thread : Ultimate Hub (V2)


(OPEN SOURCE CODE)
Features:

Unfair Hub

Dark Hub

Universal Hub

Pearl

Ez Hub

UTG Hub

Equinox Hub

Nullware Hub

Gelatek Hub

Simplity Hub

DISCONTINUED! 

(10)

 

CODE:

 

loadstring(game:HttpGet("https://raw.githubusercontent.com/Roblox-ScriptsWeAreDevs/Ultimate-Hub/main/CODE.md"))()

Created a new thread : Ultimate Hub (V1.1)


Changed:

Removed the old UI.

Features:

Main:

Simplity Hub (Credits to the owner)

Universal Fe Script Hub (May close the main script when executed)

(MORE COMING SOON!)

Secondary:

Ninja Legends
Mine Racer
Ability Wars
Goal Kick Simulator
(DISCONTINUED.)
 
CODE:
  loadstring(game:HttpGet("https://pastebin.com/raw/VriU6g1c", true))()

 

 

Created a new thread : I Need help (Lua Obfuscator)


I'm looking for an Lua Obfuscator for roblox so that no one can steal my code

-Roblox_Scripts

Created a new thread : Ultimate Hub Universal


Features:

Infinite Yield

Jump Power

Speed

Simplity Hub (Credits to the owner)

Note:

This is my first universal script hub so its bad and really basic. (Please Don't Judge!)

code:

loadstring(game:HttpGet("https://pastebin.com/raw/4Ewj1ZBf))()
--Roblox_Scripts

Replied to thread : [UPD24] Tapping Simulator! 🐾 Script


I'm using an alt account. I don't wanna get banned

Created a new thread : [UPD24] Tapping Simulator! 🐾 Script


Open Source

Features:

Auto Click

Auto Rebirth (BUGGY)

Game:

https://www.roblox.com/games/9498006165/UPD24-Tapping-Simulator

 Code: 

loadstring(game:HttpGet(('https://pastebin.com/raw/5P4uY4fX')))()
If loadstring doesnt work try this one (MADE WITH ORION LIBRARY)

if game.PlaceId == 9498006165 then

local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()

local Window = OrionLib:MakeWindow({Name = "ULTIMATE HUB | [UPD24] Tapping Simulator! ", HidePremium = false, IntroEnabled = false,IntroText = "ULTIMATE HUB",SaveConfig = true, ConfigFolder = "OrionTest"})

 

--Values

_G.autoTap = true

 

 

--Functions

 

function autoTap()

while _G.autoTap == true do

local A_1 = "Main"

local Event = game:GetService("ReplicatedStorage").Events.Tap

Event:FireServer(A_1)

wait(0.00000000000000000000000000000000000000000000000000000000000000000000000001)

end

end

 

function autoRebirth()

while _G.autoRebirth == true do

game:GetService("ReplicatedStorage").Events.Rebirth:FireServer(20)

wait(1)

end

end

 

--Tab

local ClickTab = Window:MakeTab({

Name = "AutoFarm",

Icon = "rbxassetid://4483345998",

PremiumOnly = false

})

 

--Toggles

ClickTab:AddToggle({

Name = "Auto Tap",

Default = false,

Callback = function(Value)

_G.autoTap = Value

autoTap()

end

})

 

ClickTab:AddToggle({

Name = "Auto Rebirth",

Default = false,

Callback = function(Value)

_G.autoRebirth = Value

autoRebirth()

end

})

 

 

 

end

OrionLib:Init()

 

--Made By Roblox_scripts

Created a new thread : Get Position (Gets the position of the player)


GET POSITION

        MADE BY ROBLOX_SCRIPTS

          CODE:

loadstring(game:HttpGetAsync("https://pastebin.com/raw/dCmTAth5"))()

Created a new thread : Cheese Escape (GET ALL CHEESE)


Open Source

MADE WITH GUI TO LUA.

GAME: https://www.roblox.com/games/5777099015/Cheese-Escape-Horror

         CODE:

loadstring(game:HttpGet('https://pastebin.com/raw/8TCRiAr4'))()