S

da hood scarlet 3.0

public
scarlet Oct 22, 2023 Never 138
Clone
Plaintext da hood scarlet 3.0 58 lines (38 loc) | 1.73 KB
1
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
2
3
local Window = Library.CreateLib("da hood scarlet 3.0", "GrapeTheme")
4
5
local Tab = Window:NewTab("home")
6
7
local Section = Tab:NewSection("discord https://discord.gg/pTmc8uEqJr")
8
9
local Section = Tab:NewSection("credits by scarletbackup#3582")
10
11
local Tab = Window:NewTab("Main")
12
13
Section:NewButton("w script da hood", "ButtonInfo", function()
14
15
loadstring(game:HttpGet("https://vantra.cc/api/script/get?placeid=MainLoader"))()
16
17
print("Clicked")
18
end)
19
20
Section:NewButton("Anti Lock", "ButtonInfo", function()
21
22
local Toggled = true
23
24
local KeyCode = 'z'
25
local hip = 2.80
26
local val = -35
27
28
29
30
31
32
function AA()
33
local oldVelocity = game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity
34
game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity = Vector3.new(oldVelocity.X, val, oldVelocity.Z)
35
game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity = Vector3.new(oldVelocity.X, oldVelocity.Y, oldVelocity.Z)
36
game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity = Vector3.new(oldVelocity.X, val, oldVelocity.Z)
37
game.Players.LocalPlayer.Character.Humanoid.HipHeight = hip
38
end
39
40
game:GetService('UserInputService').InputBegan:Connect(function(Key)
41
if Key.KeyCode == Enum.KeyCode[KeyCode:upper()] and not game:GetService('UserInputService'):GetFocusedTextBox() then
42
if Toggled then
43
Toggled = false
44
game.Players.LocalPlayer.Character.Humanoid.HipHeight = hip
45
46
elseif not Toggled then
47
Toggled = true
48
49
while Toggled do
50
AA()
51
task.wait()
52
end
53
end
54
end
55
end)
56
57
print("Clicked")
58
end)