Post Views: 7
Created by cooper2723
Features:
- DUPE YOUR ENTIRE INVENTORY
-- get cooper
local cooper = game.Players.LocalPlayer
-- can relod functin
local canRelod = function()
-- This script was generated by coopers's RemoteSpy: https://github.com/Upbolt/Hydroxide
local ohInstance1 = cooper
return game:GetService("ReplicatedStorage").LoadSaveRequests.ClientMayLoad:InvokeServer(ohInstance1)
end
-- dup ax
function dupAx()
if cooper.CurrentSaveSlot.Value == -1 then
return false, "plz load slot :)"
elseif cooper.CurrentSaveSlot.Value ~= -1 then
repeat
print("wait reloding")
task.wait()
until canRelod()
-- This script was generated by coopers's RemoteSpy: https://github.com/Upbolt/Hydroxide
local ohNumber1 = cooper.CurrentSaveSlot.Value
local ohInstance2 = cooper
task.spawn(function()
game:GetService("ReplicatedStorage").LoadSaveRequests.RequestLoad:InvokeServer(ohNumber1, ohInstance2)
end)
task.wait()
cooper.Character.Head:Destroy()
return true, "done dup plz load base now :)"
end
end
local suces, mesg = dupAx()
if suces then
print(mesg)
elseif not suces then
warn(mesg)
end
-- Gui to Lua
-- Version: 1.0
-- Instances:
local ScreenGui = Instance.new("ScreenGui")
local Frame = Instance.new("Frame")
local TextLabel = Instance.new("TextLabel")
local TextButton = Instance.new("TextButton")
--Properties:
ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
Frame.Parent = ScreenGui
Frame.BackgroundColor3 = Color3.fromRGB(29, 59, 255)
Frame.BorderColor3 = Color3.fromRGB(255, 0, 4)
Frame.BorderSizePixel = 3
Frame.Position = UDim2.new(0.188806891, 0, 0.256857842, 0)
Frame.Size = UDim2.new(0, 107, 0, 156)
Frame.Draggable = true
TextLabel.Parent = Frame
TextLabel.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
TextLabel.Size = UDim2.new(0, 107, 0, 20)
TextLabel.Font = Enum.Font.Creepster
TextLabel.Text = "COOPER DUPER"
TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
TextLabel.TextSize = 20.000
TextButton.Parent = Frame
TextButton.BackgroundColor3 = Color3.fromRGB(45, 30, 255)
TextButton.Position = UDim2.new(0, 0, 0.128205135, 0)
TextButton.Size = UDim2.new(0, 107, 0, 136)
TextButton.Font = Enum.Font.Creepster
TextButton.Text = "DUPE"
TextButton.TextColor3 = Color3.fromRGB(255, 0, 4)
TextButton.TextSize = 30.000
TextButton.TextWrapped = true
local UserInputService = game:GetService("UserInputService")
local gui = Frame
local dragging
local dragInput
local dragStart
local startPos
local function update(input)
local delta = input.Position - dragStart
gui.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
end
gui.InputBegan:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
dragging = true
dragStart = input.Position
startPos = gui.Position
input.Changed:Connect(function()
if input.UserInputState == Enum.UserInputState.End then
dragging = false
end
end)
end
end)
gui.InputChanged:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
dragInput = input
end
end)
UserInputService.InputChanged:Connect(function(input)
if input == dragInput and dragging then
update(input)
end
end)
-- get cooper
local cooper = game.Players.LocalPlayer
-- can relod functin
local canRelod = function()
-- This script was generated by coopers's RemoteSpy: https://github.com/Upbolt/Hydroxide
local ohInstance1 = cooper
return game:GetService("ReplicatedStorage").LoadSaveRequests.ClientMayLoad:InvokeServer(ohInstance1)
end
-- dup ax
function dupAx()
if cooper.CurrentSaveSlot.Value == -1 then
TextButton.Text = "plz lolad ur slot"
task.wait(5)
TextButton.Text = "DUPE"
elseif cooper.CurrentSaveSlot.Value ~= -1 then
TextButton.Text = "wating cooldown"
repeat
task.wait()
until canRelod()
-- This script was generated by coopers's RemoteSpy: https://github.com/Upbolt/Hydroxide
local ohNumber1 = cooper.CurrentSaveSlot.Value
local ohInstance2 = cooper
task.spawn(function()
game:GetService("ReplicatedStorage").LoadSaveRequests.RequestLoad:InvokeServer(ohNumber1, ohInstance2)
end)
task.wait()
cooper.Character.Head:Destroy()
TextButton.Text = "plz lolad ur slot on next screen"
task.wait(5)
TextButton.Text = "DUPE"
end
end
TextButton.MouseButton1Down:Connect(function()
dupAx()
end)