You are on page 1of 4

--/ Gui creation

local plr = game.Players.LocalPlayer

local hackgui = Instance.new("ScreenGui",plr.PlayerGui)


hackgui.Name = "HackGui"
local openclosegui = Instance.new("ScreenGui",plr.PlayerGui)
openclosegui.Name = "openclosegui"
hackgui.Enabled = false
local openclosebutton = Instance.new("TextButton",openclosegui)
openclosebutton.Size = UDim2.new(.05,0,.05,0)
openclosebutton.Style = Enum.ButtonStyle.RobloxRoundButton
openclosebutton.Position = UDim2.new(0,0,0.475,0)
openclosebutton.Text = "Open"
local frame1 = Instance.new("Frame",hackgui)
frame1.Size = UDim2.new(.5,0,.5,0)
frame1.Active = true
frame1.Selectable = true
frame1.Draggable = true
frame1.BackgroundColor3 = Color3.fromRGB(0,0,0)
frame1.Position = UDim2.new(.25,0,.25,0)
frame1.BorderSizePixel = 3
frame1.BorderColor3 = Color3.fromRGB(205,0,50)
local creditlabel = Instance.new("TextLabel",frame1)
creditlabel.Text = "Welcome To Flee Gui(Created By Plieax)"
creditlabel.Size = UDim2.new(1,0,.1,0)
creditlabel.TextScaled = true
creditlabel.BorderSizePixel = 0
creditlabel.TextColor3 = Color3.fromRGB(255,255,255)
creditlabel.BackgroundColor3 = Color3.fromRGB(0,0,0)
local mushroomsbutton = Instance.new("TextButton",frame1)
mushroomsbutton.Size = UDim2.new(.4,0,.25,0)
mushroomsbutton.Text = "Commands"
mushroomsbutton.TextColor3 = Color3.fromRGB(0,0,0)
mushroomsbutton.BackgroundColor3 = Color3.fromRGB(255,255,255)
mushroomsbutton.BorderSizePixel = 0
mushroomsbutton.Position = UDim2.new(.05,0,.12,0)
local mushroomscreen = Instance.new("ScreenGui",plr.PlayerGui)
mushroomscreen.Name = "mushroomscreen"
mushroomscreen.Enabled = false
local frame2 = Instance.new("Frame",mushroomscreen)
frame2.Size = UDim2.new(.5,0,.5,0)
frame2.Name = "frame2"
frame2.Position = UDim2.new(.25,0,.25,0)
local backbutton1 = Instance.new("TextButton",frame2)
backbutton1.Name = "backbutton1"
backbutton1.Size = UDim2.new(.2,0,.2,0)
backbutton1.Text = "Back"
backbutton1.Position = UDim2.new(.025,0,.05,0)
local BrainMushroombutton = Instance.new("TextButton",frame2)
BrainMushroombutton.Name = "findbrainmushroom"
BrainMushroombutton.Size = UDim2.new(.2,0,.2,0)
BrainMushroombutton.Text = "Add Player Tags"
BrainMushroombutton.Position = UDim2.new(.25,0,.05,0)
local BrainMushroombutton2 = Instance.new("TextButton",frame2)
BrainMushroombutton2.Name = "findbrainmushroom2"
BrainMushroombutton2.Size = UDim2.new(.2,0,.2,0)
BrainMushroombutton2.Text = "Remove Player Tags"
BrainMushroombutton2.Position = UDim2.new(.5,0,.05,0)
local BrainMushroombutton3 = Instance.new("TextButton",frame2)
BrainMushroombutton3.Name = "findbrainmushroom2"
BrainMushroombutton3.Size = UDim2.new(.2,0,.2,0)
BrainMushroombutton3.Text = "Find Computers"
BrainMushroombutton3.Position = UDim2.new(.75,0,.05,0)
local BrainMushroombutton4 = Instance.new("TextButton",frame2)
BrainMushroombutton4.Name = "findbrainmushroom2"
BrainMushroombutton4.Size = UDim2.new(.2,0,.2,0)
BrainMushroombutton4.Text = "Speed Boost"
BrainMushroombutton4.Position = UDim2.new(.025,0,.25,0)
local BrainMushroombutton5 = Instance.new("TextButton",frame2)
BrainMushroombutton5.Name = "findbrainmushroom2"
BrainMushroombutton5.Size = UDim2.new(.2,0,.2,0)
BrainMushroombutton5.Text = "Speed Boost Off"
BrainMushroombutton5.Position = UDim2.new(.5,0,.25,0)

frame2.Active = true
frame2.Draggable = true

local sprintenabled = false


local firsthum = game.Players.LocalPlayer.Character.Humanoid
local newhum = firsthum:Clone()
newhum.Parent = game.Lighting
newhum.Name = "Humanoid"

--/Functions

local plrchar = game.Players.LocalPlayer.Character


local players = game.Players:GetChildren()

local function findplayers()

for i,v in pairs(game.Players:GetPlayers())do

wait(1)
local pc = game.Workspace:FindFirstChild(v.Name)
if v.TempPlayerStatsModule.IsBeast.Value == true then
local atta = Instance.new("Attachment",plrchar.Torso)
local atta2 = Instance.new("Attachment",pc.Torso)
atta2.Parent = pc.Torso
local beam = Instance.new("Beam",plrchar.Torso)
beam.FaceCamera = true
beam.Attachment0 = atta
beam.Attachment1 = atta2
beam.Color = ColorSequence.new(Color3.fromRGB(255,0,0))
local billboard = Instance.new("BillboardGui",beam)
billboard.Size = UDim2.new (0,200,0,50)
billboard.ExtentsOffset = Vector3.new(0,2.5,0)
billboard.AlwaysOnTop = true
billboard.Adornee = pc.Head
wait(.1)
local textbox = Instance.new ("TextBox",billboard)
textbox.Size = UDim2.new (0, 200,0, 50)
textbox.Name = "textbox"
wait(.1)
textbox.TextColor3 = Color3.fromRGB(255,0,0)
textbox.TextSize = 20
textbox.BackgroundTransparency = 1
textbox.Text = "It"

elseif v.TempPlayerStatsModule.IsBeast.Value == false then

local atta = Instance.new("Attachment",plrchar.Torso)


local atta2 = Instance.new("Attachment")
atta2.Parent = pc.Torso
local beam = Instance.new("Beam",plrchar.Torso)
beam.FaceCamera = true
beam.Attachment0 = atta
beam.Attachment1 = atta2
beam.Color = ColorSequence.new(Color3.fromRGB(0,255,0))
local billboard = Instance.new("BillboardGui",beam)
billboard.Size = UDim2.new (0,200,0,50)
billboard.ExtentsOffset = Vector3.new(0,2.5,0)
billboard.AlwaysOnTop = true
billboard.Adornee = pc.Head
wait(.1)
local textbox = Instance.new ("TextBox",billboard)
textbox.Size = UDim2.new (0, 200,0, 50)
textbox.Name = "textbox"
wait(.1)
textbox.TextColor3 = Color3.fromRGB(0,255,0)
textbox.TextSize = 20
textbox.BackgroundTransparency = 1
textbox.Text = "Other"

end
end
end

BrainMushroombutton.Activated:Connect(function()
findplayers()
end)
--
--
local function removetags()
for i,v in pairs(plrchar.Torso:GetChildren())do
if v:IsA("Beam")then
v:Destroy()
end
end
end

--
--
openclosebutton.Activated:connect(function()
if hackgui.Enabled == true then
openclosebutton.Text = "Open"
hackgui.Enabled = false
mushroomscreen.Enabled = false

mushroomscreen.Enabled = false
else
openclosebutton.Text = "Close"
hackgui.Enabled = true
end
end)
--
--
mushroomsbutton.Activated:connect(function()
mushroomscreen.Enabled = true
end)
backbutton1.Activated:connect(function()
mushroomscreen.Enabled = false
end)
--
--
BrainMushroombutton2.Activated:connect(function()
removetags()
end)

BrainMushroombutton3.Activated:Connect(function()
for i,v in pairs(game.Workspace:GetChildren())do
for i,re in pairs(v:GetChildren())do
if re.Name == "ComputerTable" then
local billboard = Instance.new("BillboardGui",re)
billboard.Adornee = re
billboard.Size = UDim2.new (0,200,0,50)
billboard.ExtentsOffset = Vector3.new(0,2.5,0)
billboard.AlwaysOnTop = true
wait(.1)
local textbox = Instance.new ("TextBox",billboard)
textbox.Size = UDim2.new (0, 200,0, 50)
textbox.Name = "textbox"
wait(.1)
textbox.TextColor3 = Color3.fromRGB(0,0,255)
textbox.TextSize = 20
textbox.BackgroundTransparency = 1
textbox.Text = "Computer"
end
end
end
end)

BrainMushroombutton4.Activated:connect(function()
sprintenabled = true
while sprintenabled = true and wait()do
plrchar.Humanoid.WalkSpeed = 40
end
end)

BrainMushroombutton5.Activated:connect(function()
sprintenabled = false
end

You might also like