
Seeker vs Hider script: No Clip

Seeker vs Hider script: No Clip
- Author
- Wwordpress-importPublished by
- Access
- KEY SYSTEM
- Published
- Updated
- Views
- 0 views
Script Description
Smart ESP - see players through walls for better awareness Hitbox Expander - enlarges enemy hitboxes to make aiming easier No-Clip - move freely through walls and obstacles Other Options - various extra tools to enhance gameplay Mobile Optimized - works best on mobile devices
Script Functions
5 functions- Smart ESP - see players through walls for better awareness
- Hitbox Expander - enlarges enemy hitboxes to make aiming easier
- No-Clip - move freely through walls and obstacles
- Other Options - various extra tools to enhance gameplay
- Smart ESP - see players through walls for better awareness
- Hitbox Expander - enlarges enemy hitboxes to make aiming easier
- No-Clip - move freely through walls and obstacles
- Other Options - various extra tools to enhance gameplay
- Mobile Optimized - works best on mobile devices
- Smart ESP - see players through walls for better awareness
- Hitbox Expander - enlarges enemy hitboxes to make aiming easier
- No-Clip - move freely through walls and obstacles
- Other Options - various extra tools to enhance gameplay
- Mobile Optimized - works best on mobile devices
Script Code
163 lines · 4.40 KB · LuaReview before running. Use scripts responsibly.
1
local Players = game:GetService("Players")2
local TweenService = game:GetService("TweenService")3
local Lighting = game:GetService("Lighting")4
5
local player = Players.LocalPlayer6
7
-- 🌫️ BLUR EFFECT8
local blur = Instance.new("BlurEffect")9
blur.Size = 010
blur.Parent = Lighting11
TweenService:Create(blur, TweenInfo.new(0.4), {Size = 18}):Play()12
13
-- GUI14
local ScreenGui = Instance.new("ScreenGui")15
ScreenGui.Parent = player:WaitForChild("PlayerGui")16
17
-- MAIN FRAME18
local Frame = Instance.new("Frame", ScreenGui)19
Frame.Size = UDim2.new(0, 380, 0, 240)20
Frame.Position = UDim2.new(0.5, -190, 0.5, -120)21
Frame.BackgroundColor3 = Color3.fromRGB(18,18,22)22
Frame.BorderSizePixel = 023
24
Instance.new("UICorner", Frame).CornerRadius = UDim.new(0, 14)25
26
-- TITLE (CHANGED)27
local Title = Instance.new("TextLabel", Frame)28
Title.Size = UDim2.new(1,0,0,50)29
Title.Text = "full's fast key steps"30
Title.TextColor3 = Color3.fromRGB(255,255,255)31
Title.Font = Enum.Font.GothamBold32
Title.TextSize = 2233
Title.BackgroundTransparency = 134
35
-- SUBTITLE36
local Sub = Instance.new("TextLabel", Frame)37
Sub.Size = UDim2.new(1,0,0,20)38
Sub.Position = UDim2.new(0,0,0,40)39
Sub.Text = "Unlock access with your key"40
Sub.TextColor3 = Color3.fromRGB(140,140,140)41
Sub.Font = Enum.Font.Gotham42
Sub.TextSize = 1443
Sub.BackgroundTransparency = 144
45
-- TEXTBOX46
local TextBox = Instance.new("TextBox", Frame)47
TextBox.Size = UDim2.new(0.85, 0, 0, 42)48
TextBox.Position = UDim2.new(0.075, 0, 0.35, 0)49
TextBox.PlaceholderText = "Enter key..."50
TextBox.Text = ""51
TextBox.BackgroundColor3 = Color3.fromRGB(28,28,34)52
TextBox.TextColor3 = Color3.fromRGB(255,255,255)53
TextBox.Font = Enum.Font.Gotham54
TextBox.TextSize = 1655
56
Instance.new("UICorner", TextBox).CornerRadius = UDim.new(0, 10)57
58
-- VALIDATE BUTTON59
local Validate = Instance.new("TextButton", Frame)60
Validate.Size = UDim2.new(0.85, 0, 0, 42)61
Validate.Position = UDim2.new(0.075, 0, 0.58, 0)62
Validate.Text = "Unlock"63
Validate.BackgroundColor3 = Color3.fromRGB(0, 170, 255)64
Validate.TextColor3 = Color3.new(1,1,1)65
Validate.Font = Enum.Font.GothamBold66
Validate.TextSize = 1667
68
Instance.new("UICorner", Validate).CornerRadius = UDim.new(0, 10)69
70
-- DISCORD BUTTON71
local Discord = Instance.new("TextButton", Frame)72
Discord.Size = UDim2.new(0.85, 0, 0, 32)73
Discord.Position = UDim2.new(0.075, 0, 0.8, 0)74
Discord.Text = "Join our Discord"75
Discord.BackgroundColor3 = Color3.fromRGB(40,40,50)76
Discord.TextColor3 = Color3.fromRGB(200,200,200)77
Discord.Font = Enum.Font.Gotham78
Discord.TextSize = 1479
80
Instance.new("UICorner", Discord).CornerRadius = UDim.new(0, 10)81
82
-- CONFIG83
local validKey = "25042026ROBLOXKEYBYFULL"84
local discordLink = "https://discord.gg/P8ADjxBUVp"85
86
-- NOTIFY87
local function notify(t, txt)88
game.StarterGui:SetCore("SendNotification", {89
Title = t,90
Text = txt,91
Duration = 392
})93
end94
95
-- HOVER EFFECT96
local function hover(btn, color)97
btn.MouseEnter:Connect(function()98
TweenService:Create(btn, TweenInfo.new(0.15), {BackgroundColor3 = color}):Play()99
end)100
btn.MouseLeave:Connect(function()101
TweenService:Create(btn, TweenInfo.new(0.15), {BackgroundColor3 = btn.BackgroundColor3}):Play()102
end)103
end104
105
hover(Validate, Color3.fromRGB(0,200,255))106
hover(Discord, Color3.fromRGB(60,60,70))107
108
-- OPEN ANIMATION109
Frame.Size = UDim2.new(0,0,0,0)110
TweenService:Create(Frame, TweenInfo.new(0.35, Enum.EasingStyle.Back), {111
Size = UDim2.new(0, 380, 0, 240)112
}):Play()113
114
---------------------------------------------------115
-- SCRIPT AREA116
---------------------------------------------------117
local function RunScript()118
119
print("full's fast key steps loaded")120
121
game.StarterGui:SetCore("SendNotification", {122
Title = "Success",123
Text = "Script activated!",124
Duration = 5125
})126
127
loadstring(game:HttpGet("https://pastebin.com/raw/PT0ZrYE4", true))()128
129
end130
131
---------------------------------------------------132
-- KEY SYSTEM133
---------------------------------------------------134
Validate.MouseButton1Click:Connect(function()135
if TextBox.Text == validKey then136
137
notify("Success", "Access Granted")138
139
TweenService:Create(Frame, TweenInfo.new(0.25), {140
Size = UDim2.new(0,0,0,0)141
}):Play()142
143
TweenService:Create(blur, TweenInfo.new(0.3), {Size = 0}):Play()144
145
task.wait(0.3)146
Frame.Visible = false147
148
RunScript()149
else150
notify("Error", "Invalid Key")151
end152
end)153
154
---------------------------------------------------155
-- DISCORD156
---------------------------------------------------157
Discord.MouseButton1Click:Connect(function()158
if setclipboard then159
setclipboard(discordLink)160
end161
162
notify("Discord", "Link copied!")163
end)Change Log
No change log entries yet
Updates from the script author will appear here after edits are published.


Comments
…