S

Best scripts on scarlet

public
scarlet Mar 16, 2024 Never 128
Clone
Plaintext scarlet 125 lines (104 loc) | 4.88 KB
1
local ScreenGui = Instance.new("ScreenGui")
2
local Frame = Instance.new("Frame")
3
local TextButton = Instance.new("TextButton")
4
local UITextSizeConstraint = Instance.new("UITextSizeConstraint")
5
6
--Properties:
7
8
ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
9
ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
10
11
Frame.Parent = ScreenGui
12
Frame.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
13
Frame.BackgroundTransparency = 0.500
14
Frame.Position = UDim2.new(0.858712733, 0, 0.0237762257, 0)
15
Frame.Size = UDim2.new(0.129513338, 0, 0.227972031, 0)
16
17
TextButton.Parent = Frame
18
TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
19
TextButton.BackgroundTransparency = 1.000
20
TextButton.Size = UDim2.new(1, 0, 1, 0)
21
TextButton.Font = Enum.Font.SourceSans
22
TextButton.Text = "+"
23
TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
24
TextButton.TextScaled = true
25
TextButton.TextSize = 50.000
26
TextButton.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
27
TextButton.TextStrokeTransparency = 0.000
28
TextButton.TextWrapped = true
29
TextButton.MouseButton1Down:Connect(function()
30
game:GetService("VirtualInputManager"):SendKeyEvent(true, "K" , false , game)
31
end)
32
33
UITextSizeConstraint.Parent = TextButton
34
UITextSizeConstraint.MaxTextSize = 30
35
36
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
37
38
local ScreenGui = Instance.new("ScreenGui")
39
local Frame = Instance.new("Frame")
40
local TextButton = Instance.new("TextButton")
41
local UITextSizeConstraint = Instance.new("UITextSizeConstraint")
42
43
--Properties:
44
45
ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
46
ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
47
48
Frame.Parent = ScreenGui
49
Frame.BackgroundColor3 = Color3.fromRGB(26, 26, 26)
50
Frame.BackgroundTransparency = 0.500
51
Frame.Position = UDim2.new(0.858712733, 0, 0.0237762257, 0)
52
Frame.Size = UDim2.new(0.129513338, 0, 0.227972031, 0)
53
54
TextButton.Parent = Frame
55
TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
56
TextButton.BackgroundTransparency = 1.000
57
TextButton.Size = UDim2.new(1, 0, 1, 0)
58
TextButton.Font = Enum.Font.SourceSans
59
TextButton.Text = "+"
60
TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
61
TextButton.TextScaled = true
62
TextButton.TextSize = 50.000
63
TextButton.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
64
TextButton.TextStrokeTransparency = 0.000
65
TextButton.TextWrapped = true
66
TextButton.MouseButton1Down:Connect(function()
67
game:GetService("VirtualInputManager"):SendKeyEvent(true, "K" , false , game)
68
end)
69
70
UITextSizeConstraint.Parent = TextButton
71
UITextSizeConstraint.MaxTextSize = 30
72
73
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
74
75
local Window = Rayfield:CreateWindow({
76
Name = "da hood script",
77
LoadingTitle = "scripts",
78
LoadingSubtitle = "by scarletbackup#3582",
79
ConfigurationSaving = {
80
Enabled = true,
81
FolderName = nil, -- Create a custom folder for your hub/game
82
FileName = "Big Hub"
83
},
84
Discord = {
85
Enabled = true,
86
Invite = "https://discord.gg/pTmc8uEqJr", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
87
RememberJoins = true -- Set this to false to make them join the discord every time they load it up
88
},
89
KeySystem = true, -- Set this to true to use our key system
90
KeySettings = {
91
Title = "da hood script",
92
Subtitle = "Key System",
93
Note = "to get key from https://discord.gg/pTmc8uEqJr",
94
FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
95
SaveKey = false, -- The user's key will be saved, but if you change the key, they will be unable to use your script
96
GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
97
Key = {"mommy_scarlet"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
98
}
99
})
100
101
local Tab = Window:CreateTab("home", 4483362458) -- Title, Image
102
103
local Section = Tab:CreateSection("script made by scarletbackup#3582")
104
105
local Section = Tab:CreateSection("discord server https://discord.gg/pTmc8uEqJr")
106
107
local Button = Tab:CreateButton({
108
Name = "not done yet",
109
Callback = function()
110
111
end,
112
})
113
114
loadstring(game:HttpGet("https://pastebin.com/raw/1Gp9c57U"))()
115
116
local Keybind = Tab:CreateKeybind({
117
Name = "",
118
CurrentKeybind = "Q",
119
HoldToInteract = false,
120
Flag = "Keybind1", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
121
Callback = function(Keybind)
122
-- The function that takes place when the keybind is pressed
123
-- The variable (Keybind) is a boolean for whether the keybind is being held or not (HoldToInteract needs to be true)
124
end,
125
})