local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local FrameTwo = Instance.new("Frame") local AutoClick = Instance.new("TextButton") local UICorner = Instance.new("UICorner") local AutoRebirth = Instance.new("TextButton") local UICorner_2 = Instance.new("UICorner") local AutoTransform = Instance.new("TextButton") local UICorner_3 = Instance.new("UICorner") local Creds = Instance.new("TextLabel") local UIAspectRatioConstraint = Instance.new("UIAspectRatioConstraint") ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(255, 0, 100) Frame.BorderSizePixel = 0 Frame.Position = UDim2.new(0.669965565, 0, 0.715572894, 0) Frame.Size = UDim2.new(0.200328534, 0, 0.0430879705, 0) Frame.Active = true Frame.Draggable = true FrameTwo.Name = "FrameTwo" FrameTwo.Parent = Frame FrameTwo.BackgroundColor3 = Color3.fromRGB(255, 50, 100) FrameTwo.BorderSizePixel = 0 FrameTwo.Position = UDim2.new(-0.000419581314, 0, 0.965440094, 0) FrameTwo.Size = UDim2.new(1, 0, 4.00005, 0) FrameTwo.Active = true FrameTwo.Draggable = true AutoClick.Name = "AutoClick" AutoClick.Parent = FrameTwo AutoClick.BackgroundColor3 = Color3.fromRGB(100, 100, 255) AutoClick.BorderSizePixel = 0 AutoClick.Position = UDim2.new(0.051282052, 0, 0.132096887, 0) AutoClick.Size = UDim2.new(0.405982912, 0, 0.724637687, 0) AutoClick.Font = Enum.Font.SourceSans AutoClick.Text = "Autoclick Toggle" AutoClick.TextColor3 = Color3.fromRGB(0, 0, 0) AutoClick.TextScaled = true AutoClick.TextSize = 14.000 AutoClick.TextWrapped = true UICorner.Parent = AutoClick AutoRebirth.Name = "AutoRebirth" AutoRebirth.Parent = FrameTwo AutoRebirth.BackgroundColor3 = Color3.fromRGB(255, 100, 100) AutoRebirth.BorderSizePixel = 0 AutoRebirth.Position = UDim2.new(0.54273504, 0, 0.132096887, 0) AutoRebirth.Size = UDim2.new(0.405982912, 0, 0.724637687, 0) AutoRebirth.Font = Enum.Font.SourceSans AutoRebirth.Text = "Auto-Rebirth Toggle" AutoRebirth.TextColor3 = Color3.fromRGB(0, 0, 0) AutoRebirth.TextScaled = true AutoRebirth.TextSize = 14.000 AutoRebirth.TextWrapped = true UICorner_2.Parent = AutoRebirth AutoTransform.Name = "AutoTransform" AutoTransform.Parent = FrameTwo AutoTransform.BackgroundColor3 = Color3.fromRGB(255, 100, 100) AutoTransform.BorderSizePixel = 0 AutoTransform.Position = UDim2.new(0.3282052, 0, 0.132096887, 0) AutoTransform.Size = UDim2.new(0.405982912, 0, 0.724637687, 0) AutoTransform.Font = Enum.Font.SourceSans AutoTransform.Text = "Auto-Transform Toggle" AutoTransform.TextColor3 = Color3.fromRGB(0, 0, 0) AutoTransform.TextScaled = true AutoTransform.TextSize = 14.000 AutoTransform.TextWrapped = true UICorner_3.Parent = AutoTransform Creds.Name = "Creds" Creds.Parent = Frame Creds.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Creds.BackgroundTransparency = 1.000 Creds.BorderSizePixel = 0 Creds.Position = UDim2.new(-0.00213675224, 0, 0.125, 0) Creds.Size = UDim2.new(1, 0, 0.75, 0) Creds.Font = Enum.Font.SourceSans Creds.Text = "Made by clouded#0001" Creds.TextColor3 = Color3.fromRGB(0, 0, 0) Creds.TextScaled = true Creds.TextSize = 14.000 Creds.TextWrapped = true UIAspectRatioConstraint.Parent = ScreenGui UIAspectRatioConstraint.AspectRatio = 2.953 local clicking = false local rebirthing = false local transforming = false AutoClick.MouseButton1Click:Connect(function() if clicking == false then clicking = true while clicking == true do local args = { [1] = { ["Type"] = 1, ["Began"] = true, ["CFrame"] = CFrame.new(1733.606689453125, 577.5816040039062, 1298.807861328125) * CFrame.Angles(-4.771039563422619e-09, -0.07910680770874023, 6.830385501643832e-08), ["Aim"] = CFrame.new(1735.2919921875, 576.163330078125, 1318.1488037109375) * CFrame.Angles(-2.8159594535827637, -0.14640530943870544, -3.092374563217163), ["Camera"] = CFrame.new(1729.5133056640625, 588.6986083984375, 1281.0235595703125) * CFrame.Angles(-2.643265962600708, -0.19948710501194, -3.0341789722442627), ["Name"] = "Combat", ["IsHeavy"] = false, ["Target"] = workspace:FindFirstChild("World Map").Islands:FindFirstChild("Kame Island"):FindFirstChild("Kame House"):FindFirstChild("Extra Part").Fence.Part, ["Velocity"] = Vector3.new(0, 0, 0) } } game:GetService("ReplicatedStorage").Remotes.SkillRemote:FireServer(unpack(args)) wait(0.1) end elseif clicking == true then clicking = false end end) AutoRebirth.MouseButton1Click:Connect(function() if rebirthing == false then rebirthing = true while rebirthing == true do local args = { [1] = "1" } game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.StatsService.RebirthUp:FireServer() wait(0.1) end elseif rebirthing == true then rebirthing = false end end) AutoTransform.MouseButton1Click:Connect(function() if transforming == false then transforming= true while transforming == true do local args = { [1] = "MetaSeijin" } game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.Props.ModeTransformService.Transformation:FireServer(unpack(args)) wait(0.1) end elseif transforming == true then transforming = false end end)