0% found this document useful (0 votes)
32 views16 pages

NLH Game Script with Custom Features

The document is a Lua script for a game interface that allows users to manipulate game mechanics such as infinite jump, walk speed, and jump power. It includes a user interface with buttons, sliders, and notifications, as well as a Discord integration for community engagement. The script also contains sections for teleportation and miscellaneous features, although some functionalities are noted as non-operational.

Uploaded by

bilenkod40
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)
32 views16 pages

NLH Game Script with Custom Features

The document is a Lua script for a game interface that allows users to manipulate game mechanics such as infinite jump, walk speed, and jump power. It includes a user interface with buttons, sliders, and notifications, as well as a Discord integration for community engagement. The script also contains sections for teleportation and miscellaneous features, although some functionalities are noted as non-operational.

Uploaded by

bilenkod40
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

local Rayfield = loadstring(game:HttpGet('[Link]

menu/rayfield'))()

local Window = Rayfield:CreateWindow({


Name = "🔥 NO LIFE HACKS | Game 🔫",
LoadingTitle = "🔫 NLH 💥",
LoadingSubtitle = "by NOLIFERYESPED",
ConfigurationSaving = {
Enabled = false,
FolderName = nil, -- Create a custom folder for your hub/game
FileName = "NLH"
},
Discord = {
Enabled = true,
Invite = "[Link] -- The Discord invite code, do not
include [Link]/. E.g. [Link]/ABCD would be ABCD
RememberJoins = true -- Set this to false to make them join the discord every
time they load it up
},
KeySystem = false, -- Set this to true to use our key system
KeySettings = {
Title = "Key | Youtube Hub",
Subtitle = "Key System",
Note = "Key In Discord Server",
FileName = "YoutubeHubKey1", -- It is recommended to use something unique as
other scripts using Rayfield may overwrite your key file
SaveKey = false, -- The user's key will be saved, but if you change the key,
they will be unable to use your script
GrabKeyFromSite = true, -- If this is true, set Key below to the RAW site you
would like Rayfield to get the key from
Key = {"[Link] -- List of keys that will be
accepted by the system, can be RAW file links (pastebin, github etc) or simple
strings ("hello","key22")
}
})

local MainTab = Window:CreateTab("🏠 Home", nil) -- Title, Image


local MainSection = MainTab:CreateSection("Main")

Rayfield:Notify({
Title = "You executed the script",
Content = "Thanks for using",
Duration = 5,
Image = 13047715178,
Actions = { -- Notification Buttons
Ignore = {
Name = "Okay!",
Callback = function()
print("The user tapped Okay!")
end
},
},
})

local Button = MainTab:CreateButton({


Name = "Infinite Jump Toggle",
Callback = function()
--Toggles the infinite jump between on or off on every script run
_G.infinjump = not _G.infinjump
if _G.infinJumpStarted == nil then
--Ensures this only runs once to save resources
_G.infinJumpStarted = true

--Notifies readiness
[Link]:SetCore("SendNotification", {Title="Join the dc";
Text="Infinite Jump Activated!"; Duration=5;})

--The actual infinite jump


local plr = game:GetService('Players').LocalPlayer
local m = plr:GetMouse()
[Link]:connect(function(k)
if _G.infinjump then
if k:byte() == 32 then
humanoid =
game:GetService'Players'.[Link]:FindFirstChildOfClass('Humanoid')
humanoid:ChangeState('Jumping')
wait()
humanoid:ChangeState('Seated')
end
end
end)
end
end,
})

local Slider = MainTab:CreateSlider({


Name = "WalkSpeed Slider",
Range = {1, 350},
Increment = 1,
Suffix = "Speed",
CurrentValue = 16,
Flag = "sliderws", -- 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
Callback = function(Value)
[Link] = (Value)
end,
})

local Slider = MainTab:CreateSlider({


Name = "JumpPower Slider",
Range = {1, 350},
Increment = 1,
Suffix = "Speed",
CurrentValue = 16,
Flag = "sliderjp", -- 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
Callback = function(Value)
[Link] = (Value)
end,
})

local Dropdown = MainTab:CreateDropdown({


Name = "Select Area Wont Work",
Options = {"Starter World","Pirate Island","Pineapple Paradise"},
CurrentOption = {"Starter World"},
MultipleOptions = false,
Flag = "dropdownarea", -- 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
Callback = function(Option)
print(Option)
end,
})

local Input = MainTab:CreateInput({


Name = "Walkspeed",
PlaceholderText = "1-500",
RemoveTextAfterFocusLost = true,
Callback = function(Text)
[Link] = (Text)
end,
})

local OtherSection = MainTab:CreateSection("Other")

local Toggle = MainTab:CreateToggle({


Name = "Auto Farm Does not Work",
CurrentValue = false,
Flag = "Toggle1", -- 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
Callback = function(Value)
print("FARMING")
end,
})

local TPTab = Window:CreateTab("🏝 Teleports does not Work", nil) -- Title, Image

local Button1 = TPTab:CreateButton({


Name = "Starter Island",
Callback = function()
--Teleport1
end,
})

local Button2 = TPTab:CreateButton({


Name = "Pirate Island",
Callback = function()
--Teleport2
end,
})

local Button3 = TPTab:CreateButton({


Name = "Pineapple Paradise",
Callback = function()
--Teleport3
end,
})

local TPTab = Window:CreateTab("🎲 Misc", nil) -- Title, Image

local Button1 = TPTab:CreateButton({


Name = "AIM BOT",
Callback = function()
--Teleport1
-- Gui to Lua
-- Version: 3.2

-- Instances:

local ScreenGui = [Link]("ScreenGui")


local CheatFreddyOpen = [Link]("Frame")
local Frame = [Link]("Frame")
local UICorner = [Link]("UICorner")
local ImageLabel = [Link]("ImageLabel")
local SpeedFrame = [Link]("Frame")
local TextBox = [Link]("TextBox")
local UICorner_2 = [Link]("UICorner")
local UICorner_3 = [Link]("UICorner")
local TextButton = [Link]("TextButton")
local UICorner_4 = [Link]("UICorner")
local TextButton_2 = [Link]("TextButton")
local UICorner_5 = [Link]("UICorner")
local JumpFrame = [Link]("Frame")
local TextBox_2 = [Link]("TextBox")
local UICorner_6 = [Link]("UICorner")
local UICorner_7 = [Link]("UICorner")
local TextButton_3 = [Link]("TextButton")
local UICorner_8 = [Link]("UICorner")
local TextButton_4 = [Link]("TextButton")
local UICorner_9 = [Link]("UICorner")
local Frame_2 = [Link]("Frame")
local TextButton_5 = [Link]("TextButton")
local UICorner_10 = [Link]("UICorner")
local button = [Link]("TextButton")
local UICorner_11 = [Link]("UICorner")
local TextButton_6 = [Link]("TextButton")
local UICorner_12 = [Link]("UICorner")
local UIListLayout = [Link]("UIListLayout")
local Label = [Link]("TextLabel")
local UICorner_13 = [Link]("UICorner")
local E = [Link]("TextButton")
local Frame_3 = [Link]("Frame")
local UICorner_14 = [Link]("UICorner")
local Frame_4 = [Link]("Frame")
local TextLabel = [Link]("TextLabel")
local UIGradient = [Link]("UIGradient")
local UICorner_15 = [Link]("UICorner")
local Frame_5 = [Link]("Frame")
local UICorner_16 = [Link]("UICorner")
local TextButton_7 = [Link]("TextButton")
local UICorner_17 = [Link]("UICorner")
local TextButton_8 = [Link]("TextButton")
local UICorner_18 = [Link]("UICorner")
local UICorner_19 = [Link]("UICorner")
local TextButton_9 = [Link]("TextButton")
local UICorner_20 = [Link]("UICorner")
local OpenFrameMenu = [Link]("TextButton")
local UICorner_21 = [Link]("UICorner")
local UIGradient_2 = [Link]("UIGradient")

--Properties:

[Link] = [Link]:WaitForChild("PlayerGui")
[Link] = [Link]
[Link] = false

[Link] = "CheatFreddyOpen"
[Link] = ScreenGui
CheatFreddyOpen.BackgroundColor3 = [Link](75, 75, 75)
CheatFreddyOpen.BorderColor3 = [Link](0, 0, 0)
[Link] = 0
[Link] = [Link](0.317277849, 0, 0.0975977108, 0)
[Link] = [Link](0.479822129, 0, 0.584084034, 0)
[Link] = false

[Link] = CheatFreddyOpen
Frame.BackgroundColor3 = [Link](89, 89, 89)
Frame.BorderColor3 = [Link](0, 0, 0)
[Link] = 0
[Link] = [Link](0.0188378375, 0, 0.0190287903, 0)
[Link] = [Link](0.96280843, 0, 0.891593099, 0)

[Link] = [Link](0, 3)
[Link] = Frame

[Link] = Frame
ImageLabel.BackgroundColor3 = [Link](255, 255, 255)
[Link] = 1.000
ImageLabel.BorderColor3 = [Link](0, 0, 0)
[Link] = 0
[Link] = [Link](-0.422429949, 0, -0.220963255, 0)
[Link] = [Link](1.77383184, 0, 1.33313107, 0)
[Link] = "rbxassetid://16046907250"

[Link] = "SpeedFrame"
[Link] = Frame
SpeedFrame.BackgroundColor3 = [Link](89, 89, 89)
[Link] = 0
[Link] = [Link](1.01302087, 0, 0.0816799104, 0)
[Link] = [Link](0.405607581, 0, 0.918320119, 0)
[Link] = false

[Link] = SpeedFrame
TextBox.BackgroundColor3 = [Link](255, 255, 255)
[Link] = 0
[Link] = [Link](0.199396089, 0, 0.209906414, 0)
[Link] = [Link](0.595214069, 0, 0.178812355, 0)
[Link] = [Link]
[Link] = "Enter Speed Here"
[Link] = ""
TextBox.TextColor3 = [Link](0, 0, 0)
[Link] = true
[Link] = 20.000
[Link] = true

UICorner_2.CornerRadius = [Link](0, 4)
UICorner_2.Parent = TextBox

UICorner_3.CornerRadius = [Link](0, 4)
UICorner_3.Parent = SpeedFrame

[Link] = SpeedFrame
[Link] = [Link](0.5, 0.5)
TextButton.BackgroundColor3 = [Link](56, 56, 56)
TextButton.BorderColor3 = [Link](0, 0, 0)
[Link] = 0
[Link] = [Link](0.498590857, 0, 0.920063376, 0)
[Link] = [Link](0.929086745, 0, 0.0980810374, 0)
[Link] = [Link]
[Link] = "Load Speed"
TextButton.TextColor3 = [Link](255, 255, 255)
[Link] = true
[Link] = 14.000
[Link] = true

UICorner_4.CornerRadius = [Link](0, 3)
UICorner_4.Parent = TextButton

TextButton_2.Parent = SpeedFrame
TextButton_2.BackgroundColor3 = [Link](255, 0, 4)
TextButton_2.BorderColor3 = [Link](0, 0, 0)
TextButton_2.BorderSizePixel = 0
TextButton_2.Position = [Link](0.846763849, 0, -0.0226629265, 0)
TextButton_2.Size = [Link](0.153236657, 0, 0.0827887207, 0)
TextButton_2.Font = [Link]
TextButton_2.Text = "X"
TextButton_2.TextColor3 = [Link](0, 0, 0)
TextButton_2.TextScaled = true
TextButton_2.TextSize = 14.000
TextButton_2.TextWrapped = true

UICorner_5.CornerRadius = [Link](0, 4)
UICorner_5.Parent = TextButton_2

[Link] = "JumpFrame"
[Link] = Frame
JumpFrame.BackgroundColor3 = [Link](89, 89, 89)
[Link] = 0
[Link] = [Link](1.03024137, 0, 0.0787966773, 0)
[Link] = [Link](0.405607581, 0, 0.918320119, 0)
[Link] = false

TextBox_2.Parent = JumpFrame
TextBox_2.BackgroundColor3 = [Link](255, 255, 255)
TextBox_2.BorderSizePixel = 0
TextBox_2.Position = [Link](0.199396089, 0, 0.209906414, 0)
TextBox_2.Size = [Link](0.595214069, 0, 0.178812355, 0)
TextBox_2.Font = [Link]
TextBox_2.PlaceholderText = "Enter Jump Here"
TextBox_2.Text = ""
TextBox_2.TextColor3 = [Link](0, 0, 0)
TextBox_2.TextScaled = true
TextBox_2.TextSize = 20.000
TextBox_2.TextWrapped = true

UICorner_6.CornerRadius = [Link](0, 4)
UICorner_6.Parent = TextBox_2

UICorner_7.CornerRadius = [Link](0, 4)
UICorner_7.Parent = JumpFrame
TextButton_3.Parent = JumpFrame
TextButton_3.AnchorPoint = [Link](0.5, 0.5)
TextButton_3.BackgroundColor3 = [Link](56, 56, 56)
TextButton_3.BorderColor3 = [Link](0, 0, 0)
TextButton_3.BorderSizePixel = 0
TextButton_3.Position = [Link](0.498590857, 0, 0.920063376, 0)
TextButton_3.Size = [Link](0.929086745, 0, 0.0980810374, 0)
TextButton_3.Font = [Link]
TextButton_3.Text = "Load Jump"
TextButton_3.TextColor3 = [Link](255, 255, 255)
TextButton_3.TextScaled = true
TextButton_3.TextSize = 14.000
TextButton_3.TextWrapped = true

UICorner_8.CornerRadius = [Link](0, 3)
UICorner_8.Parent = TextButton_3

TextButton_4.Parent = JumpFrame
TextButton_4.BackgroundColor3 = [Link](255, 0, 4)
TextButton_4.BorderColor3 = [Link](0, 0, 0)
TextButton_4.BorderSizePixel = 0
TextButton_4.Position = [Link](0.846763849, 0, -0.0226629265, 0)
TextButton_4.Size = [Link](0.153236657, 0, 0.0827887207, 0)
TextButton_4.Font = [Link]
TextButton_4.Text = "X"
TextButton_4.TextColor3 = [Link](0, 0, 0)
TextButton_4.TextScaled = true
TextButton_4.TextSize = 14.000
TextButton_4.TextWrapped = true

UICorner_9.CornerRadius = [Link](0, 4)
UICorner_9.Parent = TextButton_4

Frame_2.Parent = Frame
Frame_2.BackgroundColor3 = [Link](89, 89, 89)
Frame_2.BackgroundTransparency = 1.000
Frame_2.BorderColor3 = [Link](0, 0, 0)
Frame_2.BorderSizePixel = 0
Frame_2.Position = [Link](0.0188378133, 0, 0.0363283418, 0)
Frame_2.Size = [Link](0.826766729, 0, 0.874293566, 0)

TextButton_5.Parent = Frame_2
TextButton_5.AnchorPoint = [Link](0.5, 0.5)
TextButton_5.BackgroundColor3 = [Link](182, 0, 0)
TextButton_5.BorderColor3 = [Link](0, 0, 0)
TextButton_5.BorderSizePixel = 0
TextButton_5.Position = [Link](0.114252336, 0, 0.311115593, 0)
TextButton_5.Size = [Link](0.185046732, 0, 0.0764872506, 0)
TextButton_5.Font = [Link]
TextButton_5.Text = "FLY"
TextButton_5.TextColor3 = [Link](255, 255, 255)
TextButton_5.TextScaled = true
TextButton_5.TextSize = 14.000
TextButton_5.TextWrapped = true

UICorner_10.CornerRadius = [Link](0, 5)
UICorner_10.Parent = TextButton_5

[Link] = "button"
[Link] = Frame_2
[Link] = [Link](0.5, 0.5)
button.BackgroundColor3 = [Link](191, 0, 3)
button.BorderColor3 = [Link](0, 0, 0)
[Link] = 0
[Link] = [Link](0.116121493, 0, 0.0986510143, 0)
[Link] = [Link](0.185046732, 0, 0.0764872506, 0)
[Link] = [Link]
[Link] = "ESP"
button.TextColor3 = [Link](255, 255, 255)
[Link] = true
[Link] = 14.000
[Link] = true

UICorner_11.CornerRadius = [Link](0, 5)
UICorner_11.Parent = button

TextButton_6.Parent = Frame_2
TextButton_6.AnchorPoint = [Link](0.5, 0.5)
TextButton_6.BackgroundColor3 = [Link](182, 0, 0)
TextButton_6.BorderColor3 = [Link](0, 0, 0)
TextButton_6.BorderSizePixel = 0
TextButton_6.Position = [Link](0.560981333, 0, 0.141143933, 0)
TextButton_6.Size = [Link](0.185046732, 0, 0.0764872506, 0)
TextButton_6.Font = [Link]
TextButton_6.Text = "NOCLIP [OFF]"
TextButton_6.TextColor3 = [Link](255, 255, 255)
TextButton_6.TextScaled = true
TextButton_6.TextSize = 14.000
TextButton_6.TextWrapped = true

UICorner_12.CornerRadius = [Link](0, 5)
UICorner_12.Parent = TextButton_6

[Link] = Frame_2
[Link] = [Link]
[Link] = [Link]
[Link] = [Link](0, 6)

[Link] = "Label"
[Link] = Frame_2
[Link] = [Link](0.5, 0.5)
Label.BackgroundColor3 = [Link](255, 0, 4)
Label.BorderColor3 = [Link](0, 0, 0)
[Link] = 0
[Link] = [Link](1.11267984, 0, 0.440577209, 0)
[Link] = [Link](0.149532706, 0, 0.0764872506, 0)
[Link] = [Link]
[Link] = "AIMBOT PRESS TO E"
Label.TextColor3 = [Link](255, 255, 255)
[Link] = true
[Link] = 14.000
[Link] = true

UICorner_13.CornerRadius = [Link](0, 4)
UICorner_13.Parent = Label

[Link] = "E"
[Link] = Label
[Link] = [Link](0.5, 0.5)
E.BackgroundColor3 = [Link](0, 0, 0)
E.BorderColor3 = [Link](0, 0, 0)
[Link] = 0
[Link] = [Link](0.494234473, 0, 1.49166548, 0)
[Link] = [Link](0.448912323, 0, 0.518518507, 0)
[Link] = [Link]
[Link] = "E"
E.TextColor3 = [Link](255, 0, 0)
[Link] = true
[Link] = 14.000
[Link] = true

Frame_3.Parent = Frame
Frame_3.BackgroundColor3 = [Link](72, 72, 72)
Frame_3.BorderColor3 = [Link](0, 0, 0)
Frame_3.BorderSizePixel = 0
Frame_3.Position = [Link](0, 0, 1.00000012, 0)
Frame_3.Size = [Link](1, 0, 0.0793201551, 0)

UICorner_14.CornerRadius = [Link](0, 4)
UICorner_14.Parent = Frame_3

Frame_4.Parent = Frame_3
Frame_4.BackgroundColor3 = [Link](84, 84, 84)
Frame_4.BackgroundTransparency = 0.000
Frame_4.BorderColor3 = [Link](255, 255, 255)
Frame_4.BorderSizePixel = 0
Frame_4.Position = [Link](0, 0, -5.44956777e-07, 0)
Frame_4.Size = [Link](0.310280383, 0, 1.00000191, 0)

[Link] = Frame_4
TextLabel.BackgroundColor3 = [Link](255, 255, 255)
[Link] = 1.000
TextLabel.BorderColor3 = [Link](0, 0, 0)
[Link] = 0
[Link] = [Link](0, 0, 1.00000107, 0)
[Link] = [Link](0.672439456, 0, -0.999998987, 0)
[Link] = [Link]
[Link] = "By NO LIFE HACKS"
TextLabel.TextColor3 = [Link](255, 255, 255)
[Link] = true
[Link] = 14.000
[Link] = true

[Link] = [Link]{[Link](0.00,
[Link](58, 48, 108)), [Link](0.15, [Link](93,
72, 209)), [Link](0.81, [Link](138, 123, 255)),
[Link](1.00, [Link](49, 45, 97))}
[Link] = 90
[Link] = TextLabel

UICorner_15.CornerRadius = [Link](0, 4)
UICorner_15.Parent = Frame_4

Frame_5.Parent = Frame
Frame_5.BackgroundColor3 = [Link](72, 72, 72)
Frame_5.BorderColor3 = [Link](0, 0, 0)
Frame_5.BorderSizePixel = 0
Frame_5.Position = [Link](-0.0195655618, 0, -0.0433871597, 0)
Frame_5.Size = [Link](1.03862834, 0, 0.0616677515, 0)

UICorner_16.CornerRadius = [Link](0, 4)
UICorner_16.Parent = Frame_5

TextButton_7.Parent = Frame
TextButton_7.AnchorPoint = [Link](0.5, 0.5)
TextButton_7.BackgroundColor3 = [Link](54, 54, 54)
TextButton_7.BorderColor3 = [Link](0, 0, 0)
TextButton_7.BorderSizePixel = 0
TextButton_7.Position = [Link](0.880995691, 0, 0.836009622, 0)
TextButton_7.Size = [Link](0.185046732, 0, 0.0764872506, 0)
TextButton_7.Font = [Link]
TextButton_7.Text = "Set Speed"
TextButton_7.TextColor3 = [Link](255, 255, 255)
TextButton_7.TextScaled = true
TextButton_7.TextSize = 14.000
TextButton_7.TextWrapped = true

UICorner_17.CornerRadius = [Link](0, 5)
UICorner_17.Parent = TextButton_7

TextButton_8.Parent = Frame
TextButton_8.AnchorPoint = [Link](0.5, 0.5)
TextButton_8.BackgroundColor3 = [Link](56, 56, 56)
TextButton_8.BorderColor3 = [Link](0, 0, 0)
TextButton_8.BorderSizePixel = 0
TextButton_8.Position = [Link](0.880995691, 0, 0.929493964, 0)
TextButton_8.Size = [Link](0.185046732, 0, 0.0764872506, 0)
TextButton_8.Font = [Link]
TextButton_8.Text = "Set Jump"
TextButton_8.TextColor3 = [Link](255, 255, 255)
TextButton_8.TextScaled = true
TextButton_8.TextSize = 14.000
TextButton_8.TextWrapped = true

UICorner_18.CornerRadius = [Link](0, 5)
UICorner_18.Parent = TextButton_8

UICorner_19.CornerRadius = [Link](0, 3)
UICorner_19.Parent = CheatFreddyOpen

TextButton_9.Parent = CheatFreddyOpen
TextButton_9.BackgroundColor3 = [Link](255, 0, 4)
TextButton_9.BorderColor3 = [Link](0, 0, 0)
TextButton_9.BorderSizePixel = 0
TextButton_9.Position = [Link](0.936769843, 0, 0.928501368, 0)
TextButton_9.Size = [Link](0.0445394441, 0, 0.0513445362, 0)
TextButton_9.Font = [Link]
TextButton_9.Text = "X"
TextButton_9.TextColor3 = [Link](0, 0, 0)
TextButton_9.TextScaled = true
TextButton_9.TextSize = 14.000
TextButton_9.TextWrapped = true

UICorner_20.CornerRadius = [Link](0, 4)
UICorner_20.Parent = TextButton_9
[Link] = "OpenFrameMenu"
[Link] = ScreenGui
OpenFrameMenu.BackgroundColor3 = [Link](255, 255, 255)
OpenFrameMenu.BorderColor3 = [Link](0, 0, 0)
[Link] = 0
[Link] = [Link](0.0639893338, 0, 0.478795797, 0)
[Link] = [Link](0.058020778, 0, 0.0395835452, 0)
[Link] = [Link]
[Link] = "Open"
OpenFrameMenu.TextColor3 = [Link](0, 0, 0)
[Link] = true
[Link] = 14.000
[Link] = true

UICorner_21.CornerRadius = [Link](0, 4)
UICorner_21.Parent = OpenFrameMenu

UIGradient_2.Color = [Link]{[Link](0.00,
[Link](100, 100, 100)), [Link](1.00, [Link](124,
124, 124))}
UIGradient_2.Parent = OpenFrameMenu

-- Scripts:

local function PRPTX_fake_script() -- [Link]


local script = [Link]('LocalScript', ScreenGui)

Textbutton = [Link]
[Link] = true
[Link] = true
[Link] = true
end
[Link](PRPTX_fake_script)()
local function RIQR_fake_script() -- [Link]
local script = [Link]('LocalScript', TextButton)

[Link].MouseButton1Click:Connect(function()
local player = [Link]
local setspeed = [Link]
local hum = [Link]:WaitForChild([Link]).Humanoid
if hum then
[Link] = setspeed
end
end)
end
[Link](RIQR_fake_script)()
local function YSESSFU_fake_script() -- TextButton_2.LocalScript
local script = [Link]('LocalScript', TextButton_2)

local SpeedFrame = [Link]

[Link].MouseButton1Click:Connect(function()
[Link] = false
end)
end
[Link](YSESSFU_fake_script)()
local function XFUJQXF_fake_script() -- TextButton_3.LocalScript
local script = [Link]('LocalScript', TextButton_3)
[Link].MouseButton1Click:Connect(function()
local player = [Link]
local setspeed = [Link]
local hum = [Link]:WaitForChild([Link]).Humanoid
if hum then
[Link] = setspeed
end
end)
end
[Link](XFUJQXF_fake_script)()
local function DQAV_fake_script() -- TextButton_4.LocalScript
local script = [Link]('LocalScript', TextButton_4)

local SpeedFrame = [Link]

[Link].MouseButton1Click:Connect(function()
[Link] = false
end)
end
[Link](DQAV_fake_script)()
local function EIEL_fake_script() -- TextButton_5.LocalScript
local script = [Link]('LocalScript', TextButton_5)

local isFlying = false


local camera = [Link]
local char = [Link]
local hrp = char:WaitForChild("HumanoidRootPart")

local bodyPos = [Link]("BodyPosition")


[Link] = [Link]()
bodyPos.D = 10
bodyPos.P = 50
[Link] = hrp

local bodyGyro = [Link]("BodyGyro")


[Link] = [Link]()
bodyGyro.D = 10
[Link] = hrp

[Link].MouseButton1Click:Connect(function()
isFlying = not isFlying
end)

[Link].MouseButton2Click:Connect(function()
isFlying = false
end)

game:GetService("RunService").RenderStepped:Connect(function()
if isFlying then
[Link] = [Link]([Link], [Link], [Link])
[Link] = [Link]([Link], [Link], [Link])
[Link] = [Link] +(([Link] -
[Link]).Unit * 10)
[Link] = [Link]([Link],
[Link])
else
[Link] = [Link]()
[Link] = [Link]()
end
end)
end
[Link](EIEL_fake_script)()
local function DSNFO_fake_script() -- [Link]
local script = [Link]('LocalScript', button)

[Link].MouseButton1Click:Connect(function()
while wait(0.5) do
for i, childrik in ipairs(workspace:GetDescendants()) do
if childrik:FindFirstChild("Humanoid") then
if not childrik:FindFirstChild("EspBox") then
if childrik ~= [Link]
then
local esp =
[Link]("BoxHandleAdornment",childrik)
[Link] = childrik
[Link] = 0
[Link] = [Link](4, 5, 1)
[Link] = 0.65
esp.Color3 = [Link](26, 255, 0)
[Link] = true
[Link] = "EspBox"
end
end
end
end
end
end)
end
[Link](DSNFO_fake_script)()
local function AJYQ_fake_script() -- TextButton_6.LocalScript
local script = [Link]('LocalScript', TextButton_6)

local Player = game:GetService("Players").LocalPlayer --Sets up variable for


the Player
local RunService = game:GetService("RunService") --Sets up variable for the
RunService

local isnoclipping = false --Sets the no-clip to initialy false

[Link].MouseButton1Click:Connect(function()
if isnoclipping== true then
isnoclipping=false
[Link] = "NOCLIP [OFF]" --Changes the text to OFF
[Link].BackgroundColor3 = [Link](1, 0, 0) --Bright Red
Color
else
isnoclipping=true
[Link] = "NOCLIP [ON]" --Changes the text to ON
[Link].BackgroundColor3 = [Link](0, 1, 0) --Bright
Green Color
end
end)

[Link]:Connect(function()
if [Link] then
if isnoclipping == true then
for i,v in pairs([Link]:GetDescendants()) do
if v:IsA("BasePart") then
[Link] = false
end
end
end
end
end)
end
[Link](AJYQ_fake_script)()
local function QWXYNOU_fake_script() -- [Link]
local script = [Link]('LocalScript', E)

local uis = game:GetService("UserInputService")

local localplayer = [Link]


local char = [Link] or [Link]:Wait()

local enabler = [Link]


local enabled = false

local camera = [Link]


local mouse = localplayer:GetMouse()

function enabledisable()
if enabled == false then
enabled = true
enabler.TextColor3 = [Link](0, 255, 0)
else
enabled = false
enabler.TextColor3 = [Link](255, 0, 0)
end
end

[Link]:Connect(function(input, processed)
if not processed then
if [Link] == [Link].E then
enabledisable()
end
end
end)

[Link]:Connect(function()
enabledisable()
end)

game["Run Service"].Stepped:Connect(function()
if enabled == true then
for _, player in pairs([Link]:GetPlayers()) do
if player ~= localplayer and [Link] and
[Link]:FindFirstChild("Humanoid") and [Link] >
0 then
local screenPos, onScreen =
camera:WorldToScreenPoint([Link])

if onScreen then
local mousepos = uis:GetMouseLocation()

local screenPosVector =
[Link](screenPos.X, screenPos.Y)
local distance = (screenPosVector -
mousepos).Magnitude

if distance < 125 then

local direction =
([Link] - [Link]).Unit
* 1000

local raycastParams = [Link]()


[Link]
= {char}

local result =
workspace:Raycast([Link],direction, raycastParams)

if result then
if
[Link]:GetPlayerFromCharacter([Link]) then
[Link] =
[Link]([Link], [Link])
end
end
end
end
end
end
end
end)

end
[Link](QWXYNOU_fake_script)()
local function HNZI_fake_script() -- TextButton_7.Script
local script = [Link]('Script', TextButton_7)

local SpeedFrame = [Link]

[Link].MouseButton1Click:Connect(function()
[Link] = true
end)

end
[Link](HNZI_fake_script)()
local function QYNCJBV_fake_script() -- TextButton_8.Script
local script = [Link]('Script', TextButton_8)

local JumpFrame = [Link]

[Link].MouseButton1Click:Connect(function()
[Link] = true
end)

end
[Link](QYNCJBV_fake_script)()
local function HHDP_fake_script() -- TextButton_9.LocalScript
local script = [Link]('LocalScript', TextButton_9)

local frame = [Link]


[Link].MouseButton1Click:Connect(function()
[Link] = false
end)
end
[Link](HHDP_fake_script)()
local function AWRLPD_fake_script() -- [Link]
local script = [Link]('LocalScript', OpenFrameMenu)

local CheatFreddyOpen = [Link]

[Link].MouseButton1Click:Connect(function()
[Link] = true
end)

end
[Link](AWRLPD_fake_script)()
local function IKRYFST_fake_script() -- [Link]
local script = [Link]('LocalScript', ScreenGui)

frame = [Link]
[Link] = true
[Link] = true
[Link] = true
end
[Link](IKRYFST_fake_script)()
end,
})

You might also like