ADVERTISEMENTREMOVE ADS
Ink game Script new
32,130 views
Universal script•
1 month ago

Script Preview
Description
Esse script eh teste para um bem maior
Tested with
ADVERTISEMENTREMOVE ADS
234 Lines • 7.27 KiB
--// Ink Game Moddez v2 //--
-- Feito por Omori
-- Interface + funções reais locais
-- Função RGB lenta
local function rgbColor(speed)
local r = math.sin(tick() * speed) * 127 + 128
local g = math.sin(tick() * speed + 2) * 127 + 128
local b = math.sin(tick() * speed + 4) * 127 + 128
return Color3.fromRGB(r, g, b)
end
-- Gui principal
local gui = Instance.new("ScreenGui", game:GetService("CoreGui"))
gui.Name = "InkGameModdez"
-- Tela de carregamento
local loadFrame = Instance.new("Frame", gui)
loadFrame.Size = UDim2.new(1,0,1,0)
loadFrame.BackgroundColor3 = Color3.fromRGB(0,0,0)
local loadText = Instance.new("TextLabel", loadFrame)
loadText.Size = UDim2.new(1,0,1,0)
loadText.Text = "Ink Game Moddez"
loadText.Font = Enum.Font.GothamBold
loadText.TextScaled = true
loadText.TextColor3 = Color3.fromRGB(255,255,255)
task.wait(2)
loadFrame:TweenPosition(UDim2.new(0,0,-1,0),"Out","Quad",1,true)
task.wait(1)
loadFrame:Destroy()
-- Frame principal
local main = Instance.new("Frame", gui)
main.Size = UDim2.new(0,270,0,400)
main.Position = UDim2.new(0.05,0,0.25,0)
main.BackgroundColor3 = Color3.fromRGB(30,30,30)
main.BorderSizePixel = 0
local title = Instance.new("TextLabel", main)
title.Size = UDim2.new(1,0,0,40)
title.Text = "Ink Game Moddez"
title.Font = Enum.Font.GothamBold
title.TextScaled = true
title.TextColor3 = Color3.fromRGB(255,255,255)
title.BackgroundTransparency = 1
local content = Instance.new("Frame", main)
content.Size = UDim2.new(1,0,1,-40)
content.Position = UDim2.new(0,0,0,40)
content.BackgroundTransparency = 1
-- Lista de abas e opções
local pages = {
["batatinha"] = { "WalkSpeed" },
["dalgona"] = { "AntiPush", "Random Teleport" },
["hide and seek"] = { "Noclip", "ESP" },
["jump rope"] = { "Floating Platform" },
["mingle"] = { "Noclip" },
["final"] = { "Fling All", "Touch Fling" }
}
local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
-- Funções
-- WalkSpeed toggle
local wsEnabled = false
local function toggleWalkSpeed()
wsEnabled = not wsEnabled
local hum = character:FindFirstChildOfClass("Humanoid")
if hum then
hum.WalkSpeed = wsEnabled and 50 or 16
end
end
-- AntiPush
local function antiPush()
for _, part in ipairs(character:GetDescendants()) do
if part:IsA("BasePart") then
part.CanCollide = false
end
end
end
-- Teleporte aleatório (com chão)
local function randomTeleport()
local hrp = character:FindFirstChild("HumanoidRootPart")
if hrp then
local rand = Vector3.new(math.random(-100,100), 50, math.random(-100,100))
hrp.CFrame = CFrame.new(rand)
end
end
-- Noclip
local noclipEnabled = false
local function toggleNoclip()
noclipEnabled = not noclipEnabled
game:GetService("RunService").Stepped:Connect(function()
if noclipEnabled and character then
for _, v in pairs(character:GetChildren()) do
if v:IsA("BasePart") then
v.CanCollide = false
end
end
end
end)
end
-- ESP
local espEnabled = false
local function toggleESP()
espEnabled = not espEnabled
for _, plr in ipairs(game.Players:GetPlayers()) do
if plr ~= player and plr.Character and plr.Character:FindFirstChild("Head") then
if espEnabled then
local highlight = Instance.new("Highlight", plr.Character)
highlight.FillColor = Color3.fromRGB(255,0,0)
highlight.OutlineColor = Color3.fromRGB(255,255,255)
else
if plr.Character:FindFirstChildOfClass("Highlight") then
plr.Character:FindFirstChildOfClass("Highlight"):Destroy()
end
end
end
end
end
-- Plataforma flutuante
local platform
local function floatingPlatform()
if platform then platform:Destroy() end
local hrp = character:FindFirstChild("HumanoidRootPart")
if hrp then
platform = Instance.new("Part")
platform.Size = Vector3.new(10,1,10)
platform.Anchored = true
platform.Color = Color3.fromRGB(0,255,255)
platform.Position = hrp.Position - Vector3.new(0,5,0)
platform.Parent = workspace
end
end
-- Fling todos
local function flingAll()
local hrp = character:FindFirstChild("HumanoidRootPart")
if not hrp then return end
for _, v in ipairs(game.Players:GetPlayers()) do
if v ~= player and v.Character and v.Character:FindFirstChild("HumanoidRootPart") then
v.Character:FindFirstChild("HumanoidRootPart").Velocity = Vector3.new(9999,9999,9999)
end
end
end
-- Touch fling
local function touchFling()
local hrp = character:FindFirstChild("HumanoidRootPart")
if not hrp then return end
hrp.Touched:Connect(function(hit)
if hit.Parent:FindFirstChild("HumanoidRootPart") then
hit.Parent:FindFirstChild("HumanoidRootPart").Velocity = Vector3.new(9999,9999,9999)
end
end)
end
-- Criação das páginas
local buttons = Instance.new("Frame", main)
buttons.Size = UDim2.new(0.35,0,1,-40)
buttons.Position = UDim2.new(0,0,0,40)
buttons.BackgroundTransparency = 1
local layout = Instance.new("UIListLayout", buttons)
layout.Padding = UDim.new(0,5)
local currentPage = nil
local function createPage(name, opts)
local page = Instance.new("ScrollingFrame", main)
page.Size = UDim2.new(0.65,0,1,-40)
page.Position = UDim2.new(0.35,0,0,40)
page.Visible = false
page.BackgroundTransparency = 1
local layout = Instance.new("UIListLayout", page)
layout.Padding = UDim.new(0,5)
for _, opt in ipairs(opts) do
local btn = Instance.new("TextButton", page)
btn.Size = UDim2.new(1,-10,0,40)
btn.Text = opt
btn.Font = Enum.Font.GothamBold
btn.TextScaled = true
btn.BackgroundColor3 = Color3.fromRGB(50,50,50)
btn.TextColor3 = Color3.fromRGB(255,255,255)
btn.MouseButton1Click:Connect(function()
if opt == "WalkSpeed" then toggleWalkSpeed() end
if opt == "AntiPush" then antiPush() end
if opt == "Random Teleport" then randomTeleport() end
if opt == "Noclip" then toggleNoclip() end
if opt == "ESP" then toggleESP() end
if opt == "Floating Platform" then floatingPlatform() end
if opt == "Fling All" then flingAll() end
if opt == "Touch Fling" then touchFling() end
end)
end
return page
end
for name, opts in pairs(pages) do
local btn = Instance.new("TextButton", buttons)
btn.Size = UDim2.new(1,-10,0,40)
btn.Text = name
btn.Font = Enum.Font.GothamBold
btn.TextScaled = true
btn.BackgroundColor3 = Color3.fromRGB(40,40,40)
btn.TextColor3 = Color3.fromRGB(255,255,255)
local page = createPage(name, opts)
btn.MouseButton1Click:Connect(function()
if currentPage then currentPage.Visible = false end
currentPage = page
currentPage.Visible = true
end)
end
-- RGB Lento no título
task.spawn(function()
while task.wait(0.1) do
title.TextColor3 = rgbColor(1)
end
end)
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS






Comments