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

Main Lua

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)
5 views16 pages

Main Lua

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
You are on page 1/ 16

local Rayfield = loadstring(game:HttpGet('https://sirius.

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 = "https://discord.gg/t8wd94E9zQ", -- The Discord invite code, do not
include discord.gg/. E.g. discord.gg/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 = {"https://pastebin.com/raw/AtgzSPWK"} -- 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
game.StarterGui: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()
m.KeyDown:connect(function(k)
if _G.infinjump then
if k:byte() == 32 then
humanoid =
game:GetService'Players'.LocalPlayer.Character: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)
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (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)
game.Players.LocalPlayer.Character.Humanoid.JumpPower = (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)
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = (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 = Instance.new("ScreenGui")


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

--Properties:

ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
ScreenGui.ResetOnSpawn = false

CheatFreddyOpen.Name = "CheatFreddyOpen"
CheatFreddyOpen.Parent = ScreenGui
CheatFreddyOpen.BackgroundColor3 = Color3.fromRGB(75, 75, 75)
CheatFreddyOpen.BorderColor3 = Color3.fromRGB(0, 0, 0)
CheatFreddyOpen.BorderSizePixel = 0
CheatFreddyOpen.Position = UDim2.new(0.317277849, 0, 0.0975977108, 0)
CheatFreddyOpen.Size = UDim2.new(0.479822129, 0, 0.584084034, 0)
CheatFreddyOpen.Visible = false

Frame.Parent = CheatFreddyOpen
Frame.BackgroundColor3 = Color3.fromRGB(89, 89, 89)
Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
Frame.BorderSizePixel = 0
Frame.Position = UDim2.new(0.0188378375, 0, 0.0190287903, 0)
Frame.Size = UDim2.new(0.96280843, 0, 0.891593099, 0)

UICorner.CornerRadius = UDim.new(0, 3)
UICorner.Parent = Frame

ImageLabel.Parent = Frame
ImageLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
ImageLabel.BackgroundTransparency = 1.000
ImageLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
ImageLabel.BorderSizePixel = 0
ImageLabel.Position = UDim2.new(-0.422429949, 0, -0.220963255, 0)
ImageLabel.Size = UDim2.new(1.77383184, 0, 1.33313107, 0)
ImageLabel.Image = "rbxassetid://16046907250"

SpeedFrame.Name = "SpeedFrame"
SpeedFrame.Parent = Frame
SpeedFrame.BackgroundColor3 = Color3.fromRGB(89, 89, 89)
SpeedFrame.BorderSizePixel = 0
SpeedFrame.Position = UDim2.new(1.01302087, 0, 0.0816799104, 0)
SpeedFrame.Size = UDim2.new(0.405607581, 0, 0.918320119, 0)
SpeedFrame.Visible = false

TextBox.Parent = SpeedFrame
TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextBox.BorderSizePixel = 0
TextBox.Position = UDim2.new(0.199396089, 0, 0.209906414, 0)
TextBox.Size = UDim2.new(0.595214069, 0, 0.178812355, 0)
TextBox.Font = Enum.Font.SciFi
TextBox.PlaceholderText = "Enter Speed Here"
TextBox.Text = ""
TextBox.TextColor3 = Color3.fromRGB(0, 0, 0)
TextBox.TextScaled = true
TextBox.TextSize = 20.000
TextBox.TextWrapped = true

UICorner_2.CornerRadius = UDim.new(0, 4)
UICorner_2.Parent = TextBox

UICorner_3.CornerRadius = UDim.new(0, 4)
UICorner_3.Parent = SpeedFrame

TextButton.Parent = SpeedFrame
TextButton.AnchorPoint = Vector2.new(0.5, 0.5)
TextButton.BackgroundColor3 = Color3.fromRGB(56, 56, 56)
TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
TextButton.BorderSizePixel = 0
TextButton.Position = UDim2.new(0.498590857, 0, 0.920063376, 0)
TextButton.Size = UDim2.new(0.929086745, 0, 0.0980810374, 0)
TextButton.Font = Enum.Font.RobotoCondensed
TextButton.Text = "Load Speed"
TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
TextButton.TextScaled = true
TextButton.TextSize = 14.000
TextButton.TextWrapped = true

UICorner_4.CornerRadius = UDim.new(0, 3)
UICorner_4.Parent = TextButton

TextButton_2.Parent = SpeedFrame
TextButton_2.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
TextButton_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
TextButton_2.BorderSizePixel = 0
TextButton_2.Position = UDim2.new(0.846763849, 0, -0.0226629265, 0)
TextButton_2.Size = UDim2.new(0.153236657, 0, 0.0827887207, 0)
TextButton_2.Font = Enum.Font.RobotoCondensed
TextButton_2.Text = "X"
TextButton_2.TextColor3 = Color3.fromRGB(0, 0, 0)
TextButton_2.TextScaled = true
TextButton_2.TextSize = 14.000
TextButton_2.TextWrapped = true

UICorner_5.CornerRadius = UDim.new(0, 4)
UICorner_5.Parent = TextButton_2

JumpFrame.Name = "JumpFrame"
JumpFrame.Parent = Frame
JumpFrame.BackgroundColor3 = Color3.fromRGB(89, 89, 89)
JumpFrame.BorderSizePixel = 0
JumpFrame.Position = UDim2.new(1.03024137, 0, 0.0787966773, 0)
JumpFrame.Size = UDim2.new(0.405607581, 0, 0.918320119, 0)
JumpFrame.Visible = false

TextBox_2.Parent = JumpFrame
TextBox_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextBox_2.BorderSizePixel = 0
TextBox_2.Position = UDim2.new(0.199396089, 0, 0.209906414, 0)
TextBox_2.Size = UDim2.new(0.595214069, 0, 0.178812355, 0)
TextBox_2.Font = Enum.Font.SciFi
TextBox_2.PlaceholderText = "Enter Jump Here"
TextBox_2.Text = ""
TextBox_2.TextColor3 = Color3.fromRGB(0, 0, 0)
TextBox_2.TextScaled = true
TextBox_2.TextSize = 20.000
TextBox_2.TextWrapped = true

UICorner_6.CornerRadius = UDim.new(0, 4)
UICorner_6.Parent = TextBox_2

UICorner_7.CornerRadius = UDim.new(0, 4)
UICorner_7.Parent = JumpFrame
TextButton_3.Parent = JumpFrame
TextButton_3.AnchorPoint = Vector2.new(0.5, 0.5)
TextButton_3.BackgroundColor3 = Color3.fromRGB(56, 56, 56)
TextButton_3.BorderColor3 = Color3.fromRGB(0, 0, 0)
TextButton_3.BorderSizePixel = 0
TextButton_3.Position = UDim2.new(0.498590857, 0, 0.920063376, 0)
TextButton_3.Size = UDim2.new(0.929086745, 0, 0.0980810374, 0)
TextButton_3.Font = Enum.Font.RobotoCondensed
TextButton_3.Text = "Load Jump"
TextButton_3.TextColor3 = Color3.fromRGB(255, 255, 255)
TextButton_3.TextScaled = true
TextButton_3.TextSize = 14.000
TextButton_3.TextWrapped = true

UICorner_8.CornerRadius = UDim.new(0, 3)
UICorner_8.Parent = TextButton_3

TextButton_4.Parent = JumpFrame
TextButton_4.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
TextButton_4.BorderColor3 = Color3.fromRGB(0, 0, 0)
TextButton_4.BorderSizePixel = 0
TextButton_4.Position = UDim2.new(0.846763849, 0, -0.0226629265, 0)
TextButton_4.Size = UDim2.new(0.153236657, 0, 0.0827887207, 0)
TextButton_4.Font = Enum.Font.RobotoCondensed
TextButton_4.Text = "X"
TextButton_4.TextColor3 = Color3.fromRGB(0, 0, 0)
TextButton_4.TextScaled = true
TextButton_4.TextSize = 14.000
TextButton_4.TextWrapped = true

UICorner_9.CornerRadius = UDim.new(0, 4)
UICorner_9.Parent = TextButton_4

Frame_2.Parent = Frame
Frame_2.BackgroundColor3 = Color3.fromRGB(89, 89, 89)
Frame_2.BackgroundTransparency = 1.000
Frame_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
Frame_2.BorderSizePixel = 0
Frame_2.Position = UDim2.new(0.0188378133, 0, 0.0363283418, 0)
Frame_2.Size = UDim2.new(0.826766729, 0, 0.874293566, 0)

TextButton_5.Parent = Frame_2
TextButton_5.AnchorPoint = Vector2.new(0.5, 0.5)
TextButton_5.BackgroundColor3 = Color3.fromRGB(182, 0, 0)
TextButton_5.BorderColor3 = Color3.fromRGB(0, 0, 0)
TextButton_5.BorderSizePixel = 0
TextButton_5.Position = UDim2.new(0.114252336, 0, 0.311115593, 0)
TextButton_5.Size = UDim2.new(0.185046732, 0, 0.0764872506, 0)
TextButton_5.Font = Enum.Font.RobotoCondensed
TextButton_5.Text = "FLY"
TextButton_5.TextColor3 = Color3.fromRGB(255, 255, 255)
TextButton_5.TextScaled = true
TextButton_5.TextSize = 14.000
TextButton_5.TextWrapped = true

UICorner_10.CornerRadius = UDim.new(0, 5)
UICorner_10.Parent = TextButton_5

button.Name = "button"
button.Parent = Frame_2
button.AnchorPoint = Vector2.new(0.5, 0.5)
button.BackgroundColor3 = Color3.fromRGB(191, 0, 3)
button.BorderColor3 = Color3.fromRGB(0, 0, 0)
button.BorderSizePixel = 0
button.Position = UDim2.new(0.116121493, 0, 0.0986510143, 0)
button.Size = UDim2.new(0.185046732, 0, 0.0764872506, 0)
button.Font = Enum.Font.RobotoCondensed
button.Text = "ESP"
button.TextColor3 = Color3.fromRGB(255, 255, 255)
button.TextScaled = true
button.TextSize = 14.000
button.TextWrapped = true

UICorner_11.CornerRadius = UDim.new(0, 5)
UICorner_11.Parent = button

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

UICorner_12.CornerRadius = UDim.new(0, 5)
UICorner_12.Parent = TextButton_6

UIListLayout.Parent = Frame_2
UIListLayout.FillDirection = Enum.FillDirection.Horizontal
UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
UIListLayout.Padding = UDim.new(0, 6)

Label.Name = "Label"
Label.Parent = Frame_2
Label.AnchorPoint = Vector2.new(0.5, 0.5)
Label.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
Label.BorderColor3 = Color3.fromRGB(0, 0, 0)
Label.BorderSizePixel = 0
Label.Position = UDim2.new(1.11267984, 0, 0.440577209, 0)
Label.Size = UDim2.new(0.149532706, 0, 0.0764872506, 0)
Label.Font = Enum.Font.RobotoCondensed
Label.Text = "AIMBOT PRESS TO E"
Label.TextColor3 = Color3.fromRGB(255, 255, 255)
Label.TextScaled = true
Label.TextSize = 14.000
Label.TextWrapped = true

UICorner_13.CornerRadius = UDim.new(0, 4)
UICorner_13.Parent = Label

E.Name = "E"
E.Parent = Label
E.AnchorPoint = Vector2.new(0.5, 0.5)
E.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
E.BorderColor3 = Color3.fromRGB(0, 0, 0)
E.BorderSizePixel = 0
E.Position = UDim2.new(0.494234473, 0, 1.49166548, 0)
E.Size = UDim2.new(0.448912323, 0, 0.518518507, 0)
E.Font = Enum.Font.RobotoCondensed
E.Text = "E"
E.TextColor3 = Color3.fromRGB(255, 0, 0)
E.TextScaled = true
E.TextSize = 14.000
E.TextWrapped = true

Frame_3.Parent = Frame
Frame_3.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
Frame_3.BorderColor3 = Color3.fromRGB(0, 0, 0)
Frame_3.BorderSizePixel = 0
Frame_3.Position = UDim2.new(0, 0, 1.00000012, 0)
Frame_3.Size = UDim2.new(1, 0, 0.0793201551, 0)

UICorner_14.CornerRadius = UDim.new(0, 4)
UICorner_14.Parent = Frame_3

Frame_4.Parent = Frame_3
Frame_4.BackgroundColor3 = Color3.fromRGB(84, 84, 84)
Frame_4.BackgroundTransparency = 0.000
Frame_4.BorderColor3 = Color3.fromRGB(255, 255, 255)
Frame_4.BorderSizePixel = 0
Frame_4.Position = UDim2.new(0, 0, -5.44956777e-07, 0)
Frame_4.Size = UDim2.new(0.310280383, 0, 1.00000191, 0)

TextLabel.Parent = Frame_4
TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
TextLabel.BackgroundTransparency = 1.000
TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
TextLabel.BorderSizePixel = 0
TextLabel.Position = UDim2.new(0, 0, 1.00000107, 0)
TextLabel.Size = UDim2.new(0.672439456, 0, -0.999998987, 0)
TextLabel.Font = Enum.Font.RobotoCondensed
TextLabel.Text = "By NO LIFE HACKS"
TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
TextLabel.TextScaled = true
TextLabel.TextSize = 14.000
TextLabel.TextWrapped = true

UIGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00,
Color3.fromRGB(58, 48, 108)), ColorSequenceKeypoint.new(0.15, Color3.fromRGB(93,
72, 209)), ColorSequenceKeypoint.new(0.81, Color3.fromRGB(138, 123, 255)),
ColorSequenceKeypoint.new(1.00, Color3.fromRGB(49, 45, 97))}
UIGradient.Rotation = 90
UIGradient.Parent = TextLabel

UICorner_15.CornerRadius = UDim.new(0, 4)
UICorner_15.Parent = Frame_4

Frame_5.Parent = Frame
Frame_5.BackgroundColor3 = Color3.fromRGB(72, 72, 72)
Frame_5.BorderColor3 = Color3.fromRGB(0, 0, 0)
Frame_5.BorderSizePixel = 0
Frame_5.Position = UDim2.new(-0.0195655618, 0, -0.0433871597, 0)
Frame_5.Size = UDim2.new(1.03862834, 0, 0.0616677515, 0)

UICorner_16.CornerRadius = UDim.new(0, 4)
UICorner_16.Parent = Frame_5

TextButton_7.Parent = Frame
TextButton_7.AnchorPoint = Vector2.new(0.5, 0.5)
TextButton_7.BackgroundColor3 = Color3.fromRGB(54, 54, 54)
TextButton_7.BorderColor3 = Color3.fromRGB(0, 0, 0)
TextButton_7.BorderSizePixel = 0
TextButton_7.Position = UDim2.new(0.880995691, 0, 0.836009622, 0)
TextButton_7.Size = UDim2.new(0.185046732, 0, 0.0764872506, 0)
TextButton_7.Font = Enum.Font.RobotoCondensed
TextButton_7.Text = "Set Speed"
TextButton_7.TextColor3 = Color3.fromRGB(255, 255, 255)
TextButton_7.TextScaled = true
TextButton_7.TextSize = 14.000
TextButton_7.TextWrapped = true

UICorner_17.CornerRadius = UDim.new(0, 5)
UICorner_17.Parent = TextButton_7

TextButton_8.Parent = Frame
TextButton_8.AnchorPoint = Vector2.new(0.5, 0.5)
TextButton_8.BackgroundColor3 = Color3.fromRGB(56, 56, 56)
TextButton_8.BorderColor3 = Color3.fromRGB(0, 0, 0)
TextButton_8.BorderSizePixel = 0
TextButton_8.Position = UDim2.new(0.880995691, 0, 0.929493964, 0)
TextButton_8.Size = UDim2.new(0.185046732, 0, 0.0764872506, 0)
TextButton_8.Font = Enum.Font.RobotoCondensed
TextButton_8.Text = "Set Jump"
TextButton_8.TextColor3 = Color3.fromRGB(255, 255, 255)
TextButton_8.TextScaled = true
TextButton_8.TextSize = 14.000
TextButton_8.TextWrapped = true

UICorner_18.CornerRadius = UDim.new(0, 5)
UICorner_18.Parent = TextButton_8

UICorner_19.CornerRadius = UDim.new(0, 3)
UICorner_19.Parent = CheatFreddyOpen

TextButton_9.Parent = CheatFreddyOpen
TextButton_9.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
TextButton_9.BorderColor3 = Color3.fromRGB(0, 0, 0)
TextButton_9.BorderSizePixel = 0
TextButton_9.Position = UDim2.new(0.936769843, 0, 0.928501368, 0)
TextButton_9.Size = UDim2.new(0.0445394441, 0, 0.0513445362, 0)
TextButton_9.Font = Enum.Font.Unknown
TextButton_9.Text = "X"
TextButton_9.TextColor3 = Color3.fromRGB(0, 0, 0)
TextButton_9.TextScaled = true
TextButton_9.TextSize = 14.000
TextButton_9.TextWrapped = true

UICorner_20.CornerRadius = UDim.new(0, 4)
UICorner_20.Parent = TextButton_9
OpenFrameMenu.Name = "OpenFrameMenu"
OpenFrameMenu.Parent = ScreenGui
OpenFrameMenu.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
OpenFrameMenu.BorderColor3 = Color3.fromRGB(0, 0, 0)
OpenFrameMenu.BorderSizePixel = 0
OpenFrameMenu.Position = UDim2.new(0.0639893338, 0, 0.478795797, 0)
OpenFrameMenu.Size = UDim2.new(0.058020778, 0, 0.0395835452, 0)
OpenFrameMenu.Font = Enum.Font.Unknown
OpenFrameMenu.Text = "Open"
OpenFrameMenu.TextColor3 = Color3.fromRGB(0, 0, 0)
OpenFrameMenu.TextScaled = true
OpenFrameMenu.TextSize = 14.000
OpenFrameMenu.TextWrapped = true

UICorner_21.CornerRadius = UDim.new(0, 4)
UICorner_21.Parent = OpenFrameMenu

UIGradient_2.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00,
Color3.fromRGB(100, 100, 100)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(124,
124, 124))}
UIGradient_2.Parent = OpenFrameMenu

-- Scripts:

local function PRPTX_fake_script() -- ScreenGui.LocalScript


local script = Instance.new('LocalScript', ScreenGui)

Textbutton = script.Parent.OpenFrameMenu
Textbutton.Draggable = true
Textbutton.Selectable = true
Textbutton.Active = true
end
coroutine.wrap(PRPTX_fake_script)()
local function RIQR_fake_script() -- TextButton.LocalScript
local script = Instance.new('LocalScript', TextButton)

script.Parent.MouseButton1Click:Connect(function()
local player = game.Players.LocalPlayer
local setspeed = script.Parent.Parent.TextBox.Text
local hum = game.Workspace:WaitForChild(player.Name).Humanoid
if hum then
hum.WalkSpeed = setspeed
end
end)
end
coroutine.wrap(RIQR_fake_script)()
local function YSESSFU_fake_script() -- TextButton_2.LocalScript
local script = Instance.new('LocalScript', TextButton_2)

local SpeedFrame = script.Parent.Parent

script.Parent.MouseButton1Click:Connect(function()
SpeedFrame.Visible = false
end)
end
coroutine.wrap(YSESSFU_fake_script)()
local function XFUJQXF_fake_script() -- TextButton_3.LocalScript
local script = Instance.new('LocalScript', TextButton_3)
script.Parent.MouseButton1Click:Connect(function()
local player = game.Players.LocalPlayer
local setspeed = script.Parent.Parent.TextBox.Text
local hum = game.Workspace:WaitForChild(player.Name).Humanoid
if hum then
hum.JumpPower = setspeed
end
end)
end
coroutine.wrap(XFUJQXF_fake_script)()
local function DQAV_fake_script() -- TextButton_4.LocalScript
local script = Instance.new('LocalScript', TextButton_4)

local SpeedFrame = script.Parent.Parent

script.Parent.MouseButton1Click:Connect(function()
SpeedFrame.Visible = false
end)
end
coroutine.wrap(DQAV_fake_script)()
local function EIEL_fake_script() -- TextButton_5.LocalScript
local script = Instance.new('LocalScript', TextButton_5)

local isFlying = false


local camera = workspace.CurrentCamera
local char = game.Players.LocalPlayer.Character
local hrp = char:WaitForChild("HumanoidRootPart")

local bodyPos = Instance.new("BodyPosition")


bodyPos.MaxForce = Vector3.new()
bodyPos.D = 10
bodyPos.P = 50
bodyPos.Parent = hrp

local bodyGyro = Instance.new("BodyGyro")


bodyGyro.MaxTorque = Vector3.new()
bodyGyro.D = 10
bodyGyro.Parent = hrp

script.Parent.MouseButton1Click:Connect(function()
isFlying = not isFlying
end)

script.Parent.MouseButton2Click:Connect(function()
isFlying = false
end)

game:GetService("RunService").RenderStepped:Connect(function()
if isFlying then
bodyPos.MaxForce = Vector3.new(math.huge, math.huge, math.huge)
bodyGyro.MaxTorque = Vector3.new(math.huge, math.huge, math.huge)
bodyPos.Position = hrp.Position +((hrp.Position -
camera.CFrame.Position).Unit * 10)
bodyGyro.CFrame = CFrame.new(camera.CFrame.Position,
hrp.Position)
else
bodyPos.MaxForce = Vector3.new()
bodyGyro.MaxTorque = Vector3.new()
end
end)
end
coroutine.wrap(EIEL_fake_script)()
local function DSNFO_fake_script() -- button.enabler
local script = Instance.new('LocalScript', button)

script.Parent.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 ~= game.Players.LocalPlayer.Character
then
local esp =
Instance.new("BoxHandleAdornment",childrik)
esp.Adornee = childrik
esp.ZIndex = 0
esp.Size = Vector3.new(4, 5, 1)
esp.Transparency = 0.65
esp.Color3 = Color3.fromRGB(26, 255, 0)
esp.AlwaysOnTop = true
esp.Name = "EspBox"
end
end
end
end
end
end)
end
coroutine.wrap(DSNFO_fake_script)()
local function AJYQ_fake_script() -- TextButton_6.LocalScript
local script = Instance.new('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

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

RunService.Stepped:Connect(function()
if Player.Character then
if isnoclipping == true then
for i,v in pairs(Player.Character:GetDescendants()) do
if v:IsA("BasePart") then
v.CanCollide = false
end
end
end
end
end)
end
coroutine.wrap(AJYQ_fake_script)()
local function QWXYNOU_fake_script() -- E.aimbot
local script = Instance.new('LocalScript', E)

local uis = game:GetService("UserInputService")

local localplayer = game.Players.LocalPlayer


local char = localplayer.Character or localplayer.CharacterAdded:Wait()

local enabler = script.Parent


local enabled = false

local camera = workspace.CurrentCamera


local mouse = localplayer:GetMouse()

function enabledisable()
if enabled == false then
enabled = true
enabler.TextColor3 = Color3.new(0, 255, 0)
else
enabled = false
enabler.TextColor3 = Color3.new(255, 0, 0)
end
end

uis.InputBegan:Connect(function(input, processed)
if not processed then
if input.KeyCode == Enum.KeyCode.E then
enabledisable()
end
end
end)

enabler.Activated:Connect(function()
enabledisable()
end)

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

if onScreen then
local mousepos = uis:GetMouseLocation()

local screenPosVector =
Vector2.new(screenPos.X, screenPos.Y)
local distance = (screenPosVector -
mousepos).Magnitude

if distance < 125 then

local direction =
(player.Character.HumanoidRootPart.Position - char.HumanoidRootPart.Position).Unit
* 1000

local raycastParams = RaycastParams.new()


raycastParams.FilterDescendantsInstances
= {char}

local result =
workspace:Raycast(char.HumanoidRootPart.Position,direction, raycastParams)

if result then
if
game.Players:GetPlayerFromCharacter(result.Instance.Parent) then
camera.CFrame =
CFrame.new(camera.CFrame.Position, player.Character.Head.Position)
end
end
end
end
end
end
end
end)

end
coroutine.wrap(QWXYNOU_fake_script)()
local function HNZI_fake_script() -- TextButton_7.Script
local script = Instance.new('Script', TextButton_7)

local SpeedFrame = script.Parent.Parent.SpeedFrame

script.Parent.MouseButton1Click:Connect(function()
SpeedFrame.Visible = true
end)

end
coroutine.wrap(HNZI_fake_script)()
local function QYNCJBV_fake_script() -- TextButton_8.Script
local script = Instance.new('Script', TextButton_8)

local JumpFrame = script.Parent.Parent.JumpFrame

script.Parent.MouseButton1Click:Connect(function()
JumpFrame.Visible = true
end)

end
coroutine.wrap(QYNCJBV_fake_script)()
local function HHDP_fake_script() -- TextButton_9.LocalScript
local script = Instance.new('LocalScript', TextButton_9)

local frame = script.Parent.Parent


script.Parent.MouseButton1Click:Connect(function()
frame.Visible = false
end)
end
coroutine.wrap(HHDP_fake_script)()
local function AWRLPD_fake_script() -- OpenFrameMenu.LocalScript
local script = Instance.new('LocalScript', OpenFrameMenu)

local CheatFreddyOpen = script.Parent.Parent.CheatFreddyOpen

script.Parent.MouseButton1Click:Connect(function()
CheatFreddyOpen.Visible = true
end)

end
coroutine.wrap(AWRLPD_fake_script)()
local function IKRYFST_fake_script() -- ScreenGui.LocalScript
local script = Instance.new('LocalScript', ScreenGui)

frame = script.Parent.CheatFreddyOpen
frame.Draggable = true
frame.Selectable = true
frame.Active = true
end
coroutine.wrap(IKRYFST_fake_script)()
end,
})

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy