--made by rqxR --checking if place id is valid if game.PlaceId == 3101667897 then local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local TextLabel = Instance.new("TextLabel") local TextButton = Instance.new("TextButton") local TextButton_2 = Instance.new("TextButton") local TextButton_3 = Instance.new("TextLabel") local TextButton_4 = Instance.new("TextButton") local TextButton_5 = Instance.new("TextButton") local TextButton_6 = Instance.new("TextButton") --Properties: ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(255, 0, 0) Frame.BorderColor3 = Color3.fromRGB(0, 0, 0) Frame.BorderSizePixel = 0 Frame.Position = UDim2.new(0.0233208947, 0, 0.0384615399, 0) Frame.Size = UDim2.new(0, 197, 0, 457) TextLabel.Parent = Frame TextLabel.BackgroundColor3 = Color3.fromRGB(124, 124, 124) TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0) TextLabel.BorderSizePixel = 0 TextLabel.Size = UDim2.new(0, 197, 0, 50) TextLabel.Font = Enum.Font.SourceSans TextLabel.Text = "Easye's Script Hub GNG" TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0) TextLabel.TextSize = 14.000 TextButton.Parent = Frame TextButton.BackgroundColor3 = Color3.fromRGB(88, 141, 255) TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0) TextButton.BorderSizePixel = 0 TextButton.Position = UDim2.new(0, 0, 0.155361056, 0) TextButton.Size = UDim2.new(0, 197, 0, 50) TextButton.Font = Enum.Font.SourceSans TextButton.Text = "Jump Fly" TextButton.TextColor3 = Color3.fromRGB(0, 0, 0) TextButton.TextSize = 14.000 TextButton_2.Parent = Frame TextButton_2.BackgroundColor3 = Color3.fromRGB(88, 141, 255) TextButton_2.BorderColor3 = Color3.fromRGB(0, 0, 0) TextButton_2.BorderSizePixel = 0 TextButton_2.Position = UDim2.new(0, 0, 0.306345731, 0) TextButton_2.Size = UDim2.new(0, 197, 0, 50) TextButton_2.Font = Enum.Font.SourceSans TextButton_2.Text = "High Jump" TextButton_2.TextColor3 = Color3.fromRGB(0, 0, 0) TextButton_2.TextSize = 14.000 TextButton_3.Parent = Frame TextButton_3.BackgroundColor3 = Color3.fromRGB(88, 141, 255) TextButton_3.BorderColor3 = Color3.fromRGB(0, 0, 0) TextButton_3.BorderSizePixel = 0 TextButton_3.Position = UDim2.new(0, 0, 0.48140043, 0) TextButton_3.Size = UDim2.new(0, 197, 0, 50) TextButton_3.Font = Enum.Font.SourceSans TextButton_3.Text = "Walk speed" TextButton_3.TextColor3 = Color3.fromRGB(0, 0, 0) TextButton_3.TextSize = 14.000 TextButton_4.Parent = TextButton_3 TextButton_4.BackgroundColor3 = Color3.fromRGB(88, 141, 255) TextButton_4.BorderColor3 = Color3.fromRGB(0, 0, 0) TextButton_4.BorderSizePixel = 0 TextButton_4.Position = UDim2.new(0, 0, 1.24140012, 0) TextButton_4.Size = UDim2.new(0, 70, 0, 34) TextButton_4.Font = Enum.Font.SourceSans TextButton_4.Text = "400" TextButton_4.TextColor3 = Color3.fromRGB(0, 0, 0) TextButton_4.TextSize = 14.000 TextButton_5.Parent = TextButton_3 TextButton_5.BackgroundColor3 = Color3.fromRGB(88, 141, 255) TextButton_5.BorderColor3 = Color3.fromRGB(0, 0, 0) TextButton_5.BorderSizePixel = 0 TextButton_5.Position = UDim2.new(0.385786802, 0, 1.2814002, 0) TextButton_5.Size = UDim2.new(0, 57, 0, 32) TextButton_5.Font = Enum.Font.SourceSans TextButton_5.Text = "100" TextButton_5.TextColor3 = Color3.fromRGB(0, 0, 0) TextButton_5.TextSize = 14.000 TextButton_6.Parent = TextButton_3 TextButton_6.BackgroundColor3 = Color3.fromRGB(88, 141, 255) TextButton_6.BorderColor3 = Color3.fromRGB(0, 0, 0) TextButton_6.BorderSizePixel = 0 TextButton_6.Position = UDim2.new(0.700507641, 0, 1.2814002, 0) TextButton_6.Size = UDim2.new(0, 57, 0, 32) TextButton_6.Font = Enum.Font.SourceSans TextButton_6.Text = "50" TextButton_6.TextColor3 = Color3.fromRGB(0, 0, 0) TextButton_6.TextSize = 14.000 -- actual scripts TextButton.MouseButton1Click:Connect(function() local infjmp = true game:GetService("UserInputService").jumpRequest:Connect(function() if infjmp then game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass"Humanoid":ChangeState("Jumping") end end) end) TextButton_2.MouseButton1Click:Connect(function() game.Players.LocalPlayer.Character.Humanoid.JumpPower = 150 end) TextButton_4.MouseButton1Click:Connect(function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 400 end) TextButton_5.MouseButton1Click:Connect(function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100 end) TextButton_6.MouseButton1Click:Connect(function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 50 end) else local starterGui = game:GetService("StarterGui") wait(1) starterGui:SetCore("SendNotification", { Title = "Error", Text = "Wrong Game, This Gui Doesn't Support it!", Icon = "rbxassetid://6864978825", Duration = 5 }) end