Pastebin
-- Instances:
local ScreenGui = Instance.new("ScreenGui")
local Frame = Instance.new("Frame")
local UIGridLayout = Instance.new("UIGridLayout")
local UICorner = Instance.new("UICorner")
local InfMoney = Instance.new("TextButton")
local UICorner_2 = Instance.new("UICorner")
local BestFood = Instance.new("TextButton")
local UICorner_3 = Instance.new("UICorner")
local ExoticEgg = Instance.new("TextButton")
local UICorner_4 = Instance.new("UICorner")
local BestBelly = Instance.new("TextButton")
local UICorner_5 = Instance.new("UICorner")
--Properties:
ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
ScreenGui.ResetOnSpawn = false
Frame.Parent = ScreenGui
Frame.AnchorPoint = Vector2.new(0.5, 0.5)
Frame.BackgroundColor3 = Color3.fromRGB(21, 21, 21)
Frame.Position = UDim2.new(0.5, 0, 0.5, 0)
Frame.Size = UDim2.new(0.5, 0, 0.5, 0)
UIGridLayout.Parent = Frame
UIGridLayout.SortOrder = Enum.SortOrder.LayoutOrder
UICorner.CornerRadius = UDim.new(0, 4)
UICorner.Parent = Frame
InfMoney.Name = "InfMoney"
InfMoney.Parent = Frame
InfMoney.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
InfMoney.Size = UDim2.new(0, 200, 0, 50)
InfMoney.Font = Enum.Font.SourceSansLight
InfMoney.Text = "Give INF Money"
InfMoney.TextColor3 = Color3.fromRGB(255, 255, 255)
InfMoney.TextScaled = true
InfMoney.TextSize = 14.000
InfMoney.TextWrapped = true
UICorner_2.CornerRadius = UDim.new(0, 4)
UICorner_2.Parent = InfMoney
BestFood.Name = "BestFood"
BestFood.Parent = Frame
BestFood.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
BestFood.Size = UDim2.new(0, 200, 0, 50)
BestFood.Font = Enum.Font.SourceSansLight
BestFood.Text = "Give Best Food"
BestFood.TextColor3 = Color3.fromRGB(255, 255, 255)
BestFood.TextScaled = true
BestFood.TextSize = 14.000
BestFood.TextWrapped = true
UICorner_3.CornerRadius = UDim.new(0, 4)
UICorner_3.Parent = BestFood
ExoticEgg.Name = "ExoticEgg"
ExoticEgg.Parent = Frame
ExoticEgg.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
ExoticEgg.Size = UDim2.new(0, 200, 0, 50)
ExoticEgg.Font = Enum.Font.SourceSansLight
ExoticEgg.Text = "Open Exotic Egg"
ExoticEgg.TextColor3 = Color3.fromRGB(255, 255, 255)
ExoticEgg.TextScaled = true
ExoticEgg.TextSize = 14.000
ExoticEgg.TextWrapped = true
UICorner_4.CornerRadius = UDim.new(0, 4)
UICorner_4.Parent = ExoticEgg
BestBelly.Name = "BestBelly???"
BestBelly.Parent = Frame
BestBelly.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
BestBelly.Size = UDim2.new(0, 200, 0, 50)
BestBelly.Font = Enum.Font.SourceSansLight
BestBelly.Text = "Give Best Belly"
BestBelly.TextColor3 = Color3.fromRGB(255, 255, 255)
BestBelly.TextScaled = true
BestBelly.TextSize = 14.000
BestBelly.TextWrapped = true
UICorner_5.CornerRadius = UDim.new(0, 4)
UICorner_5.Parent = BestBelly
-- Scripts:
local function SQVWLAI_fake_script() -- Frame.Dragify
local script = Instance.new('LocalScript', Frame)
local UIS = game:GetService("UserInputService")
function dragify(Frame)
dragToggle = nil
local dragSpeed = 0
dragInput = nil
dragStart = nil
local dragPos = nil
function updateInput(input)
local Delta = input.Position - dragStart
local Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + Delta.X, startPos.Y.Scale, startPos.Y.Offset + Delta.Y)
game:GetService("TweenService"):Create(Frame, TweenInfo.new(0.25), {Position = Position}):Play()
end
Frame.InputBegan:Connect(function(input)
if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) and UIS:GetFocusedTextBox() == nil then
dragToggle = true
dragStart = input.Position
startPos = Frame.Position
input.Changed:Connect(function()
if input.UserInputState == Enum.UserInputState.End then
dragToggle = false
end
end)
end
end)
Frame.InputChanged:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
dragInput = input
end
end)
game:GetService("UserInputService").InputChanged:Connect(function(input)
if input == dragInput and dragToggle then
updateInput(input)
end
end)
end
dragify(script.Parent)
end
coroutine.wrap(SQVWLAI_fake_script)()
local function QVEW_fake_script() -- InfMoney.LocalScript
local script = Instance.new('LocalScript', InfMoney)
script.Parent.Activated:Connect(function()
-- Script generated by SimpleSpy - credits to exxtremewa#9394
-- This generator is IN DEVELOPMENT, not compatible with all types/classes yet
local args = {
[1] = "freemoney",
[2] = -math.huge,
}
game:GetService("ReplicatedStorage").Remotes.OpenEgg:FireServer(unpack(args))
end)
end
coroutine.wrap(QVEW_fake_script)()
local function OBOQCXJ_fake_script() -- BestFood.LocalScript
local script = Instance.new('LocalScript', BestFood)
script.Parent.Activated:Connect(function()
-- Script generated by SimpleSpy - credits to exxtremewa#9394
-- This generator is IN DEVELOPMENT, not compatible with all types/classes yet
local args = {
[1] = "Tree",
[2] = "food",
}
game:GetService("ReplicatedStorage").Remotes.EquipFood:FireServer(unpack(args))
end)
end
coroutine.wrap(OBOQCXJ_fake_script)()
local function RURG_fake_script() -- ExoticEgg.LocalScript
local script = Instance.new('LocalScript', ExoticEgg)
script.Parent.Activated:Connect(function()
-- Script generated by SimpleSpy - credits to exxtremewa#9394
-- This generator is IN DEVELOPMENT, not compatible with all types/classes yet
local args = {
[1] = "Exotic",
[2] = 1000,
}
game:GetService("ReplicatedStorage").Remotes.OpenEgg:FireServer(unpack(args))
end)
end
coroutine.wrap(RURG_fake_script)()
local function AUZEYNO_fake_script() -- BestBelly.LocalScript
local script = Instance.new('LocalScript', BestBelly)
script.Parent.Activated:Connect(function()
-- Script generated by SimpleSpy - credits to exxtremewa#9394
-- This generator is IN DEVELOPMENT, not compatible with all types/classes yet
local args = {
[1] = "Rainbow Belly",
[2] = "belly",
}
game:GetService("ReplicatedStorage").Remotes.EquipFood:FireServer(unpack(args))
end)
end
coroutine.wrap(AUZEYNO_fake_script)()
Select all text above, copy it, then paste into your executor.