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

DSM RobloxScripts

This document contains Lua script code for creating a GUI window in Roblox using the UiLib library. The window contains buttons and toggles for teleporting to a sticks seller, picking up all sticks, and enabling infinite breathing by setting the player's breathing value to 100 while a toggle is on. The code also contains a label with customized text properties.

Uploaded by

iLLUSION私 MLBB
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)
30 views1 page

DSM RobloxScripts

This document contains Lua script code for creating a GUI window in Roblox using the UiLib library. The window contains buttons and toggles for teleporting to a sticks seller, picking up all sticks, and enabling infinite breathing by setting the player's breathing value to 100 while a toggle is on. The code also contains a label with customized text properties.

Uploaded by

iLLUSION私 MLBB
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

--BROUGHT TO YOU BY ROBLOXSCRIPTS.NET!

--

local library =
loadstring(game:HttpGet(('https://raw.githubusercontent.com/AikaV3rm/UiLib/master/
Lib.lua')))()
local w = library:CreateWindow("afy")
local b = w:CreateFolder("DSM")
b:Label("LGBT HateW",{
TextSize = 25; -- Self Explaining
TextColor = Color3.fromRGB(255,255,255); -- Self Explaining
BgColor = Color3.fromRGB(69,69,69); -- Self Explaining
})
b:Toggle("Infinite Breathing",function(bool)
_G.enable = bool
end)
b:Button("Teleport to sticks seller",function()

game:GetService("Workspace").Game.Characters[game.Players.LocalPlayer.Name].Humanoi
dRootPart.CFrame = game:GetService("Workspace").Game["NPC_Models"]["Ida
Tomio"].HumanoidRootPart.CFrame
end)
b:Button("Pick up all sticks",function()
for i,v in pairs(workspace:GetDescendants()) do
if v:IsA("ClickDetector") then
fireclickdetector(v)
end
end
end)
b:DestroyGui()
_G.enable = false
while wait() do
if _G.enable == true then

game:GetService("Workspace").Game.Characters[game.Players.LocalPlayer.Name].INFO.Br
eathing.Value = 100
end
end

You might also like