Thank you for using our website
Your script:
-- //Services
local TweenService = game.TweenService
-- //Player
local player = game.Players.LocalPlayer
local playerGui = player:WaitForChild("PlayerGui")
-- //ScreenGui
local ScreenGui = Instance.new("ScreenGui", playerGui)
ScreenGui.IgnoreGuiInset = true
ScreenGui.ResetOnSpawn = false
-- //
local TextLabel = Instance.new("TextLabel", ScreenGui)
TextLabel.Text = "Coraline: Evade The Others"
TextLabel.Font = Enum.Font.AmaticSC
TextLabel.TextScaled = true
TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
TextLabel.Position = UDim2.new(0.4, 0, 0.4, 0)
TextLabel.Size = UDim2.new(0, 250, 0, 50)
TextLabel.BackgroundTransparency = 0.5
TextLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
-- //UIDragDetector
local UIDragDetector = Instance.new("UIDragDetector", TextLabel)
-- //Frame
local Frame = Instance.new("Frame", TextLabel)
Frame.BackgroundTransparency = 0.5
Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
Frame.Size = UDim2.new(0, 250, 0, 250)
Frame.Position = UDim2.new(0, 0, 1.25, 0)
-- //
local ScrollingFrame = Instance.new("ScrollingFrame", Frame)
ScrollingFrame.Size = UDim2.new(1, 0, 1, 0)
ScrollingFrame.BackgroundTransparency = 1
ScrollingFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
ScrollingFrame.ScrollBarImageColor3 = Color3.fromRGB(0, 0, 0)
ScrollingFrame.BorderSizePixel = 0
ScrollingFrame.ScrollBarImageTransparency = 0.5
-- //UIListLayout
local UIListLayout = Instance.new("UIListLayout", ScrollingFrame)
-- //TextLabel2
local TextLabel2 = Instance.new("TextLabel", ScrollingFrame)
TextLabel2.Size = UDim2.new(1, 0, 0, 50)
TextLabel2.Text = "Object ESP"
TextLabel2.TextScaled = true
TextLabel2.TextColor3 = Color3.fromRGB(255, 255, 255)
TextLabel2.Font = Enum.Font.AmaticSC
TextLabel2.BackgroundTransparency = 0.9
TextLabel2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
-- //ImageButton
local ImageButton = Instance.new("ImageButton", TextLabel2)
ImageButton.BackgroundTransparency = 0.5
ImageButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
ImageButton.ImageTransparency = 1
ImageButton.Size = UDim2.new(0, 25, 0, 25)
ImageButton.Position = UDim2.new(0, 200, 0.25, 0)
-- //Debounce
local ImageDebounce = false
ImageButton.MouseButton1Click:Connect(function()
if not ImageDebounce then
ImageDebounce = true
ImageButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
for _, model in ipairs(workspace:GetDescendants()) do
if model:IsA("Model") and (model.Name == "Key" or model.Name == "Cat" or string.match(model.Name, "EyeBall")) then
local Highlight = Instance.new("Highlight", model)
Highlight.FillTransparency = 1
Highlight.OutlineColor = Color3.fromRGB(0, 255, 0)
end
end
else
ImageDebounce = false
ImageButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
for _, model in ipairs(workspace:GetDescendants()) do
if model:IsA("Model") and model.Name == "Key" or model.Name == "Cat" then
if model:FindFirstChild("Highlight") then
-- //Highlight
local Highlight = model:FindFirstChild("Highlight")
Highlight:Destroy()
end
end
end
end
end)
-- //TextLabel3
local TextLabel3 = Instance.new("TextLabel", ScrollingFrame)
TextLabel3.Size = UDim2.new(1, 0, 0, 50)
TextLabel3.Text = "FullBright"
TextLabel3.TextScaled = true
TextLabel3.TextColor3 = Color3.fromRGB(255, 255, 255)
TextLabel3.Font = Enum.Font.AmaticSC
TextLabel3.BackgroundTransparency = 0.9
TextLabel3.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
-- //ImageButton
local ImageButton2 = Instance.new("ImageButton", TextLabel3)
ImageButton2.BackgroundTransparency = 0.5
ImageButton2.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
ImageButton2.ImageTransparency = 1
ImageButton2.Size = UDim2.new(0, 25, 0, 25)
ImageButton2.Position = UDim2.new(0, 200, 0.25, 0)
-- //Debounce
local ImageDebounce2 = false
ImageButton2.MouseButton1Click:Connect(function()
if not ImageDebounce2 then
ImageDebounce2 = true
ImageButton2.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
for _, child in ipairs(game.Lighting:GetChildren()) do
if child then
child:Destroy()
game.Lighting.Ambient = Color3.fromRGB(255, 255, 255)
game.Lighting.Brightness = 1
game.Lighting.GlobalShadows = false
end
end
task.wait(0.25)
ImageDebounce2 = false
ImageButton2.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
end
end)