0% found this document useful (0 votes)
210 views3 pages

The Rake GUI

This document describes a GUI created for a game called "The Rake" that provides various cheats and modifications to the game. The GUI contains buttons to remove fog, instantly survive encounters with "The Rake" character, destroy map objects, teleport the player to The Rake, and open/close the GUI interface. It was created by a user named "luisninja116" to modify elements of the game.

Uploaded by

Nguyễn Huy
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)
210 views3 pages

The Rake GUI

This document describes a GUI created for a game called "The Rake" that provides various cheats and modifications to the game. The GUI contains buttons to remove fog, instantly survive encounters with "The Rake" character, destroy map objects, teleport the player to The Rake, and open/close the GUI interface. It was created by a user named "luisninja116" to modify elements of the game.

Uploaded by

Nguyễn Huy
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/ 3

-- Farewell Infortality.

-- Version: 2.82
-- Instances:
local TheRakeGUI = Instance.new("ScreenGui")
local frame50 = Instance.new("Frame")
local open = Instance.new("TextButton")
local main = Instance.new("Frame")
local title = Instance.new("TextBox")
local NoFog = Instance.new("TextButton")
local DestroyRake = Instance.new("TextButton")
local credits = Instance.new("TextBox")
local DestroyMapItems = Instance.new("TextButton")
local TPtoRake = Instance.new("TextButton")
local Close = Instance.new("TextButton")
--Properties:
TheRakeGUI.Name = "The Rake GUI"
TheRakeGUI.Parent = game.Workspace

frame50.Name = "frame50"
frame50.Parent = TheRakeGUI
frame50.BackgroundColor3 = Color3.new(1, 1, 1)
frame50.Position = UDim2.new(-0.0128534706, 0, 0.507968068, 0)
frame50.Size = UDim2.new(0, 119, 0, 20)
frame50.Style = Enum.FrameStyle.DropShadow

open.Name = "open"
open.Parent = frame50
open.BackgroundColor3 = Color3.new(0, 0, 0)
open.BorderColor3 = Color3.new(0, 0, 0)
open.Position = UDim2.new(-0.0756302029, 0, -1.10000002, 0)
open.Size = UDim2.new(0, 119, 0, 20)
open.Font = Enum.Font.SourceSans
open.Text = "Open"
open.TextColor3 = Color3.new(1, 0, 0)
open.TextSize = 14
open.TextStrokeColor3 = Color3.new(0.333333, 1, 1)
open.MouseButton1Down:connect(function()
main.Visible = true
frame.Visible = false
end)

main.Name = "main"
main.Parent = frame50
main.BackgroundColor3 = Color3.new(1, 1, 1)
main.Position = UDim2.new(1.16806722, 0, -18.7000008, 0)
main.Size = UDim2.new(0, 561, 0, 254)
main.Visible = false
main.Style = Enum.FrameStyle.DropShadow
main.Active = true
main.Draggable = true

title.Name = "title"
title.Parent = main
title.BackgroundColor3 = Color3.new(0.666667, 0, 0)
title.Position = UDim2.new(-0.0106951874, 0, -0.0354330689, 0)
title.Size = UDim2.new(0, 561, 0, 21)
title.Visible = false
title.Font = Enum.Font.SciFi
title.PlaceholderColor3 = Color3.new(0, 0, 0)
title.Text = "The Rake GUI"
title.TextColor3 = Color3.new(0, 0, 0)
title.TextSize = 14
title.TextStrokeColor3 = Color3.new(1, 0, 0)

NoFog.Name = "No Fog"


NoFog.Parent = main
NoFog.BackgroundColor3 = Color3.new(0, 0, 0)
NoFog.Position = UDim2.new(0.0160427801, 0, 0.110236228, 0)
NoFog.Size = UDim2.new(0, 149, 0, 50)
NoFog.Visible = false
NoFog.Font = Enum.Font.SourceSans
NoFog.Text = "No Fog"
NoFog.TextColor3 = Color3.new(0.666667, 0, 0)
NoFog.TextSize = 30
No Fog.MouseButton1Down:connect(function()
game.Lighting.FogEnd = 999999999
end)

DestroyRake.Name = "Destroy Rake"


DestroyRake.Parent = main
DestroyRake.BackgroundColor3 = Color3.new(0, 0, 0)
DestroyRake.Position = UDim2.new(0.0160427801, 0, 0.511811018, 0)
DestroyRake.Size = UDim2.new(0, 149, 0, 50)
DestroyRake.Visible = false
DestroyRake.Font = Enum.Font.SourceSans
DestroyRake.Text = "Always Survive"
DestroyRake.TextColor3 = Color3.new(0.666667, 0, 0)
DestroyRake.TextSize = 24
Destroy Rake.MouseButton1Down:connect(function()
game.Workspace.Rake:Destroy()
end)

credits.Name = "credits"
credits.Parent = frame50
credits.BackgroundColor3 = Color3.new(0.666667, 0, 0)
credits.Position = UDim2.new(1.18487394, 0, 29.1499996, 0)
credits.Size = UDim2.new(0, 559, 0, 21)
credits.Visible = false
credits.Font = Enum.Font.SciFi
credits.PlaceholderColor3 = Color3.new(0, 0, 0)
credits.Text = "GUI Made By : luisninja116"
credits.TextColor3 = Color3.new(0, 0, 0)
credits.TextSize = 14
credits.TextStrokeColor3 = Color3.new(1, 0, 0)

DestroyMapItems.Name = "Destroy Map Items"


DestroyMapItems.Parent = frame50
DestroyMapItems.BackgroundColor3 = Color3.new(0, 0, 0)
DestroyMapItems.Position = UDim2.new(4.87394953, 0, 8.55000114, 0)
DestroyMapItems.Size = UDim2.new(0, 149, 0, 50)
DestroyMapItems.Visible = false
DestroyMapItems.Font = Enum.Font.SourceSans
DestroyMapItems.Text = "Destroy Map Items"
DestroyMapItems.TextColor3 = Color3.new(0.666667, 0, 0)
DestroyMapItems.TextSize = 22
Destroy Map Items.MouseButton1Down:connect(function()
game.Workspace.Map.InvisibleWalls:Destroy()
game.Workspace.Map.TREES:Destroy()
game.Workspace.Map.Benches:Destroy()
game.Workspace.Map.Other:Destroy()
end)

TPtoRake.Name = "TP to Rake"


TPtoRake.Parent = frame50
TPtoRake.BackgroundColor3 = Color3.new(0, 0, 0)
TPtoRake.Position = UDim2.new(4.88235283, 0, -11.3999996, 0)
TPtoRake.Size = UDim2.new(0, 149, 0, 50)
TPtoRake.Visible = false
TPtoRake.Font = Enum.Font.SourceSans
TPtoRake.Text = "TP To Rake"
TPtoRake.TextColor3 = Color3.new(0.666667, 0, 0)
TPtoRake.TextSize = 30
TP to Rake.MouseButton1Down:connect(function()
local d = game.Players.LocalPlayer.Character.HumanoidRootPart
for i,v in pairs(game.Workspace:GetChildren()) do
if v.name == "Rake" then
for _, b in pairs(v:GetChildren()) do
if b.name == "HumanoidRootPart" then
d.CFrame = b.CFrame
end
end
end
end
end)

Close.Name = "Close"
Close.Parent = frame50
Close.BackgroundColor3 = Color3.new(0, 0, 0)
Close.Position = UDim2.new(3.11688304, 0, -1.78976369, 0)
Close.Size = UDim2.new(0, 149, 0, 50)
Close.Visible = false
Close.Font = Enum.Font.SourceSans
Close.Text = "Close"
Close.TextColor3 = Color3.new(0.666667, 0, 0)
Close.TextSize = 30
Close.MouseButton1Down:connect(function()
frame.Visible = true
main.Visible = false
end)
-- Scripts:

You might also like