-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDesert code script.Lua
More file actions
56 lines (55 loc) · 2.75 KB
/
Copy pathDesert code script.Lua
File metadata and controls
56 lines (55 loc) · 2.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Robojini/Tuturial_UI_Library/main/UI_Template_1"))()
local Window = Library.CreateLib("By Varap228", "RJTheme3")
local Tab_cred = Window:NewTab("Credits")
local Section_cred = Tab_cred:NewSection("Ctrl click tp")
local Tab = Window:NewTab("Main")
local Section = Tab:NewSection("main")
local Tab_EF = Window:NewTab("Esp and Fly")
local Section_EF = Tab_EF:NewSection("Not my esp Not my fly")
Section_cred:NewButton("copy my github", "", function()
setclipboard("https://github.com/Varap228/Desert-script/tree/main")
game:GetService("StarterGui"):SetCore("SendNotification",{
Title = "Copy",
Text = "My github copied to clipboard",
Icon = ""
})
end)
Section_cred:NewButton("copy my pastebin", "", function()
setclipboard("https://pastebin.com/sF13zEP0")
game:GetService("StarterGui"):SetCore("SendNotification",{
Title = "Copy",
Text = "My pastebin copied to clipboard",
Icon = ""
})
end)
Section:NewButton("teleport to the exit", "", function()
for i,n in pairs(workspace:GetChildren()) do
if n.Name == "Part" then
if n.BrickColor == BrickColor.new("White") then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = n.CFrame + Vector3.new(0,1,0)
end
end
end
end)
Section:NewButton("No fog", "", function()
game:GetService("Lighting").Atmosphere:destroy()
end)
Section:NewSlider("WalkSpeed", "changes speed", 250, 16, function(walk)
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = walk
end)
Section:NewKeybind("remove gui", "hides the script on the button", Enum.KeyCode.F, function()
Library:ToggleUI()
end)
Section_EF:NewButton("Esp player press Q", "", function()
loadstring(game:HttpGet("https://pastebin.com/raw/s7viVmDR"))()
end)
Section_EF:NewButton("Fly", "", function()
loadstring("\108\111\97\100\115\116\114\105\110\103\40\103\97\109\101\58\72\116\116\112\71\101\116\40\40\39\104\116\116\112\115\58\47\47\103\105\115\116\46\103\105\116\104\117\98\117\115\101\114\99\111\110\116\101\110\116\46\99\111\109\47\109\101\111\122\111\110\101\89\84\47\98\102\48\51\55\100\102\102\57\102\48\97\55\48\48\49\55\51\48\52\100\100\100\54\55\102\100\99\100\51\55\48\47\114\97\119\47\101\49\52\101\55\52\102\52\50\53\98\48\54\48\100\102\53\50\51\51\52\51\99\102\51\48\98\55\56\55\48\55\52\101\98\51\99\53\100\50\47\97\114\99\101\117\115\37\50\53\50\48\120\37\50\53\50\48\102\108\121\37\50\53\50\48\50\37\50\53\50\48\111\98\102\108\117\99\97\116\111\114\39\41\44\116\114\117\101\41\41\40\41\10\10")()
end)
local Plr = game:GetService("Players").LocalPlayer
local Mouse = Plr:GetMouse()
Mouse.Button1Down:connect(function()
if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
if not Mouse.Target then return end
Plr.Character:MoveTo(Mouse.Hit.p)
end)